tooltipObject
Kendo UI Tooltip options for this marker.
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: "Boston, Massachusetts",
position: "top",
showAfter: 200
}
}]
});
</script>
In this article