imagerySet
Sets the preferred imagery set for the map.
Available imagery sets:
- "aerial" - Aerial imagery.
- "aerialWithLabels" - Aerial imagery with a road overlay.
- "road" - Roads without additional imagery.
Example - Set Bing layer imagery set
<div id="map"></div>
<script>
$("#map").kendoMap({
layers: [{
type: "bing",
imagerySet: "road",
// IMPORTANT: This key is locked to demos.telerik.com
// Please replace with your own Bing Key
key: "AqaPuZWytKRUA8Nm5nqvXHWGL8BDCXvK8onCl2PkC581Zp3T_fYAQBiwIphJbRAK"
}]
});
setTimeout(function() {
var map = $("#map").data("kendoMap");
var layer = map.layers[0];
layer.imagerySet("aerialWithLabels");
}, 2000);
</script>
Parameters##### name String
The identifier for the imagery set. Case-insensitive.