mapkendo.dataviz.ui.Map
The owner Map widget.
Example
<div id="map"></div>
<script>
var map = $("#map").kendoMap({
layers: [{
type: "tile",
urlTemplate: "https://#= subdomain #.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png",
subdomains: ["a", "b", "c"]
}]
}).data("kendoMap");
// Access the map field from the tile layer
var tileLayer = map.layers[0];
console.log("Layer's map field:", tileLayer.map);
console.log("Is same as parent map:", tileLayer.map === map);
</script>
In this article