controls Object
The configuration of built-in map controls.
Example - hide all controls
<div id="map"></div>
<script>
$("#map").kendoMap({
controls: {
attribution: false,
navigator: false
},
layers: [{
type: "tile",
urlTemplate: "http://a.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png",
attribution: "© OpenStreetMap"
}]
});
</script>