messagesObject
Allows localization of the strings that are used in the widget.
Example - configuring map messages
<div id="map"></div>
<script>
$("#map").kendoMap({
center: [30.268107, -97.744821],
zoom: 3,
messages: {
tileTitle: "Mapa del territorio"
},
layers: [{
type: "tile",
urlTemplate: "https://a.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png",
attribution: "© OpenStreetMap"
}]
});
</script>
In this article