subdomainsArray
A list of sub-domains to use for loading tiles. Alternating between different subdomains allows more requests to be executed in parallel.
Example
<div id="map"></div>
<script>
$("#map").kendoMap({
zoom: 3,
center: [30.2681, -97.7448],
layers: [{
type: "tile",
urlTemplate: "https://#= subdomain #.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png",
subdomains: ["a", "b", "c"]
}]
});
</script>
In this article