diff --git a/latest/classes/AnimateUtil_AnimateUtil.default.html b/latest/classes/AnimateUtil_AnimateUtil.default.html index 5a50a98e5..6c0c4a29c 100644 --- a/latest/classes/AnimateUtil_AnimateUtil.default.html +++ b/latest/classes/AnimateUtil_AnimateUtil.default.html @@ -1,7 +1,7 @@ default | @terrestris/ol-util

This class provides some static methods which might be helpful when working with digitize functions to animate features.

AnimateUtil

-

Constructors

Constructors

Methods

Constructors

Methods

  • Moves / translates an OlFeature to the given pixel delta in the end with given duration in ms, using the given style.

    @@ -13,4 +13,4 @@
  • pixel: number

    Delta of pixels to move the feature.

  • Optionalstyle: Style

    The style to use when moving the feature.

Returns Promise<Feature>

Promise of the moved feature.

-
+
diff --git a/latest/classes/CapabilitiesUtil_CapabilitiesUtil.default.html b/latest/classes/CapabilitiesUtil_CapabilitiesUtil.default.html index 5f58253ff..dc323cbfb 100644 --- a/latest/classes/CapabilitiesUtil_CapabilitiesUtil.default.html +++ b/latest/classes/CapabilitiesUtil_CapabilitiesUtil.default.html @@ -1,6 +1,6 @@ default | @terrestris/ol-util

Helper class to parse capabilities of WMS layers

CapabilitiesUtil

-

Constructors

Constructors

Methods

  • Returns the layers from a parsed WMS GetCapabilities object.

    +
  • Returns the layers from a parsed WMS GetCapabilities object.

    Parameters

    • capabilities: any

      A capabilities object.

    • nameField: string = 'Name'

      Configure the field which should be set as the 'name' property in the openlayers layer.

      @@ -16,14 +16,14 @@ GetMap, GetFeatureInfo and GetLegendGraphic requests to avoid CORS issues.

    Returns ImageLayer<ImageWMS>[]

    Array of OlLayerImage

    -
  • Fetches and parses the WMS Capabilities document for the given URL.

    +
  • Fetches and parses the WMS Capabilities document for the given URL.

    Parameters

    • capabilitiesUrl: string

      Url to WMS capabilities document.

    • fetchOpts: RequestInit = {}

      Optional fetch options to make use of while requesting the Capabilities.

    Returns Promise<any>

    An object representing the WMS capabilities.

    -
  • Fetches and parses the WMS Capabilities document for the given layer.

    Parameters

    • layer: WmsLayer

      The layer to the get the Capabilites for.

    • fetchOpts: RequestInit = {}

      Optional fetch options to make use of while requesting the Capabilities.

    Returns Promise<any>

    An object representing the WMS capabilities.

    -
+
diff --git a/latest/classes/FeatureUtil_FeatureUtil.default.html b/latest/classes/FeatureUtil_FeatureUtil.default.html index 239810d9e..67202e6b2 100644 --- a/latest/classes/FeatureUtil_FeatureUtil.default.html +++ b/latest/classes/FeatureUtil_FeatureUtil.default.html @@ -1,6 +1,6 @@ default | @terrestris/ol-util

Helper class for working with OpenLayers features.

FeatureUtil

-

Constructors

Returns undefined | string

The (unqualified) name of the featureType or undefined if the name could not be picked.

