Module: ol/source/OSM

ol/source/OSM


Classes

OSM

Members

ATTRIBUTION{string}

The attribution containing a link to the OpenStreetMap Copyright and License page.

Type Definitions

Options{Object}

Properties:
Name Type Argument Default Description
attributions module:ol/source/Source~AttributionLike <optional>

Attributions.

cacheSize number <optional>
2048

Cache size.

crossOrigin null | string <optional>

The crossOrigin attribute for loaded images. Note that you must provide a crossOrigin value if you are using the WebGL renderer or 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.

maxZoom number <optional>
19

Max zoom.

opaque boolean <optional>
true

Whether the layer is opaque.

reprojectionErrorThreshold number <optional>
1.5

Maximum allowed reprojection error (in pixels). Higher values can increase reprojection performance, but decrease precision.

tileLoadFunction module:ol/Tile~LoadFunction <optional>

Optional function to load a tile given a URL. The default is

function(imageTile, src) {
  imageTile.getImage().src = src;
};
url string <optional>
'https://{a-c}.tile.openstreetmap.org/{z}/{x}/{y}.png'

URL template. Must include {x}, {y} or {-y}, and {z} placeholders.

wrapX boolean <optional>
true

Whether to wrap the world horizontally.