markerDefaults.tooltip.showOn String
(default: "mouseenter")
The event on which the tooltip will be shown. Predefined values are "mouseenter", "click" and "focus".
Example - show tooltip on mouse enter
<div id="map"></div>
<script>
$("#map").kendoMap({
layers: [{
type: "tile",
urlTemplate: "http://a.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png",
attribution: "© OpenStreetMap"
}],
markerDefaults: {
tooltip: {
showOn: "mouseenter",
content: "Foo"
}
},
markers: [{
location: [42, 27]
}, {
location: [40, 20]
}]
});
</script>