mapkendo.dataviz.ui.Map
The owner Map widget.
Example
<div id="map"></div>
<script>
$("#map").kendoMap({
layers: [{
type: "shape",
dataSource: {
type: "geojson",
data: [{
"type": "Polygon",
"coordinates": [
[[30, 10], [40, 40], [20, 40], [10, 20], [30, 10]]
]
}]
}
}]
});
var map = $("#map").data("kendoMap");
console.log("Owner map widget:", map);
console.log("Map element:", map.element);
</script>
In this article