diff --git a/latest/classes/AnimateUtil_AnimateUtil.default.html b/latest/classes/AnimateUtil_AnimateUtil.default.html index e08d85468..2f468d906 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<Geometry>>

Promise of the moved feature.

-
+
diff --git a/latest/classes/CapabilitiesUtil_CapabilitiesUtil.default.html b/latest/classes/CapabilitiesUtil_CapabilitiesUtil.default.html index ac5c482a2..47cf56bbc 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 Capabilities URL for the given layer.

    Parameters

    • layer: WmsLayer

      The layer to the get the Capabilities URL for.

    Returns string

    The Capabilities URL.

    -
  • 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.

        • (proxyUrl): string
        • Parameters

          • proxyUrl: string

          Returns string

    Returns ImageLayer<ImageWMS>[]

    Array of OlLayerImage

    -
  • 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 eb19e0532..d705096fe 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.

    Parameters

    • features: Feature<Geometry>[]

    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 @@
      • (key, val): any
      • Parameters

        • key: string
        • val: any

        Returns any

  • 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 49d27725f..1f1468c91 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<Geometry, GeoJsonProperties> | FeatureCollection<Geometry, GeoJsonProperties>[]

      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 b5c1c642b..3f7eae0af 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<Geometry>

    The geometry or feature with the added buffer.

    -
    • 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.

      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 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 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 a07d081e0..239f3beee 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<Source, LayerRenderer<any>>

        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 eeed8d087..6ad04816c 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.

          • (olLayer): boolean
          • Parameters

            • olLayer: BaseLayer

            Returns boolean

      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<Geometry>

        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 (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.

      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.

      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 105e1545a..9fb4b685d 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 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.

      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.

      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.

      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.

      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 5fb1495b0..20c5787f1 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.

      • (layer): layer is TileLayer<any> | ImageLayer<any>
      • Parameters

        • layer: BaseLayer

        Returns layer is TileLayer<any> | ImageLayer<any>

    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.

          • (l): boolean
          • Parameters

            • l: BaseLayer

            Returns boolean

      • 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 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 c14f43b68..8fefb89db 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

    • Registers custom CRS definitions to the application.

      Parameters

      • OptionalcustomCrsDefs: CrsDefinition | CrsDefinition[]

        The custom proj4 definitions which should be registered additionally to default available CRS (s. defaultProj4CrsDefinitions above) as well. @@ -25,18 +25,18 @@ http://epsg.io (e.g. http://epsg.io/3426.proj4).

      • registerDefaults: boolean = true

        Whether the default CRS should be registered or not. Default is true.

        -

      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 e26caab31..0e316ccee 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 51e1b42f7..d17458c9f 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 61cda30f3..0e1dabda8 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 a061059b7..38d82cb59 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 d71de453b..6763675bd 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
    +

    Properties

    attribution?: string
    geojson: any
    layerName?: string
    legendUrl?: string
    style: any
    type
    diff --git a/latest/interfaces/LayerUtil_InkmapTypes.InkmapOsmLayer.html b/latest/interfaces/LayerUtil_InkmapTypes.InkmapOsmLayer.html index cd1006594..3c404b99a 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
    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
    url: string
    diff --git a/latest/interfaces/LayerUtil_InkmapTypes.InkmapPrintSpec.html b/latest/interfaces/LayerUtil_InkmapTypes.InkmapPrintSpec.html index 5166c1c3d..a99b3f150 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 94df32008..3887acb89 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 131695f5c..747b752b3 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
    url: string
    +

    Properties

    attribution?: string
    layer?: string
    layerName?: string
    legendUrl?: string
    projection?: string
    type
    url: string
    diff --git a/latest/interfaces/LayerUtil_InkmapTypes.InkmapWmsLayer.html b/latest/interfaces/LayerUtil_InkmapTypes.InkmapWmsLayer.html index 568c8db17..f796f332b 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
    url: string
    +

    Properties

    attribution?: string
    customParams?: any
    layer: string
    layerName?: string
    legendUrl?: string
    opacity?: number
    tiled?: boolean
    type
    url: string
    diff --git a/latest/interfaces/LayerUtil_InkmapTypes.InkmapWmtsLayer.html b/latest/interfaces/LayerUtil_InkmapTypes.InkmapWmtsLayer.html index fc6abeda0..73dfcf3fd 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
    url: string
    +

    Properties

    attribution?: string
    format?: string
    layer?: string
    layerName?: string
    legendUrl?: string
    matrixSet?: string
    opacity?: number
    projection?: string
    requestEncoding?: string
    tileGrid?: any
    type
    url: string
    diff --git a/latest/interfaces/LayerUtil_InkmapTypes.ScaleBarSpec.html b/latest/interfaces/LayerUtil_InkmapTypes.ScaleBarSpec.html index d59912522..ceabc7937 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 5869c297b..2e4f2051f 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 a7c65fffa..9ac59e468 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 626e8b89e..c4b3c0237 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 2f81e948c..9b209995f 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 16e2ca8d5..871ade02b 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/modules/AnimateUtil_AnimateUtil.html b/latest/modules/AnimateUtil_AnimateUtil.html index 5282871bc..7e9e747dd 100644 --- a/latest/modules/AnimateUtil_AnimateUtil.html +++ b/latest/modules/AnimateUtil_AnimateUtil.html @@ -1,2 +1,2 @@ -AnimateUtil/AnimateUtil | @terrestris/ol-util

    Module AnimateUtil/AnimateUtil

    Index

    Classes

    default +AnimateUtil/AnimateUtil | @terrestris/ol-util

    Module AnimateUtil/AnimateUtil

    Index

    Classes

    diff --git a/latest/modules/AnimateUtil_AnimateUtil_spec.html b/latest/modules/AnimateUtil_AnimateUtil_spec.html index 1fa59c50f..cef203b5a 100644 --- a/latest/modules/AnimateUtil_AnimateUtil_spec.html +++ b/latest/modules/AnimateUtil_AnimateUtil_spec.html @@ -1 +1 @@ -AnimateUtil/AnimateUtil.spec | @terrestris/ol-util
    +AnimateUtil/AnimateUtil.spec | @terrestris/ol-util
    diff --git a/latest/modules/CapabilitiesUtil_CapabilitiesUtil.html b/latest/modules/CapabilitiesUtil_CapabilitiesUtil.html index 8be961bbe..7f92201fd 100644 --- a/latest/modules/CapabilitiesUtil_CapabilitiesUtil.html +++ b/latest/modules/CapabilitiesUtil_CapabilitiesUtil.html @@ -1,2 +1,2 @@ -CapabilitiesUtil/CapabilitiesUtil | @terrestris/ol-util

    Module CapabilitiesUtil/CapabilitiesUtil

    Index

    Classes

    default +CapabilitiesUtil/CapabilitiesUtil | @terrestris/ol-util
    diff --git a/latest/modules/CapabilitiesUtil_CapabilitiesUtil_spec.html b/latest/modules/CapabilitiesUtil_CapabilitiesUtil_spec.html index 6b99987d5..44b2c7600 100644 --- a/latest/modules/CapabilitiesUtil_CapabilitiesUtil_spec.html +++ b/latest/modules/CapabilitiesUtil_CapabilitiesUtil_spec.html @@ -1 +1 @@ -CapabilitiesUtil/CapabilitiesUtil.spec | @terrestris/ol-util
    +CapabilitiesUtil/CapabilitiesUtil.spec | @terrestris/ol-util
    diff --git a/latest/modules/FeatureUtil_FeatureUtil.html b/latest/modules/FeatureUtil_FeatureUtil.html index 2b993c6e3..4a591da04 100644 --- a/latest/modules/FeatureUtil_FeatureUtil.html +++ b/latest/modules/FeatureUtil_FeatureUtil.html @@ -1,2 +1,2 @@ -FeatureUtil/FeatureUtil | @terrestris/ol-util

    Module FeatureUtil/FeatureUtil

    Index

    Classes

    default +FeatureUtil/FeatureUtil | @terrestris/ol-util

    Module FeatureUtil/FeatureUtil

    Index

    Classes

    diff --git a/latest/modules/FeatureUtil_FeatureUtil_spec.html b/latest/modules/FeatureUtil_FeatureUtil_spec.html index bedf135f5..450dcb6f7 100644 --- a/latest/modules/FeatureUtil_FeatureUtil_spec.html +++ b/latest/modules/FeatureUtil_FeatureUtil_spec.html @@ -1 +1 @@ -FeatureUtil/FeatureUtil.spec | @terrestris/ol-util
    +FeatureUtil/FeatureUtil.spec | @terrestris/ol-util
    diff --git a/latest/modules/FileUtil_FileUtil.html b/latest/modules/FileUtil_FileUtil.html index 9724ba2d4..9f5454d3f 100644 --- a/latest/modules/FileUtil_FileUtil.html +++ b/latest/modules/FileUtil_FileUtil.html @@ -1,3 +1,3 @@ -FileUtil/FileUtil | @terrestris/ol-util

    Module FileUtil/FileUtil

    References

    default +FileUtil/FileUtil | @terrestris/ol-util

    Module FileUtil/FileUtil

    References

    Classes

    References

    Renames and re-exports FileUtil
    diff --git a/latest/modules/FileUtil_FileUtil_spec.html b/latest/modules/FileUtil_FileUtil_spec.html index 11067463d..5ac8ea93b 100644 --- a/latest/modules/FileUtil_FileUtil_spec.html +++ b/latest/modules/FileUtil_FileUtil_spec.html @@ -1 +1 @@ -FileUtil/FileUtil.spec | @terrestris/ol-util
    +FileUtil/FileUtil.spec | @terrestris/ol-util
    diff --git a/latest/modules/FileUtil_federal_states_ger_json.html b/latest/modules/FileUtil_federal_states_ger_json.html index cd595783e..ae1e58004 100644 --- a/latest/modules/FileUtil_federal_states_ger_json.html +++ b/latest/modules/FileUtil_federal_states_ger_json.html @@ -1,2 +1,2 @@ -FileUtil/federal-states-ger.json | @terrestris/ol-util

    Module FileUtil/federal-states-ger.json

    References

    export= +FileUtil/federal-states-ger.json | @terrestris/ol-util

    Module FileUtil/federal-states-ger.json

    References

    References

    Renames and re-exports FileUtil/federal-states-ger.json
    diff --git a/latest/modules/GeometryUtil_GeometryUtil.html b/latest/modules/GeometryUtil_GeometryUtil.html index a8d40ce87..a06dae5b3 100644 --- a/latest/modules/GeometryUtil_GeometryUtil.html +++ b/latest/modules/GeometryUtil_GeometryUtil.html @@ -1,2 +1,2 @@ -GeometryUtil/GeometryUtil | @terrestris/ol-util

    Module GeometryUtil/GeometryUtil

    Index

    Classes

    default +GeometryUtil/GeometryUtil | @terrestris/ol-util

    Module GeometryUtil/GeometryUtil

    Index

    Classes

    diff --git a/latest/modules/GeometryUtil_GeometryUtil_spec.html b/latest/modules/GeometryUtil_GeometryUtil_spec.html index 33f902550..3ea14f530 100644 --- a/latest/modules/GeometryUtil_GeometryUtil_spec.html +++ b/latest/modules/GeometryUtil_GeometryUtil_spec.html @@ -1 +1 @@ -GeometryUtil/GeometryUtil.spec | @terrestris/ol-util
    +GeometryUtil/GeometryUtil.spec | @terrestris/ol-util
    diff --git a/latest/modules/GeometryUtil_TestCoords.html b/latest/modules/GeometryUtil_TestCoords.html index d8dee8778..1bd3b2ff1 100644 --- a/latest/modules/GeometryUtil_TestCoords.html +++ b/latest/modules/GeometryUtil_TestCoords.html @@ -1,4 +1,4 @@ -GeometryUtil/TestCoords | @terrestris/ol-util

    Module GeometryUtil/TestCoords

    Index

    Variables

    boxCoords +GeometryUtil/TestCoords | @terrestris/ol-util

    Module GeometryUtil/TestCoords

    Index

    Variables

    boxCoords boxCoords2 boxCoords3 boxCoords4 diff --git a/latest/modules/LayerUtil_InkmapTypes.html b/latest/modules/LayerUtil_InkmapTypes.html index cdb57001f..95b7936b6 100644 --- a/latest/modules/LayerUtil_InkmapTypes.html +++ b/latest/modules/LayerUtil_InkmapTypes.html @@ -1,4 +1,4 @@ -LayerUtil/InkmapTypes | @terrestris/ol-util

    Module LayerUtil/InkmapTypes

    Index

    Interfaces

    InkmapGeoJsonLayer +LayerUtil/InkmapTypes | @terrestris/ol-util

    Module LayerUtil/InkmapTypes

    Index

    Interfaces

    InkmapGeoJsonLayer InkmapOsmLayer InkmapPrintSpec InkmapProjectionDefinition diff --git a/latest/modules/LayerUtil_LayerUtil.html b/latest/modules/LayerUtil_LayerUtil.html index 7f717433f..a82076629 100644 --- a/latest/modules/LayerUtil_LayerUtil.html +++ b/latest/modules/LayerUtil_LayerUtil.html @@ -1,2 +1,2 @@ -LayerUtil/LayerUtil | @terrestris/ol-util

    Module LayerUtil/LayerUtil

    Index

    Classes

    default +LayerUtil/LayerUtil | @terrestris/ol-util

    Module LayerUtil/LayerUtil

    Index

    Classes

    diff --git a/latest/modules/LayerUtil_LayerUtil_spec.html b/latest/modules/LayerUtil_LayerUtil_spec.html index db8a1c6c9..e8dcd510e 100644 --- a/latest/modules/LayerUtil_LayerUtil_spec.html +++ b/latest/modules/LayerUtil_LayerUtil_spec.html @@ -1 +1 @@ -LayerUtil/LayerUtil.spec | @terrestris/ol-util
    +LayerUtil/LayerUtil.spec | @terrestris/ol-util
    diff --git a/latest/modules/MapUtil_MapUtil.html b/latest/modules/MapUtil_MapUtil.html index ad2f8eed5..bfce60494 100644 --- a/latest/modules/MapUtil_MapUtil.html +++ b/latest/modules/MapUtil_MapUtil.html @@ -1,4 +1,4 @@ -MapUtil/MapUtil | @terrestris/ol-util

    References

    default +MapUtil/MapUtil | @terrestris/ol-util

    References

    Classes

    Interfaces

    References

    Renames and re-exports MapUtil
    diff --git a/latest/modules/MapUtil_MapUtil_spec.html b/latest/modules/MapUtil_MapUtil_spec.html index ec034f544..0e801435b 100644 --- a/latest/modules/MapUtil_MapUtil_spec.html +++ b/latest/modules/MapUtil_MapUtil_spec.html @@ -1 +1 @@ -MapUtil/MapUtil.spec | @terrestris/ol-util
    +MapUtil/MapUtil.spec | @terrestris/ol-util
    diff --git a/latest/modules/MeasureUtil_MeasureUtil.html b/latest/modules/MeasureUtil_MeasureUtil.html index 37358c3fa..d959c3183 100644 --- a/latest/modules/MeasureUtil_MeasureUtil.html +++ b/latest/modules/MeasureUtil_MeasureUtil.html @@ -1,2 +1,2 @@ -MeasureUtil/MeasureUtil | @terrestris/ol-util

    Module MeasureUtil/MeasureUtil

    Index

    Classes

    default +MeasureUtil/MeasureUtil | @terrestris/ol-util

    Module MeasureUtil/MeasureUtil

    Index

    Classes

    diff --git a/latest/modules/MeasureUtil_MeasureUtil_spec.html b/latest/modules/MeasureUtil_MeasureUtil_spec.html index cfa28f82f..a41d2b88c 100644 --- a/latest/modules/MeasureUtil_MeasureUtil_spec.html +++ b/latest/modules/MeasureUtil_MeasureUtil_spec.html @@ -1 +1 @@ -MeasureUtil/MeasureUtil.spec | @terrestris/ol-util
    +MeasureUtil/MeasureUtil.spec | @terrestris/ol-util
    diff --git a/latest/modules/PermalinkUtil_PermalinkUtil.html b/latest/modules/PermalinkUtil_PermalinkUtil.html index 4f26e48a9..6974c0cf2 100644 --- a/latest/modules/PermalinkUtil_PermalinkUtil.html +++ b/latest/modules/PermalinkUtil_PermalinkUtil.html @@ -1,3 +1,3 @@ -PermalinkUtil/PermalinkUtil | @terrestris/ol-util

    Module PermalinkUtil/PermalinkUtil

    References

    default +PermalinkUtil/PermalinkUtil | @terrestris/ol-util

    Module PermalinkUtil/PermalinkUtil

    References

    Classes

    References

    Renames and re-exports PermalinkUtil
    diff --git a/latest/modules/PermalinkUtil_PermalinkUtil_spec.html b/latest/modules/PermalinkUtil_PermalinkUtil_spec.html index a6f4a7fe2..2dd9ad531 100644 --- a/latest/modules/PermalinkUtil_PermalinkUtil_spec.html +++ b/latest/modules/PermalinkUtil_PermalinkUtil_spec.html @@ -1 +1 @@ -PermalinkUtil/PermalinkUtil.spec | @terrestris/ol-util
    +PermalinkUtil/PermalinkUtil.spec | @terrestris/ol-util
    diff --git a/latest/modules/ProjectionUtil_ProjectionUtil.html b/latest/modules/ProjectionUtil_ProjectionUtil.html index e36067846..06e17127b 100644 --- a/latest/modules/ProjectionUtil_ProjectionUtil.html +++ b/latest/modules/ProjectionUtil_ProjectionUtil.html @@ -1,4 +1,4 @@ -ProjectionUtil/ProjectionUtil | @terrestris/ol-util

    Module ProjectionUtil/ProjectionUtil

    References

    default +ProjectionUtil/ProjectionUtil | @terrestris/ol-util

    Module ProjectionUtil/ProjectionUtil

    References

    Classes

    Interfaces

    CrsDefinition CrsMapping diff --git a/latest/modules/ProjectionUtil_ProjectionUtil_spec.html b/latest/modules/ProjectionUtil_ProjectionUtil_spec.html index 009411525..a01fb966e 100644 --- a/latest/modules/ProjectionUtil_ProjectionUtil_spec.html +++ b/latest/modules/ProjectionUtil_ProjectionUtil_spec.html @@ -1 +1 @@ -ProjectionUtil/ProjectionUtil.spec | @terrestris/ol-util
    +ProjectionUtil/ProjectionUtil.spec | @terrestris/ol-util
    diff --git a/latest/modules/WfsFilterUtil_WfsFilterUtil.html b/latest/modules/WfsFilterUtil_WfsFilterUtil.html index 1e8058868..f456e729e 100644 --- a/latest/modules/WfsFilterUtil_WfsFilterUtil.html +++ b/latest/modules/WfsFilterUtil_WfsFilterUtil.html @@ -1,4 +1,4 @@ -WfsFilterUtil/WfsFilterUtil | @terrestris/ol-util

    Module WfsFilterUtil/WfsFilterUtil

    Index

    Classes

    default +WfsFilterUtil/WfsFilterUtil | @terrestris/ol-util

    Module WfsFilterUtil/WfsFilterUtil

    Index

    Classes

    Interfaces

    Type Aliases

    AttributeDetails diff --git a/latest/modules/WfsFilterUtil_WfsFilterUtil_spec.html b/latest/modules/WfsFilterUtil_WfsFilterUtil_spec.html index 5730766a0..981ea843d 100644 --- a/latest/modules/WfsFilterUtil_WfsFilterUtil_spec.html +++ b/latest/modules/WfsFilterUtil_WfsFilterUtil_spec.html @@ -1 +1 @@ -WfsFilterUtil/WfsFilterUtil.spec | @terrestris/ol-util
    +WfsFilterUtil/WfsFilterUtil.spec | @terrestris/ol-util
    diff --git a/latest/modules/typeUtils_typeUtils.html b/latest/modules/typeUtils_typeUtils.html index e8ae05fe0..7509f0dff 100644 --- a/latest/modules/typeUtils_typeUtils.html +++ b/latest/modules/typeUtils_typeUtils.html @@ -1,4 +1,4 @@ -typeUtils/typeUtils | @terrestris/ol-util

    Module typeUtils/typeUtils

    Index

    Type Aliases

    WfsLayer +typeUtils/typeUtils | @terrestris/ol-util

    Module typeUtils/typeUtils

    Index

    Type Aliases

    Functions

    isWfsLayer diff --git a/latest/modules/typeUtils_typeUtils_spec.html b/latest/modules/typeUtils_typeUtils_spec.html index 58e671634..7e368f197 100644 --- a/latest/modules/typeUtils_typeUtils_spec.html +++ b/latest/modules/typeUtils_typeUtils_spec.html @@ -1 +1 @@ -typeUtils/typeUtils.spec | @terrestris/ol-util
    +typeUtils/typeUtils.spec | @terrestris/ol-util
    diff --git a/latest/types/LayerUtil_InkmapTypes.InkmapLayer.html b/latest/types/LayerUtil_InkmapTypes.InkmapLayer.html index fff7c2c19..b8f21168f 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 92eac8e14..7dee814b5 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 a5235bc9b..c6e4ec119 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 71ae8e268..0e6f2c06b 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 e86532485..a9a906867 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 30616b966..497c48a58 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 91a154471..8efb71a28 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 4d5edbd20..c3d792891 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 da679ed48..fe0d4a5fc 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 409a02307..efbecb1ad 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 ef5a04d79..a59dc86c8 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 a0f5523cd..5cf99a2a0 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 782e83058..c4118fd42 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 e93d7e067..ca04d1003 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 f26b1c90d..006db8555 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 97028cfa4..268cf46a4 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 ebc6e0942..997d6ec25 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 410615afc..0c0f5b260 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 e019204a7..567758fe3 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 4e536d2aa..cd92c331c 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 d4cea86a0..54ea136bc 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 67d021afe..4df237ac5 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 e4def4061..cba36956b 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 fe309f4df..da3072d28 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 019140247..cbc2bafc7 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 f9b37edd7..689f792df 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 f844b3402..7c2fda5f2 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 b778a08df..2ad2e1854 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 5b9362ba3..48aed1541 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 46a20a969..d851d71bd 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 83642fdaf..64153a271 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 838c1930e..b5a8cfd85 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 9beec0f08..f339e52fa 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 d1db10a18..e68f280e1 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 720ca881b..57afc398c 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 25a4eef1f..2194991f1 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 833a003e2..cabb875e2 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 e1f3fd25a..0b2170e96 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 348c15651..6b9b4b572 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 df9d972c4..21d57bbcf 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 7280f1803..c79ba900c 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 1e2b3dd6e..1b4c0c747 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 9738e7b21..f00894555 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 7caf63b05..c2924f8f2 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").

    -
    +