tooltip.calloutBoolean
(default:true)
Specifies if the tooltip callout will be displayed.
Example
<div id="map"></div>
<script>
$("#map").kendoMap({
layers: [{
type: "tile",
urlTemplate: "https://a.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png",
attribution: "© OpenStreetMap"
}],
markers: [{
location: [42.3601, 71.0589],
tooltip: {
content: "Tooltip without callout",
callout: false
}
}]
});
</script>
In this article