layers.titleField String (default: "title")

The data item field which contains the marker title. Requires the dataSource option to be set.

Example - bind marker title

<div id="map"></div>
<script>
    $("#map").kendoMap({
        layers: [{
            type: "marker",
            locationField: "latlng",
            titleField: "text",
            dataSource: {
                data: [{
                    latlng: [0, 0],
                    text: "POI"
                }]
            }
        }]
    });
</script>
In this article