pannable Boolean
(default: true)
Controls whether the user can pan the map.
Example - make the map non-pannable
<div id="map"></div>
<script>
$("#map").kendoMap({
layers: [{
type: "tile",
urlTemplate: "http://a.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png",
attribution: "© OpenStreetMap"
}],
center: [32.7758, -96.7966],
zoom: 9,
pannable: false
});
</script>