tooltip.iframeBoolean
Explicitly states whether content iframe should be created.
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],
tooltip: {
content: {
url: "https://example.com/marker-info"
},
iframe: true,
width: 400,
height: 300
}
}]
});
</script>