wraparound Boolean
(default: true)
Specifies whether the map should wrap around the east-west edges.
Example - disable map wrap-around
<div id="map"></div>
<script>
$("#map").kendoMap({
layers: [{
type: "tile",
urlTemplate: "http://a.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png",
attribution: "© OpenStreetMap"
}],
wraparound: false
});
</script>