-
  • Extracts the featureType name from given GetFeatureInfo URL. +

  • Extracts the featureType name from given GetFeatureInfo URL. This method is mostly useful for raster layers which features could have no ID set.

    Parameters

    • url: string

      GetFeatureInfo URL possibly containing featureType name.

    • qualified: boolean = true

      Whether the qualified featureType name should be returned or not. Default is true.

    Returns undefined | string

    Obtained featureType name as string.

    -
  • Maps an array of features to an array of geometries.

    +
  • Maps an array of features to an array of geometries.

    Parameters

    • features: Feature[]

    Returns Geometry[]

    The geometries of the features

    -
  • Resolves the given template string with the given feature attributes, e.g. +

  • Resolves the given template string with the given feature attributes, e.g. the template "Size of area is {{AREA_SIZE}} km²" would be to resolved to "Size of area is 1909 km²" (assuming the feature's attribute AREA_SIZE really exists).

    @@ -37,4 +37,4 @@
  • leaveAsUrl: boolean = false

    If set to true, template won't be wrapped into -tag and will be returned as URL. Default is false.

Returns string

The resolved template string.

-
+
diff --git a/latest/classes/FileUtil_FileUtil.FileUtil.html b/latest/classes/FileUtil_FileUtil.FileUtil.html index 177c90601..2a35eeda0 100644 --- a/latest/classes/FileUtil_FileUtil.FileUtil.html +++ b/latest/classes/FileUtil_FileUtil.FileUtil.html @@ -1,15 +1,15 @@ FileUtil | @terrestris/ol-util

Helper class for adding layers from various file formats.

-

Constructors

Constructors

Methods

  • Adds a new vector layer from a geojson string.

    Parameters

    • json: string | FeatureCollection | FeatureCollection[]

      the geojson string or object

    • map: Map

      the map to add the layer to

      -

    Returns void

  • Adds a new vector layer from a geojson file.

    +

Returns void

  • Adds a new vector layer from a geojson file.

    Parameters

    • file: File

      the file to read the geojson from

    • map: Map

      the map to add the layer to

      -

    Returns void

  • Adds a new vector layer from a shape file (zip).

    +

Returns void

+

Returns void

diff --git a/latest/classes/GeometryUtil_GeometryUtil.default.html b/latest/classes/GeometryUtil_GeometryUtil.default.html index 31d1544fb..9d45d923c 100644 --- a/latest/classes/GeometryUtil_GeometryUtil.default.html +++ b/latest/classes/GeometryUtil_GeometryUtil.default.html @@ -1,7 +1,7 @@ default | @terrestris/ol-util

Helper class for the geospatial analysis. Makes use of Turf.js.

GeometryUtil

-

Constructors

Constructors

Methods

  • projection: ProjectionLike = 'EPSG:3857'

    The projection of the input geometry as EPSG code. Default is to EPSG:3857.

  • Returns undefined | Geometry | Feature

    The geometry or feature with the added buffer.

    -
    • Adds a buffer to a given geometry.

      +
    • Adds a buffer to a given geometry.

      Parameters

      • geometry: Geometry

        The geometry.

      • radius: number = 0

        The buffer to add in meters.

      • projection: ProjectionLike = 'EPSG:3857'

        The projection of the input geometry as EPSG code. Default is to EPSG:3857.

      Returns undefined | Geometry

      The geometry with the added buffer.

      -
    • Finds the difference between two polygons by clipping the second polygon from the first.

      +
    • Finds the difference between two polygons by clipping the second polygon from the first.

      If both polygons are of type ol.Feature it will return an ol.Feature. Else it will return an ol.geom.Geometry.

      Parameters

      • polygon1: Polygon | Feature<Polygon>
      • polygon2: Polygon | Feature<Polygon>
      • projection: ProjectionLike = 'EPSG:3857'

        The projection of the input polygons as EPSG code. Default is to EPSG:3857.

      Returns Polygon | MultiPolygon | Feature<Polygon | MultiPolygon>

      A Feature or geometry with the area of polygon1 excluding the area of polygon2.

      -
    • Finds the difference between two polygons by clipping the second polygon from the first.

      +
    • Finds the difference between two polygons by clipping the second polygon from the first.

      Parameters

      • polygon1: Polygon

        An ol.geom.Geometry

      • polygon2: Polygon

        An ol.geom.Geometry

      • projection: ProjectionLike = 'EPSG:3857'

        The projection of the input polygons as EPSG code. Default is to EPSG:3857.

      Returns Polygon | MultiPolygon

      A with the area of polygon1 excluding the area of polygon2.

      -
    • Takes two polygons and finds their intersection.

      +
    • Takes two polygons and finds their intersection.

      Parameters

      • polygon1: Polygon | MultiPolygon

        An ol.geom.Geometry

      • polygon2: Polygon | MultiPolygon

        An ol.geom.Geometry

      • projection: ProjectionLike = 'EPSG:3857'

        The projection of the input polygons as EPSG code. Default is to EPSG:3857.

      Returns undefined | Polygon | MultiPolygon

      A Geometry with the shared area of the two polygons or null if the polygons don't intersect.

      -
    • Takes two polygons and finds their intersection.

      +
    • Takes two polygons and finds their intersection.

      If both polygons are of type ol.Feature it will return an ol.Feature. Else it will return an ol.geom.Geometry.

      Parameters

      • polygon1: Polygon | Feature<Polygon | MultiPolygon>
      • polygon2: Polygon | Feature<Polygon | MultiPolygon>
      • projection: ProjectionLike = 'EPSG:3857'

        The projection of the input polygons as EPSG code. Default is to EPSG:3857.

      Returns undefined | Polygon | MultiPolygon | Feature<Polygon | MultiPolygon>

      A Feature or Geometry with the shared area of the two polygons or null if the polygons don't intersect.

      -
    • Merges multiple geometries into one MultiGeometry.

      +
    • Merges multiple geometries into one MultiGeometry.

      Type Parameters

      • Geom extends Geometry

      Parameters

      • geometries: Geom[]

        An array of ol.geom.geometries;

      Returns MultiPolygon | MultiLineString | MultiPoint

      A Multigeometry.

      -
    • Splits an array of geometries (and multi geometries) or a single MultiGeom +

    • Splits an array of geometries (and multi geometries) or a single MultiGeom into an array of single geometries.

      Parameters

      • geometry: Geometry | Geometry[]

        An (array of) ol.geom.geometries;

      Returns Geometry[]

      An array of geometries.

      -
    • Splits an OlFeature with/or ol.geom.Polygon by an OlFeature with/or ol.geom.LineString +

    • Splits an OlFeature with/or ol.geom.Polygon by an OlFeature with/or ol.geom.LineString into an array of instances of OlFeature with/or ol.geom.Polygon. If the target polygon (first param) is of type ol.Feature it will return an array with ol.Feature. If the target polygon (first param) is of type @@ -75,7 +75,7 @@ Default is to EPSG:3857.

    Returns Polygon[] | Feature<Polygon>[]

    An array of instances of OlFeature with/or ol.geom.Polygon

    -
    • Splits an ol.geom.Polygon by an ol.geom.LineString +

    • Splits an ol.geom.Polygon by an ol.geom.LineString into an array of instances of ol.geom.Polygon.

      Parameters

      • polygon: Polygon

        The polygon geometry to split.

      • line: LineString

        The line geometry to split the polygon @@ -83,16 +83,16 @@

      • projection: ProjectionLike = 'EPSG:3857'

        The EPSG code of the input features. Default is to EPSG:3857.

      Returns Polygon[]

      An array of instances of ol.geom.Polygon

      -
    • Takes two or more polygons and returns a combined (Multi-)polygon.

      +
    • Takes two or more polygons and returns a combined (Multi-)polygon.

      Parameters

      • inputPolygonalObjects: Polygon[] | Feature<Polygon | MultiPolygon>[]

        An array of ol.Feature or ol.geom.Geometry instances of type (Multi)-Polygon.

      • projection: ProjectionLike = 'EPSG:3857'

        The projection of the input polygons as EPSG code. Default is to EPSG:3857.

      Returns Polygon | MultiPolygon | Feature<Polygon | MultiPolygon>

      A Feature or Geometry with the combined area of the (Multi-)polygons.

      -
    • Takes two or more polygons and returns a combined (Multi-)polygon.

      +
    • Takes two or more polygons and returns a combined (Multi-)polygon.

      Parameters

      • polygons: Polygon[] | MultiPolygon[]

        An array of ol.geom.Geometry instances of type (Multi-)polygon.

      • projection: ProjectionLike = 'EPSG:3857'

        The projection of the input polygons as EPSG code. Default is to EPSG:3857.

      Returns Polygon | MultiPolygon

      A FGeometry with the combined area of the (Multi-)polygons.

      -
    +
    diff --git a/latest/classes/LayerUtil_LayerUtil.default.html b/latest/classes/LayerUtil_LayerUtil.default.html index de790a203..6e39268d2 100644 --- a/latest/classes/LayerUtil_LayerUtil.default.html +++ b/latest/classes/LayerUtil_LayerUtil.default.html @@ -1,6 +1,6 @@ default | @terrestris/ol-util

    Helper class for layer interaction.

    LayerUtil

    -

    Constructors

    Constructors

    Methods

    Parameters

    • layer: WmsLayer
    • fetchOpts: RequestInit = {}

      Optional fetch options to make use of while requesting the Capabilities.

    Returns Promise<Extent>

    The extent of the layer.

    -
    • Returns all attributions as text joined by a separator.

      +
    • Returns all attributions as text joined by a separator.

      Parameters

      • layer: Layer

        The layer to get the attributions from.

      • separator: string = ', '

        The separator separating multiple attributions.

      • removeDuplicates: boolean = false

        Whether to remove duplicated attribution strings or not.

      Returns string

      The attributions.

      -
    +
    diff --git a/latest/classes/MapUtil_MapUtil.MapUtil.html b/latest/classes/MapUtil_MapUtil.MapUtil.html index a124f3b2d..9bfd1cfad 100644 --- a/latest/classes/MapUtil_MapUtil.MapUtil.html +++ b/latest/classes/MapUtil_MapUtil.MapUtil.html @@ -1,5 +1,5 @@ MapUtil | @terrestris/ol-util

    Helper class for the OpenLayers map.

    -

    Constructors

    Constructors

    Methods

    generatePrintConfig getAllLayers getInteractionsByName @@ -23,7 +23,7 @@ derived from a map (center, scale, projection, layers).

    Parameters

    • olMap: Map

      The ol map.

    Returns Promise<
        {
            center: Coordinate;
            layers: any[];
            projection: string;
            scale: undefined
            | number;
        },
    >

    Promise of the inmkap print spec.

    -
    • Returns all layers of a collection. Even the hidden ones.

      +
    • Returns all layers of a collection. Even the hidden ones.

      Parameters

      • collection: Map | LayerGroup

        The collection to get the layers from. This can be an ol.layer.Group or an ol.Map.

        @@ -31,44 +31,44 @@ If it returns true it will be included in the returned layers.

      Returns BaseLayer[]

      An array of all Layers.

      -
    • Returns all interactions by the given name of a map.

      +
    • Returns all interactions by the given name of a map.

      Parameters

      • map: Map

        The map to use for lookup.

      • name: string

        The name of the interaction to look for.

      Returns Interaction[]

      The list of result interactions.

      -
    • Returns the layer from the provided map by the given feature.

      +
    • Returns the layer from the provided map by the given feature.

      Parameters

      • map: Map

        The map to use for lookup.

      • feature: Feature

        The feature to get the layer by.

      • namespaces: string[]

        list of supported GeoServer namespaces.

      Returns undefined | BaseLayer

      The result layer or undefined if the layer could not be found.

      -
    • Returns the layer from the provided map by the given name.

      +
    • Returns the layer from the provided map by the given name.

      Parameters

      • map: Map

        The map to use for lookup.

      • name: string

        The name to get the layer by.

      Returns BaseLayer

      The result layer or undefined if the layer could not be found.

      -
    • Returns the layer from the provided map by the given name +

    • Returns the layer from the provided map by the given name (parameter LAYERS).

      Parameters

      • map: Map

        The map to use for lookup.

      • name: string

        The name to get the layer by.

      Returns undefined | WmsLayer

      The result layer or undefined if the layer could not be found.

      -
    • Get a layer by its key (ol_uid).

      +
    • Get a layer by its key (ol_uid).

      Parameters

      • map: Map

        The map to use for lookup.

      • olUid: string

      Returns undefined | BaseLayer

      The layer.

      -
    • Get information about the LayerPosition in the tree.

      +
    • Get information about the LayerPosition in the tree.

      Parameters

      • layer: BaseLayer

        The layer to get the information.

      • groupLayerOrMap: Map | LayerGroup

        The groupLayer or map containing the layer.

      Returns LayerPositionInfo

      The groupLayer containing the layer and the position of the layer in the collection.

      -
    • Returns all layers of the specified layer group recursively.

      +
    • Returns all layers of the specified layer group recursively.

      Parameters

      • map: Map

        The map to use for lookup.

      • layerGroup: LayerGroup

        The group to flatten.

      Returns BaseLayer[]

      The (flattened) layers from the group

      -
    • Returns the list of layers matching the given pair of properties.

      +
    • Returns the list of layers matching the given pair of properties.

      Parameters

      • map: Map

        The map to use for lookup.

      • key: string

        The property key.

      • value: any

        The property value.

      Returns BaseLayer[]

      The array of matching layers.

      -
    • Get the getlegendGraphic url of a layer. Designed for geoserver. +

    • Get the getlegendGraphic url of a layer. Designed for geoserver. Currently supported Sources:

      • ol.source.TileWms (with url configured)
      • @@ -77,7 +77,7 @@

      Parameters

      • layer: WmsLayer | WmtsLayer

        The layer that you want to have a legendUrl for.

      • extraParams: Record<string, string | number> = {}

      Returns string

      The getLegendGraphicUrl.

      -
    • Calculates the appropriate map resolution for a given scale in the given +

    • Calculates the appropriate map resolution for a given scale in the given units.

      See: https://gis.stackexchange.com/questions/158435/ how-to-get-current-scale-in-openlayers-3

      @@ -85,21 +85,21 @@ resolution for.

    • units: Units

      The units to use for calculation (m or degrees).

    Returns undefined | number

    The calculated resolution.

    -
    • Returns the appropriate scale for the given resolution and units.

      +
    • Returns the appropriate scale for the given resolution and units.

      Parameters

      • resolution: string | number

        The resolutions to calculate the scale for.

      • units: Units

        The units the resolution is based on, typically either 'm' or 'degrees'.

      Returns undefined | number

      The appropriate scale.

      -
    • Returns the appropriate zoom level for the given scale and units.

      +
    • Returns the appropriate zoom level for the given scale and units.

      Parameters

      • scale: number

        Map scale to get the zoom for.

      • resolutions: number[]

        Resolutions array.

      • units: Units = 'm'

        The units the resolutions are based on, typically either 'm' or 'degrees'. Default is 'm'.

      Returns number

      Determined zoom level for the given scale.

      -
    • Checks if the given layer is visible for the given resolution.

      +
    • Checks if the given layer is visible for the given resolution.

      Parameters

      • layer: BaseLayer

        The layer.

      • resolution: number

        The resolution of the map

        -

      Returns boolean

    • Checks whether the resolution of the passed map's view lies inside of the +

    Returns boolean

    • Checks whether the resolution of the passed map's view lies inside of the min- and max-resolution of the passed layer, e.g. whether the layer should be displayed at the current map view resolution.

      Parameters

      • Optionallayer: BaseLayer

        The layer to check.

        @@ -110,14 +110,14 @@ the layer should be displayed at the current map view resolution. Will be false when no layer or no map is passed or if the view of the map is falsy or does not have a resolution (yet).

        -
    • Rounds a scale number depending on its size.

      +
    • Rounds a scale number depending on its size.

      Parameters

      • scale: number

        The exact scale

      Returns number

      The roundedScale

      -
    • Set visibility for layer having names (if in map)

      +
    • Set visibility for layer having names (if in map)

      Parameters

      • olMap: Map

        The OpenLayers map.

      • layerNames: string[]

        An array of layer names (feature type names can also be used)

      • visible: boolean

        if layer should be visible or not

        -

      Returns void

    • Fits the map's view to the extent of the passed features.

      +

    Returns void

    +

    Returns void

    diff --git a/latest/classes/MeasureUtil_MeasureUtil.default.html b/latest/classes/MeasureUtil_MeasureUtil.default.html index d272a1b62..c1cd682b9 100644 --- a/latest/classes/MeasureUtil_MeasureUtil.default.html +++ b/latest/classes/MeasureUtil_MeasureUtil.default.html @@ -1,7 +1,7 @@ default | @terrestris/ol-util

    This class provides some static methods which might be helpful when working with measurements.

    MeasureUtil

    -

    Constructors

    Constructors

    Methods

    angle angle360 formatAngle @@ -21,7 +21,7 @@
  • end: number[]

    The end coordinates of the line with the x-coordinate being at index 0 and y-coordinate being at index 1.

  • Returns number

    the angle in degrees, ranging from -180° to 180°.

    -
    • Determine the angle between two coordinates. The angle will be between +

    • Determine the angle between two coordinates. The angle will be between 0° and 360°, with 0° being in the east. The angle will increase counter-clockwise.

      Inspired by https://stackoverflow.com/a/31136507

      @@ -30,7 +30,7 @@
    • end: number[]

      The end coordinates of the line with the x-coordinate being at index 0 and y-coordinate being at index 1.

    Returns number

    the angle in degrees, ranging from 0° and 360°.

    -
    • Returns the angle of the passed linestring in degrees, with 'N' being the +

    • Returns the angle of the passed linestring in degrees, with 'N' being the 0°-line and the angle increases in clockwise direction.

      Parameters

      • line: LineString

        The linestring to get the angle from. As this line is coming from our internal draw @@ -38,32 +38,32 @@

      • decimalPlacesInToolTips: number = 2

        How many decimal places will be allowed for the measure tooltips.

      Returns string

      The formatted angle of the line.

      -
    • Format area output for the tooltip.

      +
    • Format area output for the tooltip.

      Parameters

      • geom: Polygon | Circle

        The drawn geometry (circle or polygon).

      • map: Map

        An OlMap.

      • decimalPlacesInToolTips: number

        How many decimal places will be allowed for the measure tooltips.

      • geodesic: boolean = true

        Is the measurement geodesic.

      Returns string

      The formatted area of the polygon.

      -
    • Format length output for the tooltip.

      +
    • Format length output for the tooltip.

      Parameters

      • line: LineString

        The drawn line.

      • map: Map

        An OlMap.

      • decimalPlacesInToolTips: number

        How many decimal places will be allowed for the measure tooltips

      • geodesic: boolean = true

        Is the measurement geodesic (default is true).

      Returns string

      The formatted length of the line (units: km, m or mm).

      -
    • Get the area of an OlGeomPolygon.

      +
    • Get the area of an OlGeomPolygon.

      Parameters

      • polygon: Polygon

        The drawn polygon.

      • map: Map

        An OlMap.

      • geodesic: boolean = true

        Is the measurement geodesic (default is true).

      • radius: number = 6371008.8

        Sphere radius. By default, the radius of the earth is used (Clarke 1866 Authalic Sphere, 6371008.8).

      Returns number

      The area of the polygon in square meter.

      -
    • Get the estimated area of an OlGeomCircle.

      Parameters

      • circleGeom: Circle

        The drawn circle.

      • map: Map

        An OlMap.

      Returns number

      The area of the circle in square meter.

      -
    • Get the length of a OlGeomLineString.

      +
    • Get the length of a OlGeomLineString.

      Parameters

      • line: LineString

        The drawn line.

      • map: Map

        An OlMap.

      • geodesic: boolean = true

        Is the measurement geodesic (default is true).

        @@ -72,14 +72,14 @@
      • decimalPrecision: number = 6

        Set the decimal precision on length value for non-geodesic map (default value 6)

      Returns number

      The length of line in meters.

      -
    • Given an angle between 0° and 360° this angle returns the exact opposite +

    • Given an angle between 0° and 360° this angle returns the exact opposite of the angle, e.g. for 90° you'll get back 270°. This effectively turns the direction of the angle from counter-clockwise to clockwise.

      Parameters

      • angle360: number

        The input angle obtained counter-clockwise.

      Returns number

      The clockwise angle.

      -
    • This methods adds an offset of 90° to an counter-clockwise increasing +

    • This methods adds an offset of 90° to an counter-clockwise increasing angle of a line so that the origin (0°) lies at the top (in the north).

      Parameters

      • angle360: number

        The input angle obtained counter-clockwise, with 0° degrees being in the east.

      Returns number

      The adjusted angle, with 0° being in the north.

      -
    +
    diff --git a/latest/classes/PermalinkUtil_PermalinkUtil.PermalinkUtil.html b/latest/classes/PermalinkUtil_PermalinkUtil.PermalinkUtil.html index f5af2dcc1..f2c2c6c08 100644 --- a/latest/classes/PermalinkUtil_PermalinkUtil.PermalinkUtil.html +++ b/latest/classes/PermalinkUtil_PermalinkUtil.PermalinkUtil.html @@ -1,5 +1,5 @@ PermalinkUtil | @terrestris/ol-util

    Helper class for some operations related to permalink function.

    -

    Constructors

    Constructors

    Methods

    applyLink getLink setParentsVisible @@ -15,7 +15,7 @@ handled by the link. Default is to consider all current map layers of type ol/layer/Tile.

    Returns null | string

    The customLayerAttributes, if defined. Otherwise null.

    -
    • Creates a permalink based on the given map state. It will contain +

    • Creates a permalink based on the given map state. It will contain the current view state of the map (center and zoom) as well as the current (filtered) list of layers.

      Parameters

      • map: Map

        The OpenLayers map

        @@ -30,9 +30,9 @@ visible layers of type ol/layer/Tile.

      • customAttributes: string[] = []

        Custom layer attributes which will be saved in the permalink for each layer.

      Returns string

      The permalink.

      -
    • Search through the given Ol-Collection for the given id and +

    • Search through the given Ol-Collection for the given id and set all parenting groups visible.

      Parameters

      • map: Map

        The openlayers map

      • coll: Collection<BaseLayer>

        The Openlayers Collection

      • id: string

        Ther layer ol uid to search for

        -

      Returns void

    +

    Returns void

    diff --git a/latest/classes/ProjectionUtil_ProjectionUtil.ProjectionUtil.html b/latest/classes/ProjectionUtil_ProjectionUtil.ProjectionUtil.html index 36ad33263..ca9ce1f92 100644 --- a/latest/classes/ProjectionUtil_ProjectionUtil.ProjectionUtil.html +++ b/latest/classes/ProjectionUtil_ProjectionUtil.ProjectionUtil.html @@ -1,7 +1,7 @@ ProjectionUtil | @terrestris/ol-util

    Helper class for projection handling. Makes use of Proj4js.

    ProjectionUtil

    -

    Constructors

    Constructors

    Methods

  • useDefaultMappings: boolean = true

    Whether the default CRS should be mapped as well or not. Default is true.

    -
  • Returns void

    • Registers custom CRS definitions to the application.

      +

    Returns void

    • Converts geographic coordinates given in DDD format like DD.DDDD° to +

    Returns void

    +
    diff --git a/latest/classes/WfsFilterUtil_WfsFilterUtil.default.html b/latest/classes/WfsFilterUtil_WfsFilterUtil.default.html index c8b9e575f..d2146c167 100644 --- a/latest/classes/WfsFilterUtil_WfsFilterUtil.default.html +++ b/latest/classes/WfsFilterUtil_WfsFilterUtil.default.html @@ -1,9 +1,9 @@ default | @terrestris/ol-util

    Helper class for building filters to be used with WFS GetFeature requests.

    WfsFilterUtil

    -

    Constructors

    Constructors

    Methods

    Constructors

    Methods

    • Creates GetFeature request body for all provided featureTypes and applies related filter encoding on it.

      Parameters

      • searchConfig: SearchConfig

        The search config

      • searchTerm: string

        Search string to be used with filter.

        -

      Returns undefined | Element

    +

    Returns undefined | Element

    diff --git a/latest/functions/typeUtils_typeUtils.isWfsLayer.html b/latest/functions/typeUtils_typeUtils.isWfsLayer.html index ce645d4da..f326d6b55 100644 --- a/latest/functions/typeUtils_typeUtils.isWfsLayer.html +++ b/latest/functions/typeUtils_typeUtils.isWfsLayer.html @@ -1 +1 @@ -isWfsLayer | @terrestris/ol-util
    +isWfsLayer | @terrestris/ol-util
    diff --git a/latest/functions/typeUtils_typeUtils.isWmsLayer.html b/latest/functions/typeUtils_typeUtils.isWmsLayer.html index 364fae5da..7ed6ffaf0 100644 --- a/latest/functions/typeUtils_typeUtils.isWmsLayer.html +++ b/latest/functions/typeUtils_typeUtils.isWmsLayer.html @@ -1 +1 @@ -isWmsLayer | @terrestris/ol-util
    +isWmsLayer | @terrestris/ol-util
    diff --git a/latest/functions/typeUtils_typeUtils.isWmtsLayer.html b/latest/functions/typeUtils_typeUtils.isWmtsLayer.html index ed90eea1e..9736a5333 100644 --- a/latest/functions/typeUtils_typeUtils.isWmtsLayer.html +++ b/latest/functions/typeUtils_typeUtils.isWmtsLayer.html @@ -1 +1 @@ -isWmtsLayer | @terrestris/ol-util
    +isWmtsLayer | @terrestris/ol-util
    diff --git a/latest/interfaces/LayerUtil_InkmapTypes.InkmapGeoJsonLayer.html b/latest/interfaces/LayerUtil_InkmapTypes.InkmapGeoJsonLayer.html index 7386236af..daac8e2e1 100644 --- a/latest/interfaces/LayerUtil_InkmapTypes.InkmapGeoJsonLayer.html +++ b/latest/interfaces/LayerUtil_InkmapTypes.InkmapGeoJsonLayer.html @@ -1,7 +1,7 @@ -InkmapGeoJsonLayer | @terrestris/ol-util
    interface InkmapGeoJsonLayer {
        attribution?: string;
        geojson: any;
        layerName?: string;
        legendUrl?: string;
        style: any;
        type: "GeoJSON";
    }

    Properties

    attribution? +InkmapGeoJsonLayer | @terrestris/ol-util
    interface InkmapGeoJsonLayer {
        attribution?: string;
        geojson: any;
        layerName?: string;
        legendUrl?: string;
        style: any;
        type: "GeoJSON";
    }

    Properties

    attribution?: string
    geojson: any
    layerName?: string
    legendUrl?: string
    style: any
    type: "GeoJSON"
    +

    Properties

    attribution?: string
    geojson: any
    layerName?: string
    legendUrl?: string
    style: any
    type: "GeoJSON"
    diff --git a/latest/interfaces/LayerUtil_InkmapTypes.InkmapOsmLayer.html b/latest/interfaces/LayerUtil_InkmapTypes.InkmapOsmLayer.html index e25f0b315..3412f0907 100644 --- a/latest/interfaces/LayerUtil_InkmapTypes.InkmapOsmLayer.html +++ b/latest/interfaces/LayerUtil_InkmapTypes.InkmapOsmLayer.html @@ -1,4 +1,4 @@ -InkmapOsmLayer | @terrestris/ol-util
    interface InkmapOsmLayer {
        attribution?: string;
        format?: string;
        geojson?: any;
        layer?: string;
        layerName?: string;
        legendUrl?: string;
        matrixSet?: string;
        opacity?: number;
        projection?: string;
        requestEncoding?: string;
        style?: any;
        tiled?: boolean;
        tileGrid?: any;
        type: "XYZ";
        url: string;
    }

    Properties

    attribution? +InkmapOsmLayer | @terrestris/ol-util
    interface InkmapOsmLayer {
        attribution?: string;
        format?: string;
        geojson?: any;
        layer?: string;
        layerName?: string;
        legendUrl?: string;
        matrixSet?: string;
        opacity?: number;
        projection?: string;
        requestEncoding?: string;
        style?: any;
        tiled?: boolean;
        tileGrid?: any;
        type: "XYZ";
        url: string;
    }

    Properties

    Properties

    attribution?: string
    format?: string
    geojson?: any
    layer?: string
    layerName?: string
    legendUrl?: string
    matrixSet?: string
    opacity?: number
    projection?: string
    requestEncoding?: string
    style?: any
    tiled?: boolean
    tileGrid?: any
    type: "XYZ"
    url: string
    +

    Properties

    attribution?: string
    format?: string
    geojson?: any
    layer?: string
    layerName?: string
    legendUrl?: string
    matrixSet?: string
    opacity?: number
    projection?: string
    requestEncoding?: string
    style?: any
    tiled?: boolean
    tileGrid?: any
    type: "XYZ"
    url: string
    diff --git a/latest/interfaces/LayerUtil_InkmapTypes.InkmapPrintSpec.html b/latest/interfaces/LayerUtil_InkmapTypes.InkmapPrintSpec.html index e739e7c84..63f50d7ae 100644 --- a/latest/interfaces/LayerUtil_InkmapTypes.InkmapPrintSpec.html +++ b/latest/interfaces/LayerUtil_InkmapTypes.InkmapPrintSpec.html @@ -1,4 +1,4 @@ -InkmapPrintSpec | @terrestris/ol-util
    interface InkmapPrintSpec {
        attributions:
            | boolean
            | "bottom-left"
            | "bottom-right"
            | "top-left"
            | "top-right";
        center: [number, number];
        dpi: number;
        layers: InkmapLayer[];
        northArrow: string | boolean;
        projection: string;
        projectionDefinitions?: InkmapProjectionDefinition[];
        scale: number;
        scaleBar: boolean | ScaleBarSpec;
        size: [number, number] | [number, number, string];
    }

    Properties

    attributions +InkmapPrintSpec | @terrestris/ol-util
    interface InkmapPrintSpec {
        attributions:
            | boolean
            | "bottom-left"
            | "bottom-right"
            | "top-left"
            | "top-right";
        center: [number, number];
        dpi: number;
        layers: InkmapLayer[];
        northArrow: string | boolean;
        projection: string;
        projectionDefinitions?: InkmapProjectionDefinition[];
        scale: number;
        scaleBar: boolean | ScaleBarSpec;
        size: [number, number] | [number, number, string];
    }

    Properties

    Properties

    attributions:
        | boolean
        | "bottom-left"
        | "bottom-right"
        | "top-left"
        | "top-right"
    center: [number, number]
    dpi: number
    layers: InkmapLayer[]
    northArrow: string | boolean
    projection: string
    projectionDefinitions?: InkmapProjectionDefinition[]
    scale: number
    scaleBar: boolean | ScaleBarSpec
    size: [number, number] | [number, number, string]
    +

    Properties

    attributions:
        | boolean
        | "bottom-left"
        | "bottom-right"
        | "top-left"
        | "top-right"
    center: [number, number]
    dpi: number
    layers: InkmapLayer[]
    northArrow: string | boolean
    projection: string
    projectionDefinitions?: InkmapProjectionDefinition[]
    scale: number
    scaleBar: boolean | ScaleBarSpec
    size: [number, number] | [number, number, string]
    diff --git a/latest/interfaces/LayerUtil_InkmapTypes.InkmapProjectionDefinition.html b/latest/interfaces/LayerUtil_InkmapTypes.InkmapProjectionDefinition.html index bb95a1650..7b8a14c2e 100644 --- a/latest/interfaces/LayerUtil_InkmapTypes.InkmapProjectionDefinition.html +++ b/latest/interfaces/LayerUtil_InkmapTypes.InkmapProjectionDefinition.html @@ -1,4 +1,4 @@ -InkmapProjectionDefinition | @terrestris/ol-util
    interface InkmapProjectionDefinition {
        bbox: [number, number, number, number];
        name: string;
        proj4: string;
    }

    Properties

    bbox +InkmapProjectionDefinition | @terrestris/ol-util
    interface InkmapProjectionDefinition {
        bbox: [number, number, number, number];
        name: string;
        proj4: string;
    }

    Properties

    Properties

    bbox: [number, number, number, number]
    name: string
    proj4: string
    +

    Properties

    bbox: [number, number, number, number]
    name: string
    proj4: string
    diff --git a/latest/interfaces/LayerUtil_InkmapTypes.InkmapWfsLayer.html b/latest/interfaces/LayerUtil_InkmapTypes.InkmapWfsLayer.html index 57d73912a..f86970b7b 100644 --- a/latest/interfaces/LayerUtil_InkmapTypes.InkmapWfsLayer.html +++ b/latest/interfaces/LayerUtil_InkmapTypes.InkmapWfsLayer.html @@ -1,8 +1,8 @@ -InkmapWfsLayer | @terrestris/ol-util
    interface InkmapWfsLayer {
        attribution?: string;
        layer?: string;
        layerName?: string;
        legendUrl?: string;
        projection?: string;
        type: "WFS";
        url: string;
    }

    Properties

    attribution? +InkmapWfsLayer | @terrestris/ol-util
    interface InkmapWfsLayer {
        attribution?: string;
        layer?: string;
        layerName?: string;
        legendUrl?: string;
        projection?: string;
        type: "WFS";
        url: string;
    }

    Properties

    attribution?: string
    layer?: string
    layerName?: string
    legendUrl?: string
    projection?: string
    type: "WFS"
    url: string
    +

    Properties

    attribution?: string
    layer?: string
    layerName?: string
    legendUrl?: string
    projection?: string
    type: "WFS"
    url: string
    diff --git a/latest/interfaces/LayerUtil_InkmapTypes.InkmapWmsLayer.html b/latest/interfaces/LayerUtil_InkmapTypes.InkmapWmsLayer.html index b890cc29c..66301dd0e 100644 --- a/latest/interfaces/LayerUtil_InkmapTypes.InkmapWmsLayer.html +++ b/latest/interfaces/LayerUtil_InkmapTypes.InkmapWmsLayer.html @@ -1,4 +1,4 @@ -InkmapWmsLayer | @terrestris/ol-util
    interface InkmapWmsLayer {
        attribution?: string;
        customParams?: any;
        layer: string;
        layerName?: string;
        legendUrl?: string;
        opacity?: number;
        tiled?: boolean;
        type: "WMS";
        url: string;
    }

    Properties

    attribution? +InkmapWmsLayer | @terrestris/ol-util
    interface InkmapWmsLayer {
        attribution?: string;
        customParams?: any;
        layer: string;
        layerName?: string;
        legendUrl?: string;
        opacity?: number;
        tiled?: boolean;
        type: "WMS";
        url: string;
    }

    Properties

    attribution?: string
    customParams?: any
    layer: string
    layerName?: string
    legendUrl?: string
    opacity?: number
    tiled?: boolean
    type: "WMS"
    url: string
    +

    Properties

    attribution?: string
    customParams?: any
    layer: string
    layerName?: string
    legendUrl?: string
    opacity?: number
    tiled?: boolean
    type: "WMS"
    url: string
    diff --git a/latest/interfaces/LayerUtil_InkmapTypes.InkmapWmtsLayer.html b/latest/interfaces/LayerUtil_InkmapTypes.InkmapWmtsLayer.html index cdae0ea7a..f64dfb158 100644 --- a/latest/interfaces/LayerUtil_InkmapTypes.InkmapWmtsLayer.html +++ b/latest/interfaces/LayerUtil_InkmapTypes.InkmapWmtsLayer.html @@ -1,4 +1,4 @@ -InkmapWmtsLayer | @terrestris/ol-util
    interface InkmapWmtsLayer {
        attribution?: string;
        format?: string;
        layer?: string;
        layerName?: string;
        legendUrl?: string;
        matrixSet?: string;
        opacity?: number;
        projection?: string;
        requestEncoding?: string;
        tileGrid?: any;
        type: "WMTS";
        url: string;
    }

    Properties

    attribution? +InkmapWmtsLayer | @terrestris/ol-util
    interface InkmapWmtsLayer {
        attribution?: string;
        format?: string;
        layer?: string;
        layerName?: string;
        legendUrl?: string;
        matrixSet?: string;
        opacity?: number;
        projection?: string;
        requestEncoding?: string;
        tileGrid?: any;
        type: "WMTS";
        url: string;
    }

    Properties

    Properties

    attribution?: string
    format?: string
    layer?: string
    layerName?: string
    legendUrl?: string
    matrixSet?: string
    opacity?: number
    projection?: string
    requestEncoding?: string
    tileGrid?: any
    type: "WMTS"
    url: string
    +

    Properties

    attribution?: string
    format?: string
    layer?: string
    layerName?: string
    legendUrl?: string
    matrixSet?: string
    opacity?: number
    projection?: string
    requestEncoding?: string
    tileGrid?: any
    type: "WMTS"
    url: string
    diff --git a/latest/interfaces/LayerUtil_InkmapTypes.ScaleBarSpec.html b/latest/interfaces/LayerUtil_InkmapTypes.ScaleBarSpec.html index 6353b5c1b..5d93e1941 100644 --- a/latest/interfaces/LayerUtil_InkmapTypes.ScaleBarSpec.html +++ b/latest/interfaces/LayerUtil_InkmapTypes.ScaleBarSpec.html @@ -1,3 +1,3 @@ -ScaleBarSpec | @terrestris/ol-util
    interface ScaleBarSpec {
        position: "bottom-left" | "bottom-right";
        units: string;
    }

    Properties

    position +ScaleBarSpec | @terrestris/ol-util
    interface ScaleBarSpec {
        position: "bottom-left" | "bottom-right";
        units: string;
    }

    Properties

    Properties

    position: "bottom-left" | "bottom-right"
    units: string
    +

    Properties

    position: "bottom-left" | "bottom-right"
    units: string
    diff --git a/latest/interfaces/MapUtil_MapUtil.LayerPositionInfo.html b/latest/interfaces/MapUtil_MapUtil.LayerPositionInfo.html index 95f87733a..59a24f2a1 100644 --- a/latest/interfaces/MapUtil_MapUtil.LayerPositionInfo.html +++ b/latest/interfaces/MapUtil_MapUtil.LayerPositionInfo.html @@ -1,3 +1,3 @@ -LayerPositionInfo | @terrestris/ol-util
    interface LayerPositionInfo {
        groupLayer?: LayerGroup;
        position?: number;
    }

    Properties

    groupLayer? +LayerPositionInfo | @terrestris/ol-util
    interface LayerPositionInfo {
        groupLayer?: LayerGroup;
        position?: number;
    }

    Properties

    groupLayer?: LayerGroup
    position?: number
    +

    Properties

    groupLayer?: LayerGroup
    position?: number
    diff --git a/latest/interfaces/ProjectionUtil_ProjectionUtil.CrsDefinition.html b/latest/interfaces/ProjectionUtil_ProjectionUtil.CrsDefinition.html index 85d79ecad..32dcb97b8 100644 --- a/latest/interfaces/ProjectionUtil_ProjectionUtil.CrsDefinition.html +++ b/latest/interfaces/ProjectionUtil_ProjectionUtil.CrsDefinition.html @@ -1,3 +1,3 @@ -CrsDefinition | @terrestris/ol-util
    interface CrsDefinition {
        crsCode: string;
        definition: string | ProjectionDefinition;
    }

    Properties

    crsCode +CrsDefinition | @terrestris/ol-util
    interface CrsDefinition {
        crsCode: string;
        definition: string | ProjectionDefinition;
    }

    Properties

    Properties

    crsCode: string
    definition: string | ProjectionDefinition
    +

    Properties

    crsCode: string
    definition: string | ProjectionDefinition
    diff --git a/latest/interfaces/ProjectionUtil_ProjectionUtil.CrsMapping.html b/latest/interfaces/ProjectionUtil_ProjectionUtil.CrsMapping.html index fafa1243e..040d0a95b 100644 --- a/latest/interfaces/ProjectionUtil_ProjectionUtil.CrsMapping.html +++ b/latest/interfaces/ProjectionUtil_ProjectionUtil.CrsMapping.html @@ -1,3 +1,3 @@ -CrsMapping | @terrestris/ol-util
    interface CrsMapping {
        alias: string;
        mappedCode: string;
    }

    Properties

    alias +CrsMapping | @terrestris/ol-util
    interface CrsMapping {
        alias: string;
        mappedCode: string;
    }

    Properties

    Properties

    alias: string
    mappedCode: string
    +

    Properties

    alias: string
    mappedCode: string
    diff --git a/latest/interfaces/WfsFilterUtil_WfsFilterUtil.AttributeSearchSettings.html b/latest/interfaces/WfsFilterUtil_WfsFilterUtil.AttributeSearchSettings.html index bff9f321e..e9a5ad7a3 100644 --- a/latest/interfaces/WfsFilterUtil_WfsFilterUtil.AttributeSearchSettings.html +++ b/latest/interfaces/WfsFilterUtil_WfsFilterUtil.AttributeSearchSettings.html @@ -1,4 +1,4 @@ -AttributeSearchSettings | @terrestris/ol-util
    interface AttributeSearchSettings {
        exactSearch?: boolean;
        matchCase?: boolean;
        type: "string" | "number" | "int";
    }

    Properties

    exactSearch? +AttributeSearchSettings | @terrestris/ol-util
    interface AttributeSearchSettings {
        exactSearch?: boolean;
        matchCase?: boolean;
        type: "string" | "number" | "int";
    }

    Properties

    exactSearch?: boolean
    matchCase?: boolean
    type: "string" | "number" | "int"
    +

    Properties

    exactSearch?: boolean
    matchCase?: boolean
    type: "string" | "number" | "int"
    diff --git a/latest/interfaces/WfsFilterUtil_WfsFilterUtil.SearchConfig.html b/latest/interfaces/WfsFilterUtil_WfsFilterUtil.SearchConfig.html index 24f29ccae..6ce8d05d0 100644 --- a/latest/interfaces/WfsFilterUtil_WfsFilterUtil.SearchConfig.html +++ b/latest/interfaces/WfsFilterUtil_WfsFilterUtil.SearchConfig.html @@ -1,4 +1,4 @@ -SearchConfig | @terrestris/ol-util
    interface SearchConfig {
        attributeDetails: AttributeDetails;
        featureNS: string;
        featurePrefix: string;
        featureTypes?: string[];
        filter?: Filter;
        geometryName?: string;
        maxFeatures?: number;
        olFilterOnly?: boolean;
        outputFormat?: string;
        propertyNames?: string[];
        srsName?: string;
        wfsFormatOptions?: string;
    }

    Properties

    attributeDetails +SearchConfig | @terrestris/ol-util
    interface SearchConfig {
        attributeDetails: AttributeDetails;
        featureNS: string;
        featurePrefix: string;
        featureTypes?: string[];
        filter?: Filter;
        geometryName?: string;
        maxFeatures?: number;
        olFilterOnly?: boolean;
        outputFormat?: string;
        propertyNames?: string[];
        srsName?: string;
        wfsFormatOptions?: string;
    }

    Properties

    attributeDetails: AttributeDetails
    featureNS: string
    featurePrefix: string
    featureTypes?: string[]
    filter?: Filter
    geometryName?: string
    maxFeatures?: number
    olFilterOnly?: boolean
    outputFormat?: string
    propertyNames?: string[]
    srsName?: string
    wfsFormatOptions?: string
    +

    Properties

    attributeDetails: AttributeDetails
    featureNS: string
    featurePrefix: string
    featureTypes?: string[]
    filter?: Filter
    geometryName?: string
    maxFeatures?: number
    olFilterOnly?: boolean
    outputFormat?: string
    propertyNames?: string[]
    srsName?: string
    wfsFormatOptions?: string
    diff --git a/latest/types/LayerUtil_InkmapTypes.InkmapLayer.html b/latest/types/LayerUtil_InkmapTypes.InkmapLayer.html index 822809434..4a42e5ec8 100644 --- a/latest/types/LayerUtil_InkmapTypes.InkmapLayer.html +++ b/latest/types/LayerUtil_InkmapTypes.InkmapLayer.html @@ -1 +1 @@ -InkmapLayer | @terrestris/ol-util
    InkmapLayer:
        | InkmapWmsLayer
        | InkmapWmtsLayer
        | InkmapGeoJsonLayer
        | InkmapWfsLayer
        | InkmapOsmLayer
    +InkmapLayer | @terrestris/ol-util
    InkmapLayer:
        | InkmapWmsLayer
        | InkmapWmtsLayer
        | InkmapGeoJsonLayer
        | InkmapWfsLayer
        | InkmapOsmLayer
    diff --git a/latest/types/WfsFilterUtil_WfsFilterUtil.AttributeDetails.html b/latest/types/WfsFilterUtil_WfsFilterUtil.AttributeDetails.html index c991cbb4f..15f5fb54e 100644 --- a/latest/types/WfsFilterUtil_WfsFilterUtil.AttributeDetails.html +++ b/latest/types/WfsFilterUtil_WfsFilterUtil.AttributeDetails.html @@ -3,4 +3,4 @@
    attributeDetails: {
    featType1: {
    attr1: {
    matchCase: true,
    type: 'number',
    exactSearch: false
    },
    attr2: {
    matchCase: false,
    type: 'string',
    exactSearch: true
    }
    },
    featType2: {...}
    }
    -
    +
    diff --git a/latest/types/typeUtils_typeUtils.WfsLayer.html b/latest/types/typeUtils_typeUtils.WfsLayer.html index ac3fa16e3..a3920871a 100644 --- a/latest/types/typeUtils_typeUtils.WfsLayer.html +++ b/latest/types/typeUtils_typeUtils.WfsLayer.html @@ -1 +1 @@ -WfsLayer | @terrestris/ol-util
    WfsLayer: OlVectorLayer<OlSourceVector>
    +WfsLayer | @terrestris/ol-util
    WfsLayer: OlVectorLayer<OlSourceVector>
    diff --git a/latest/types/typeUtils_typeUtils.WmsLayer.html b/latest/types/typeUtils_typeUtils.WmsLayer.html index 847b4cfa3..8a1807293 100644 --- a/latest/types/typeUtils_typeUtils.WmsLayer.html +++ b/latest/types/typeUtils_typeUtils.WmsLayer.html @@ -1 +1 @@ -WmsLayer | @terrestris/ol-util
    WmsLayer:
        | OlImageLayer<OlImageWMS>
        | OlTileLayer<OlTileWMS>
        | OlLayer<OlImageWMS | OlTileWMS>
    +WmsLayer | @terrestris/ol-util
    WmsLayer:
        | OlImageLayer<OlImageWMS>
        | OlTileLayer<OlTileWMS>
        | OlLayer<OlImageWMS | OlTileWMS>
    diff --git a/latest/types/typeUtils_typeUtils.WmtsLayer.html b/latest/types/typeUtils_typeUtils.WmtsLayer.html index a6f486c16..71cc5737f 100644 --- a/latest/types/typeUtils_typeUtils.WmtsLayer.html +++ b/latest/types/typeUtils_typeUtils.WmtsLayer.html @@ -1 +1 @@ -WmtsLayer | @terrestris/ol-util
    WmtsLayer: OlTileLayer<OlSourceWMTS>
    +WmtsLayer | @terrestris/ol-util
    WmtsLayer: OlTileLayer<OlSourceWMTS>
    diff --git a/latest/variables/GeometryUtil_TestCoords.boxCoords.html b/latest/variables/GeometryUtil_TestCoords.boxCoords.html index f824649d7..fb84f7583 100644 --- a/latest/variables/GeometryUtil_TestCoords.boxCoords.html +++ b/latest/variables/GeometryUtil_TestCoords.boxCoords.html @@ -1 +1 @@ -boxCoords | @terrestris/ol-util
    boxCoords: number[][][] = ...
    +boxCoords | @terrestris/ol-util
    boxCoords: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.boxCoords2.html b/latest/variables/GeometryUtil_TestCoords.boxCoords2.html index 56fd88746..b9ff83d8b 100644 --- a/latest/variables/GeometryUtil_TestCoords.boxCoords2.html +++ b/latest/variables/GeometryUtil_TestCoords.boxCoords2.html @@ -1 +1 @@ -boxCoords2 | @terrestris/ol-util
    boxCoords2: number[][][] = ...
    +boxCoords2 | @terrestris/ol-util
    boxCoords2: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.boxCoords3.html b/latest/variables/GeometryUtil_TestCoords.boxCoords3.html index 735928be5..686f650bf 100644 --- a/latest/variables/GeometryUtil_TestCoords.boxCoords3.html +++ b/latest/variables/GeometryUtil_TestCoords.boxCoords3.html @@ -1 +1 @@ -boxCoords3 | @terrestris/ol-util
    boxCoords3: number[][][] = ...
    +boxCoords3 | @terrestris/ol-util
    boxCoords3: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.boxCoords4.html b/latest/variables/GeometryUtil_TestCoords.boxCoords4.html index 97b6c5dc5..f1f8b3094 100644 --- a/latest/variables/GeometryUtil_TestCoords.boxCoords4.html +++ b/latest/variables/GeometryUtil_TestCoords.boxCoords4.html @@ -1 +1 @@ -boxCoords4 | @terrestris/ol-util
    boxCoords4: number[][][] = ...
    +boxCoords4 | @terrestris/ol-util
    boxCoords4: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.bufferedBoxCoords.html b/latest/variables/GeometryUtil_TestCoords.bufferedBoxCoords.html index 4ea7a25e3..851be1eb9 100644 --- a/latest/variables/GeometryUtil_TestCoords.bufferedBoxCoords.html +++ b/latest/variables/GeometryUtil_TestCoords.bufferedBoxCoords.html @@ -1 +1 @@ -bufferedBoxCoords | @terrestris/ol-util
    bufferedBoxCoords: number[][][] = ...
    +bufferedBoxCoords | @terrestris/ol-util
    bufferedBoxCoords: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.bufferedHoleCoords.html b/latest/variables/GeometryUtil_TestCoords.bufferedHoleCoords.html index f4964e9b8..99729a66b 100644 --- a/latest/variables/GeometryUtil_TestCoords.bufferedHoleCoords.html +++ b/latest/variables/GeometryUtil_TestCoords.bufferedHoleCoords.html @@ -1 +1 @@ -bufferedHoleCoords | @terrestris/ol-util
    bufferedHoleCoords: number[][][] = ...
    +bufferedHoleCoords | @terrestris/ol-util
    bufferedHoleCoords: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.bufferedLineStringCoords.html b/latest/variables/GeometryUtil_TestCoords.bufferedLineStringCoords.html index 8e77c990e..e03ab5073 100644 --- a/latest/variables/GeometryUtil_TestCoords.bufferedLineStringCoords.html +++ b/latest/variables/GeometryUtil_TestCoords.bufferedLineStringCoords.html @@ -1 +1 @@ -bufferedLineStringCoords | @terrestris/ol-util
    bufferedLineStringCoords: number[][][] = ...
    +bufferedLineStringCoords | @terrestris/ol-util
    bufferedLineStringCoords: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.bufferedPointCoords.html b/latest/variables/GeometryUtil_TestCoords.bufferedPointCoords.html index 3624fbb3e..9bafe4613 100644 --- a/latest/variables/GeometryUtil_TestCoords.bufferedPointCoords.html +++ b/latest/variables/GeometryUtil_TestCoords.bufferedPointCoords.html @@ -1 +1 @@ -bufferedPointCoords | @terrestris/ol-util
    bufferedPointCoords: number[][][] = ...
    +bufferedPointCoords | @terrestris/ol-util
    bufferedPointCoords: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.differenceBoxCoords.html b/latest/variables/GeometryUtil_TestCoords.differenceBoxCoords.html index 48cdcec3a..584440746 100644 --- a/latest/variables/GeometryUtil_TestCoords.differenceBoxCoords.html +++ b/latest/variables/GeometryUtil_TestCoords.differenceBoxCoords.html @@ -1 +1 @@ -differenceBoxCoords | @terrestris/ol-util
    differenceBoxCoords: number[][][] = ...
    +differenceBoxCoords | @terrestris/ol-util
    differenceBoxCoords: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.expectedMultiPolygon.html b/latest/variables/GeometryUtil_TestCoords.expectedMultiPolygon.html index 6f8f6c3ba..4c36eb328 100644 --- a/latest/variables/GeometryUtil_TestCoords.expectedMultiPolygon.html +++ b/latest/variables/GeometryUtil_TestCoords.expectedMultiPolygon.html @@ -1 +1 @@ -expectedMultiPolygon | @terrestris/ol-util
    expectedMultiPolygon: number[][][][] = ...
    +expectedMultiPolygon | @terrestris/ol-util
    expectedMultiPolygon: number[][][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.holeCoords.html b/latest/variables/GeometryUtil_TestCoords.holeCoords.html index 078862571..51fd04d06 100644 --- a/latest/variables/GeometryUtil_TestCoords.holeCoords.html +++ b/latest/variables/GeometryUtil_TestCoords.holeCoords.html @@ -1 +1 @@ -holeCoords | @terrestris/ol-util
    holeCoords: number[][][] = ...
    +holeCoords | @terrestris/ol-util
    holeCoords: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.holeCoords2.html b/latest/variables/GeometryUtil_TestCoords.holeCoords2.html index 674c6a5cf..17419bc41 100644 --- a/latest/variables/GeometryUtil_TestCoords.holeCoords2.html +++ b/latest/variables/GeometryUtil_TestCoords.holeCoords2.html @@ -1 +1 @@ -holeCoords2 | @terrestris/ol-util
    holeCoords2: number[][][] = ...
    +holeCoords2 | @terrestris/ol-util
    holeCoords2: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.holeCoords2CutLine.html b/latest/variables/GeometryUtil_TestCoords.holeCoords2CutLine.html index ff840f5df..6fdf1fbd6 100644 --- a/latest/variables/GeometryUtil_TestCoords.holeCoords2CutLine.html +++ b/latest/variables/GeometryUtil_TestCoords.holeCoords2CutLine.html @@ -1 +1 @@ -holeCoords2CutLine | @terrestris/ol-util
    holeCoords2CutLine: number[][] = ...
    +holeCoords2CutLine | @terrestris/ol-util
    holeCoords2CutLine: number[][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.holeCoords2ExpPoly1.html b/latest/variables/GeometryUtil_TestCoords.holeCoords2ExpPoly1.html index 44388d592..854ddf335 100644 --- a/latest/variables/GeometryUtil_TestCoords.holeCoords2ExpPoly1.html +++ b/latest/variables/GeometryUtil_TestCoords.holeCoords2ExpPoly1.html @@ -1 +1 @@ -holeCoords2ExpPoly1 | @terrestris/ol-util
    holeCoords2ExpPoly1: number[][][] = ...
    +holeCoords2ExpPoly1 | @terrestris/ol-util
    holeCoords2ExpPoly1: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.holeCoords2ExpPoly2.html b/latest/variables/GeometryUtil_TestCoords.holeCoords2ExpPoly2.html index 28dfaa9ef..5f846435d 100644 --- a/latest/variables/GeometryUtil_TestCoords.holeCoords2ExpPoly2.html +++ b/latest/variables/GeometryUtil_TestCoords.holeCoords2ExpPoly2.html @@ -1 +1 @@ -holeCoords2ExpPoly2 | @terrestris/ol-util
    holeCoords2ExpPoly2: number[][][] = ...
    +holeCoords2ExpPoly2 | @terrestris/ol-util
    holeCoords2ExpPoly2: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.holeCoords2ExpPoly3.html b/latest/variables/GeometryUtil_TestCoords.holeCoords2ExpPoly3.html index 07e384ff8..debff33be 100644 --- a/latest/variables/GeometryUtil_TestCoords.holeCoords2ExpPoly3.html +++ b/latest/variables/GeometryUtil_TestCoords.holeCoords2ExpPoly3.html @@ -1 +1 @@ -holeCoords2ExpPoly3 | @terrestris/ol-util
    holeCoords2ExpPoly3: number[][][] = ...
    +holeCoords2ExpPoly3 | @terrestris/ol-util
    holeCoords2ExpPoly3: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.intersectionCoords.html b/latest/variables/GeometryUtil_TestCoords.intersectionCoords.html index ca6d7c103..69faa8861 100644 --- a/latest/variables/GeometryUtil_TestCoords.intersectionCoords.html +++ b/latest/variables/GeometryUtil_TestCoords.intersectionCoords.html @@ -1 +1 @@ -intersectionCoords | @terrestris/ol-util
    intersectionCoords: number[][][] = ...
    +intersectionCoords | @terrestris/ol-util
    intersectionCoords: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.lineStringCoords.html b/latest/variables/GeometryUtil_TestCoords.lineStringCoords.html index 1fef0d4ad..4efed3149 100644 --- a/latest/variables/GeometryUtil_TestCoords.lineStringCoords.html +++ b/latest/variables/GeometryUtil_TestCoords.lineStringCoords.html @@ -1 +1 @@ -lineStringCoords | @terrestris/ol-util
    lineStringCoords: number[][] = ...
    +lineStringCoords | @terrestris/ol-util
    lineStringCoords: number[][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.lineStringCoords2.html b/latest/variables/GeometryUtil_TestCoords.lineStringCoords2.html index fcd5e6acb..2c53964fc 100644 --- a/latest/variables/GeometryUtil_TestCoords.lineStringCoords2.html +++ b/latest/variables/GeometryUtil_TestCoords.lineStringCoords2.html @@ -1 +1 @@ -lineStringCoords2 | @terrestris/ol-util
    lineStringCoords2: number[][] = ...
    +lineStringCoords2 | @terrestris/ol-util
    lineStringCoords2: number[][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.lineStringLFormedCoords.html b/latest/variables/GeometryUtil_TestCoords.lineStringLFormedCoords.html index e70434e62..2193ad6c6 100644 --- a/latest/variables/GeometryUtil_TestCoords.lineStringLFormedCoords.html +++ b/latest/variables/GeometryUtil_TestCoords.lineStringLFormedCoords.html @@ -1 +1 @@ -lineStringLFormedCoords | @terrestris/ol-util
    lineStringLFormedCoords: number[][] = ...
    +lineStringLFormedCoords | @terrestris/ol-util
    lineStringLFormedCoords: number[][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.mergedBoxCoords.html b/latest/variables/GeometryUtil_TestCoords.mergedBoxCoords.html index 25506e752..d9e6d1d96 100644 --- a/latest/variables/GeometryUtil_TestCoords.mergedBoxCoords.html +++ b/latest/variables/GeometryUtil_TestCoords.mergedBoxCoords.html @@ -1 +1 @@ -mergedBoxCoords | @terrestris/ol-util
    mergedBoxCoords: number[][][][] = ...
    +mergedBoxCoords | @terrestris/ol-util
    mergedBoxCoords: number[][][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.mergedLineStringCoordinates.html b/latest/variables/GeometryUtil_TestCoords.mergedLineStringCoordinates.html index 5425bf21b..7b37dc5ef 100644 --- a/latest/variables/GeometryUtil_TestCoords.mergedLineStringCoordinates.html +++ b/latest/variables/GeometryUtil_TestCoords.mergedLineStringCoordinates.html @@ -1 +1 @@ -mergedLineStringCoordinates | @terrestris/ol-util
    mergedLineStringCoordinates: number[][][] = ...
    +mergedLineStringCoordinates | @terrestris/ol-util
    mergedLineStringCoordinates: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.mergedPointCoordinates.html b/latest/variables/GeometryUtil_TestCoords.mergedPointCoordinates.html index 279a3837f..f6cb1399a 100644 --- a/latest/variables/GeometryUtil_TestCoords.mergedPointCoordinates.html +++ b/latest/variables/GeometryUtil_TestCoords.mergedPointCoordinates.html @@ -1 +1 @@ -mergedPointCoordinates | @terrestris/ol-util
    mergedPointCoordinates: number[][] = ...
    +mergedPointCoordinates | @terrestris/ol-util
    mergedPointCoordinates: number[][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.mergedPointCoordinates2.html b/latest/variables/GeometryUtil_TestCoords.mergedPointCoordinates2.html index ce5a41e9b..1b66cdd21 100644 --- a/latest/variables/GeometryUtil_TestCoords.mergedPointCoordinates2.html +++ b/latest/variables/GeometryUtil_TestCoords.mergedPointCoordinates2.html @@ -1 +1 @@ -mergedPointCoordinates2 | @terrestris/ol-util
    mergedPointCoordinates2: number[][] = ...
    +mergedPointCoordinates2 | @terrestris/ol-util
    mergedPointCoordinates2: number[][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.pointCoords.html b/latest/variables/GeometryUtil_TestCoords.pointCoords.html index 089c30894..4ee33d944 100644 --- a/latest/variables/GeometryUtil_TestCoords.pointCoords.html +++ b/latest/variables/GeometryUtil_TestCoords.pointCoords.html @@ -1 +1 @@ -pointCoords | @terrestris/ol-util
    pointCoords: number[] = ...
    +pointCoords | @terrestris/ol-util
    pointCoords: number[] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.pointCoords2.html b/latest/variables/GeometryUtil_TestCoords.pointCoords2.html index a27e340b3..e5db795fe 100644 --- a/latest/variables/GeometryUtil_TestCoords.pointCoords2.html +++ b/latest/variables/GeometryUtil_TestCoords.pointCoords2.html @@ -1 +1 @@ -pointCoords2 | @terrestris/ol-util
    pointCoords2: number[] = ...
    +pointCoords2 | @terrestris/ol-util
    pointCoords2: number[] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.pointCoords3.html b/latest/variables/GeometryUtil_TestCoords.pointCoords3.html index 40be1d8cf..ea8817d13 100644 --- a/latest/variables/GeometryUtil_TestCoords.pointCoords3.html +++ b/latest/variables/GeometryUtil_TestCoords.pointCoords3.html @@ -1 +1 @@ -pointCoords3 | @terrestris/ol-util
    pointCoords3: number[] = ...
    +pointCoords3 | @terrestris/ol-util
    pointCoords3: number[] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.pointCoords4.html b/latest/variables/GeometryUtil_TestCoords.pointCoords4.html index 690d71715..868d129c5 100644 --- a/latest/variables/GeometryUtil_TestCoords.pointCoords4.html +++ b/latest/variables/GeometryUtil_TestCoords.pointCoords4.html @@ -1 +1 @@ -pointCoords4 | @terrestris/ol-util
    pointCoords4: number[] = ...
    +pointCoords4 | @terrestris/ol-util
    pointCoords4: number[] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.splitBoxCoords1.html b/latest/variables/GeometryUtil_TestCoords.splitBoxCoords1.html index 104c59eca..b4b1c4253 100644 --- a/latest/variables/GeometryUtil_TestCoords.splitBoxCoords1.html +++ b/latest/variables/GeometryUtil_TestCoords.splitBoxCoords1.html @@ -1 +1 @@ -splitBoxCoords1 | @terrestris/ol-util
    splitBoxCoords1: number[][][] = ...
    +splitBoxCoords1 | @terrestris/ol-util
    splitBoxCoords1: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.splitBoxCoords2.html b/latest/variables/GeometryUtil_TestCoords.splitBoxCoords2.html index 2178275bf..0de39b3bc 100644 --- a/latest/variables/GeometryUtil_TestCoords.splitBoxCoords2.html +++ b/latest/variables/GeometryUtil_TestCoords.splitBoxCoords2.html @@ -1 +1 @@ -splitBoxCoords2 | @terrestris/ol-util
    splitBoxCoords2: number[][][] = ...
    +splitBoxCoords2 | @terrestris/ol-util
    splitBoxCoords2: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.splitBoxLFormedCoords1.html b/latest/variables/GeometryUtil_TestCoords.splitBoxLFormedCoords1.html index 1090d8f12..13b652496 100644 --- a/latest/variables/GeometryUtil_TestCoords.splitBoxLFormedCoords1.html +++ b/latest/variables/GeometryUtil_TestCoords.splitBoxLFormedCoords1.html @@ -1 +1 @@ -splitBoxLFormedCoords1 | @terrestris/ol-util
    splitBoxLFormedCoords1: number[][][] = ...
    +splitBoxLFormedCoords1 | @terrestris/ol-util
    splitBoxLFormedCoords1: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.splitBoxLFormedCoords2.html b/latest/variables/GeometryUtil_TestCoords.splitBoxLFormedCoords2.html index 1d50ea44a..de0189601 100644 --- a/latest/variables/GeometryUtil_TestCoords.splitBoxLFormedCoords2.html +++ b/latest/variables/GeometryUtil_TestCoords.splitBoxLFormedCoords2.html @@ -1 +1 @@ -splitBoxLFormedCoords2 | @terrestris/ol-util
    splitBoxLFormedCoords2: number[][][] = ...
    +splitBoxLFormedCoords2 | @terrestris/ol-util
    splitBoxLFormedCoords2: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.splitUFormerdCoords1.html b/latest/variables/GeometryUtil_TestCoords.splitUFormerdCoords1.html index 7b966c334..ebe1f2e02 100644 --- a/latest/variables/GeometryUtil_TestCoords.splitUFormerdCoords1.html +++ b/latest/variables/GeometryUtil_TestCoords.splitUFormerdCoords1.html @@ -1 +1 @@ -splitUFormerdCoords1 | @terrestris/ol-util
    splitUFormerdCoords1: number[][][] = ...
    +splitUFormerdCoords1 | @terrestris/ol-util
    splitUFormerdCoords1: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.splitUFormerdCoords2.html b/latest/variables/GeometryUtil_TestCoords.splitUFormerdCoords2.html index c620ed1b7..387648843 100644 --- a/latest/variables/GeometryUtil_TestCoords.splitUFormerdCoords2.html +++ b/latest/variables/GeometryUtil_TestCoords.splitUFormerdCoords2.html @@ -1 +1 @@ -splitUFormerdCoords2 | @terrestris/ol-util
    splitUFormerdCoords2: number[][][] = ...
    +splitUFormerdCoords2 | @terrestris/ol-util
    splitUFormerdCoords2: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.splitUFormerdCoords3.html b/latest/variables/GeometryUtil_TestCoords.splitUFormerdCoords3.html index 31603a158..96bc6cc3f 100644 --- a/latest/variables/GeometryUtil_TestCoords.splitUFormerdCoords3.html +++ b/latest/variables/GeometryUtil_TestCoords.splitUFormerdCoords3.html @@ -1 +1 @@ -splitUFormerdCoords3 | @terrestris/ol-util
    splitUFormerdCoords3: number[][][] = ...
    +splitUFormerdCoords3 | @terrestris/ol-util
    splitUFormerdCoords3: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.uFormedPolygonCoords.html b/latest/variables/GeometryUtil_TestCoords.uFormedPolygonCoords.html index 0ea38bab0..1a1dffa76 100644 --- a/latest/variables/GeometryUtil_TestCoords.uFormedPolygonCoords.html +++ b/latest/variables/GeometryUtil_TestCoords.uFormedPolygonCoords.html @@ -1 +1 @@ -uFormedPolygonCoords | @terrestris/ol-util
    uFormedPolygonCoords: number[][][] = ...
    +uFormedPolygonCoords | @terrestris/ol-util
    uFormedPolygonCoords: number[][][] = ...
    diff --git a/latest/variables/GeometryUtil_TestCoords.unionedBoxCoordinates.html b/latest/variables/GeometryUtil_TestCoords.unionedBoxCoordinates.html index 2fb197c14..2abff2201 100644 --- a/latest/variables/GeometryUtil_TestCoords.unionedBoxCoordinates.html +++ b/latest/variables/GeometryUtil_TestCoords.unionedBoxCoordinates.html @@ -1 +1 @@ -unionedBoxCoordinates | @terrestris/ol-util
    unionedBoxCoordinates: number[][][] = ...
    +unionedBoxCoordinates | @terrestris/ol-util
    unionedBoxCoordinates: number[][][] = ...
    diff --git a/latest/variables/ProjectionUtil_ProjectionUtil.defaultProj4CrsDefinitions.html b/latest/variables/ProjectionUtil_ProjectionUtil.defaultProj4CrsDefinitions.html index 70ab616ac..dbc73af0c 100644 --- a/latest/variables/ProjectionUtil_ProjectionUtil.defaultProj4CrsDefinitions.html +++ b/latest/variables/ProjectionUtil_ProjectionUtil.defaultProj4CrsDefinitions.html @@ -1,2 +1,2 @@ defaultProj4CrsDefinitions | @terrestris/ol-util
    defaultProj4CrsDefinitions: CrsDefinition[] = ...

    Default proj4 CRS definitions.

    -
    +
    diff --git a/latest/variables/ProjectionUtil_ProjectionUtil.defaultProj4CrsMappings.html b/latest/variables/ProjectionUtil_ProjectionUtil.defaultProj4CrsMappings.html index fabed175a..2dfab2165 100644 --- a/latest/variables/ProjectionUtil_ProjectionUtil.defaultProj4CrsMappings.html +++ b/latest/variables/ProjectionUtil_ProjectionUtil.defaultProj4CrsMappings.html @@ -1,2 +1,2 @@ defaultProj4CrsMappings | @terrestris/ol-util
    defaultProj4CrsMappings: CrsMapping[] = ...

    Default mappings for CRS identifiers (e.g. "urn:ogc:def:crs:EPSG::25832").

    -
    +