diff --git a/latest/classes/AnimateUtil_AnimateUtil.default.html b/latest/classes/AnimateUtil_AnimateUtil.default.html index 71a9d5538..795ca9919 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 c7200db59..60f72ed1d 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 2e29ab664..e81f56e94 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 de95ca2e3..cb99abbf6 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 96148a2e1..0acfbbca5 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 1cd122b9f..bbe7b242a 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 d1108bd26..ebd154922 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 3ebf71d71..c515e5828 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 9d52f311c..173e4b645 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 68300345b..02b6f802b 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 3d86fbb9a..d5fe299a3 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 5463c3d39..2629b039c 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 b0d8b83c2..e9a0e4858 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 fa001259b..24d81499a 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 a76fa4a17..2dcbd2827 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 453a291cb..5bdbe2791 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 26388754b..837da9afc 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 a3c88fdf5..47124b34e 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 9194cfdda..a27a2bad0 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 aa0afa10c..cf62e7ed4 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 2bf30d759..9dd86caaa 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 8a3da31bd..946fbc1dd 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 2628910ac..13db52023 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 2f9980e77..3ddda2874 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 6bf3c32ce..981c9d36c 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 a58d7275a..436ba91f9 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 7cc10dbfe..748e7c087 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 b81ab15bd..a14f1088b 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 31a3f43dd..8a67112bd 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 695a78530..3a030870c 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 157ad694b..18058e307 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 094257974..e59d13406 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 f033b2ba3..a5c515774 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 ce0ee835c..f0f01369d 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 194ac3c14..24039903f 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 759fc10ab..044edf7fc 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 fcc0262e0..ee6f73d23 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 3bab3a72c..ae4773c82 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 cd5105790..a1c175689 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 f6dd2cde5..714fbbc5b 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 60d545b65..729d701e7 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 ae3bc022a..0af7dc662 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 bc6ad1365..a223e48b3 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 7abee5140..c177ffbba 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 37d11b97d..921f8b06d 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 410046da9..04a5c8e07 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 b2195a8a3..8c2f71967 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 a5d7cf41f..a61da4177 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 892b55ae2..96277af46 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 38943269b..38f9bf03f 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 135ed2c79..a54dad335 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 b98ed2943..d4f0ce45b 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 ad5d5dca6..d84820cab 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 0aa40e2c4..da367fd42 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 f48e82e63..6b48baf14 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 16b456be3..4c9212a64 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 3363461c8..0c932403a 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 6e5f244fb..ec48428e2 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 6444ae051..43d8495c6 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 785185ddf..a2cea29ea 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 f7ed10d34..1da84e0a4 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 edae774da..6c39ccbbf 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 f393fb24f..54fcabbd8 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 7182a0c36..7aeeeb8e6 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 003ad5557..be17654c8 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 00dda0ab6..ea91af8bc 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 4ee242040..853cc8cc6 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 55f4e59a7..5df3b5962 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 a254e9220..41fc67d81 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 edff1d6c4..32787bd34 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 7fdac72d3..b631926a5 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").

    -
    +