layerDefaults.shape.attribution String
The attribution for all shape layers.
Example - set default attribution for all shape layers
<div id="map"></div>
<script>
$("#map").kendoMap({
layerDefaults: {
shape: {
attribution: "© Company Inc."
}
},
layers: [{
type: "shape",
dataSource: {
type: "geojson",
data: [{
"type": "Polygon",
"coordinates": [
[[30, 10], [40, 40], [20, 40], [10, 20], [30, 10]]
]
}]
}
}]
});
</script>