layers.imagerySetString(default: "road")
The bing map tile types. Possible options:
js
* aerial - Aerial imagery.
* aerialWithLabels - Aerial imagery with a road overlay.
* birdseye - Bird’s eye (oblique-angle) imagery
* birdseyeWithLabels - Bird’s eye imagery with a road overlay.
* road - Roads without additional imagery. (default)
Example - setting Bing imagery type for a layer
<div id="map"></div>
<script>
$("#map").kendoMap({
center: [30.268107, -97.744821],
zoom: 3,
layers: [{
type: "bing",
key: "YOUR_BING_MAPS_API_KEY",
imagerySet: "aerial"
}]
});
</script>
In this article