optionsObject
The layer options.
Example
<div id="map"></div>
<script>
// Options for tile layer configuration
var options = {
type: "tile",
urlTemplate: "https://#= subdomain #.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png",
subdomains: ["a", "b", "c"],
tileSize: 256
};
$("#map").kendoMap({
layers: [options]
});
</script>
In this article