Classes
Type Definitions
-
Options{Object}
-
Properties:
Name Type Argument Default Description attributionsAttributionLike <optional>
Attributions.
attributionsCollapsibleboolean <optional>
true Attributions are collapsible.
cacheSizenumber <optional>
Initial tile cache size. Will auto-grow to hold at least the number of tiles in the viewport.
crossOriginnull | string <optional>
The
crossOriginattribute for loaded images. Note that you must provide acrossOriginvalue if you want to access pixel data with the Canvas renderer. See https://developer.mozilla.org/en-US/docs/Web/HTML/CORS_enabled_image for more detail.interpolateboolean <optional>
true Use interpolated values when resampling. By default, linear interpolation is used when resampling. Set to false to use the nearest neighbor instead.
paramsObject.<string, *> WMS request parameters. At least a
LAYERSparam is required.STYLESis''by default.VERSIONis1.3.0by default.WIDTH,HEIGHT,BBOXandCRS(SRSfor WMS version < 1.3.0) will be set dynamically.gutternumber <optional>
0 The size in pixels of the gutter around image tiles to ignore. By setting this property to a non-zero value, images will be requested that are wider and taller than the tile size by a value of
2 x gutter. Using a non-zero value allows artifacts of rendering at tile edges to be ignored. If you control the WMS service it is recommended to address "artifacts at tile edges" issues by properly configuring the WMS service. For example, MapServer has atile_map_edge_bufferconfiguration parameter for this. See https://mapserver.org/output/tile_mode.html.hidpiboolean <optional>
true Use the
ol/Map#pixelRatiovalue when requesting the image from the remote server.projectionProjectionLike <optional>
Projection. Default is the view projection.
reprojectionErrorThresholdnumber <optional>
0.5 Maximum allowed reprojection error (in pixels). Higher values can increase reprojection performance, but decrease precision.
tileClassClass<ImageTile> <optional>
Class used to instantiate image tiles. Default is
ImageTile.tileGridTileGrid <optional>
Tile grid. Base this on the resolutions, tilesize and extent supported by the server. If this is not defined, a default grid will be used: if there is a projection extent, the grid will be based on that; if not, a grid based on a global extent with origin at 0,0 will be used.
serverTypeServerType <optional>
The type of the remote WMS server:
mapserver,geoserver,carmentaserver, orqgis. Only needed ifhidpiistrue.tileLoadFunctionLoadFunction <optional>
Optional function to load a tile given a URL. The default is
function(imageTile, src) { imageTile.getImage().src = src; };urlstring <optional>
WMS service URL.
urlsArray.<string> <optional>
WMS service urls. Use this instead of
urlwhen the WMS supports multiple urls for GetMap requests.wrapXboolean <optional>
true Whether to wrap the world horizontally. When set to
false, only one world will be rendered. Whentrue, tiles will be requested for one world only, but they will be wrapped horizontally to render multiple worlds.transitionnumber <optional>
Duration of the opacity transition for rendering. To disable the opacity transition, pass
transition: 0.zDirectionnumber | NearestDirectionFunction <optional>
0 Choose whether to use tiles with a higher or lower zoom level when between integer zoom levels. See
getZForResolution.