GenericMapLayer

From Maria GDK Wiki
Jump to navigation Jump to search

About

Used for displaying maps from a tile map service, with default projection 'EPSG:3857'.

Setup

interface IGenericMapLayerInfo extends IBaseLayerInfo {
    LayerType: "GenericMapLayer";
    /** URL of tile map service provider, with {x}, {y} and {z} as parameters */
    url: URL;
}

Example

include {Layers} from "@mariateleplan/map-core"
const genericMapLayerInfo: Layers.IGenericMapLayerInfo = {
            "Visible": false,
            "LayerType": "GenericMapLayer",
            "Id": "xyz_generic_map",
            "url": "http://examplehoster/exapmleexample&x={x}&y={y}&z={z}",
            "ParentLayerId": "maps"
}

const layers: Layers.ILayersInfo = {
    Services:{},
    Layers:[new Layers.GenericMapLayer(genericMapLayerInfo);]
}
const props = {   
      "Zoom": 10,
      "Center": [1197567, 8380058],
      "Projection": 'EPSG:3857'
    }
const mapHtmlId = "map";
const maria = new MariaCore(props, mapHtmlId)
maria.SetupLayers(layers)