markers.location Array|kendo.dataviz.map.Location

The marker location on the map. Coordinates are listed as [Latitude, Longitude].

Example - setting marker location

<div id="map"></div>
<script>
    $("#map").kendoMap({
        layers: [{
            type: "tile",
            urlTemplate: "http://a.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png",
            attribution: "&copy; OpenStreetMap"
        }],
        markerDefaults: {
            shape: "pin"
        },
        markers: [{
            location: [42, 27]
        }]
    });
</script>
In this article