titleString
(default: "pinTarget")
The marker title. Displayed as browser tooltip.
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],
title: "Visit Boston - Historical City"
}]
});
</script>
In this article