GenericMapLayer: Difference between revisions
Jump to navigation
Jump to search
(Created page with "== About == Used for displaying maps from a tile map service, with default projection 'EPSG:3857'. ==Setup== <source lang="ts"> nterface IGenericMapLayerInfo extends IBaseL...") Â |
(→â€) |
||
Line 25: | Line 25: | ||
const layers: Layers.ILayersInfo = { | const layers: Layers.ILayersInfo = { | ||
   Services:{}, |    Services:{}, | ||
   Layers:[new Layers. |    Layers:[new Layers.GenericMapLayergenericMapLayer);] | ||
} | } | ||
const props = {Â Â | const props = {Â Â |
Revision as of 09:34, 3 May 2022
About
Used for displaying maps from a tile map service, with default projection 'EPSG:3857'.
Setup
nterface 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 genericMapLayer: 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.GenericMapLayergenericMapLayer);]
}
const props = {
"Zoom": 10,
"Center": [1197567, 8380058],
"Projection": 'EPSG:3857'
}
const mapHtmlId = "map";
const maria = new MariaCore(props, mapHtmlId)
maria.SetupLayers(layers)