layerDefaults.bubble.attribution String
The attribution for all bubble layers.
Example - set default attribution for all bubble layers
<div id="map"></div>
<script>
$("#map").kendoMap({
layerDefaults: {
bubble: {
attribution: "© Company Inc."
}
},
layers: [{
type: "bubble",
dataSource: {
data: [{
"location": [42, 12], "value": 10
}, {
"location": [45, 15], "value": 25
}]
}
}]
});
</script>