nwkendo.dataviz.map.Location

The North West extreme location.

Example

<div id="map"></div>
<script>
var extent = new kendo.dataviz.map.Extent(
    new kendo.dataviz.map.Location(42.3601, -71.0589), // Boston
    new kendo.dataviz.map.Location(40.7128, -74.0060)  // New York
);

console.log("North West location:", extent.nw);
console.log("Latitude:", extent.nw.lat);
console.log("Longitude:", extent.nw.lng);

$("#map").kendoMap({
    center: extent.center(),
    zoom: 8
});
</script>
In this article
nw
Not finding the help you need?
Contact Support