new alk.source.TrafficSource(opt_options)
This constructor creates a Source object for retrieving data from the ALK Traffic Service.
It is an ol.source.Tile
source that uses the ALK Traffic Service.
Option | Type | Description |
---|---|---|
serviceOptions |
alkx.TrafficServiceOptions | undefined | |
attributions |
ol.AttributionLike | undefined |
This option is an OpenLayers option passed to the Attributions. |
cacheSize |
number | undefined |
This option is an OpenLayers option passed to the Cache size. Default is 2048. |
extent |
ol.Extent | undefined |
This option is an OpenLayers option passed to the It contains the map extent in which the source is relevant. |
crossOrigin |
null | string | undefined |
This option is an OpenLayers option passed to the The crossOrigin attribute for loaded images. Note that you must provide a
|
opaque |
boolean | undefined |
This option is an OpenLayers option passed to the Whether the layer is opaque. |
projection |
ol.ProjectionLike | undefined |
This option is an OpenLayers option passed to the This options contains the projection with which to interpret other options, such as the extent. |
maxZoom |
number | undefined |
This option is an OpenLayers option passed to the Optional maximum zoom level. Default is 20 (ALK specific). |
minZoom |
number | undefined |
This option is an OpenLayers option passed to the Optional minimum zoom level. Default is 0. |
tileGrid |
ol.tilegrid.TileGrid | undefined |
This option is an OpenLayers option passed to the Tile Grid. |
tileLoadFunction |
ol.TileLoadFunctionType | undefined |
This option is an OpenLayers option passed to the Optional function to load a tile given a URL. The default is function(imageTile, src) { imageTile.getImage().src = src; }; |
tilePixelRatio |
number | undefined |
This option is an OpenLayers option passed to the The pixel ratio used by the tile service. For example, if the tile service advertises 256px by 256px tiles but actually sends 512px by 512px images (for retina/hidpi devices) then tilePixelRatio should be set to 2. Default is 1. |
tileSize |
number | undefined |
This option is an OpenLayers option passed to the The tile size used by the tile service. Default is [256, 256] pixels. |
tileUrlFunction |
ol.TileUrlFunctionType | undefined |
This option is an OpenLayers option passed to the Optional function to get tile URL given a tile coordinate and the projection. Required if url or urls are not provided. |
reprojectionErrorThreshold |
number | undefined |
This option is an OpenLayers option passed to the Maximum allowed reprojection error (in pixels). Default is 0.5. Higher values may increase reprojection performance, but decrease precision. |
wrapX |
boolean | undefined |
This option is an OpenLayers option passed to the Whether to wrap the world horizontally. The default, |
transition |
number | undefined |
This option is an OpenLayers option passed to the Duration of the opacity transition for rendering. To disable the opacity transition, pass transition: 0. |
Extends
Members
-
service{alk.service.Service}
-
This is the service that was used to create the URL. It is not used internally, and just serves as a reference.
Methods
-
setService(service) inherited
-
This method sets the Service for this source. It generates a new URL.
Name Type Description service
alk.service.Service