markers.tooltipObject

Kendo UI Tooltip options for this marker.

Example - configuring marker tooltip

<div id="map"></div>
<script>
    $("#map").kendoMap({
        layers: [{
            type: "tile",
            urlTemplate: "https://a.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png",
            attribution: "&copy; OpenStreetMap"
        }],
        markers: [{
            location: [42.6977, 23.3219],
            tooltip: {
                autoHide: false,
                content: "Sofia, Bulgaria - Capital city",
                position: "top",
                showOn: "click"
            }
        }]
    });
</script>