layerDefaults.marker.tooltip.position String
(default: "top")
The position relative to the target element, at which the tooltip will be shown. Predefined values are "bottom", "top", "left", "right", "center".
Example - set tooltip position
<div id="map"></div>
<script>
$("#map").kendoMap({
layerDefaults: {
marker: {
tooltip: {
position: "left",
content: "Foo"
}
}
},
layers: [{
type: "marker",
locationField: "latlng",
dataSource: {
data: [{
latlng: [0, 0]
}]
}
}]
});
</script>