nwkendo.dataviz.map.Location|Array
The North West extreme location.
Example
<div id="map"></div>
<script>
var nwLocation = new kendo.dataviz.map.Location(42.3601, -71.0589); // Boston
var seLocation = new kendo.dataviz.map.Location(40.7128, -74.0060); // New York
var extent = new kendo.dataviz.map.Extent(nwLocation, seLocation);
$("#map").kendoMap({
center: extent.center(),
zoom: 8
});
</script>
In this article