controls.navigator Boolean|Object
(default: true)
Configures or disables the built-in navigator control (directional pad).
Example - hide the navigator control
<div id="map"></div>
<script>
$("#map").kendoMap({
controls: {
navigator: false
},
layers: [{
type: "tile",
urlTemplate: "http://a.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png",
attribution: "© OpenStreetMap"
}]
});
</script>
controls.navigator.position String
(default: "topLeft")
The position of the navigator control. Possible values include:
- "topLeft"
- "topRight"
- "bottomRight"
- "bottomLeft"
Example - position the navigator control
<div id="map"></div>
<script>
$("#map").kendoMap({
controls: {
navigator: {
position: "topRight"
}
},
layers: [{
type: "tile",
urlTemplate: "http://a.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png",
attribution: "© OpenStreetMap"
}]
});
</script>