Hi,
When the map is zoom out to world map, continents are duplicated on screen (attached). However the marker only display ones and does not replicate itself on the map.
Is there a way to display the marker on duplicated continents? Thanks!
Here's the code that I have:
$("#map").kendoMap({
zoom: 1,
layers: [{
type: "tile",
urlTemplate: "http://#= subdomain #.tile.openstreetmap.org/#= zoom #/#= x #/#= y #.png",
subdomains: ["a", "b", "c"],
attribution: "© <a href='http://osm.org/copyright'>OpenStreetMap contributors</a>"
}]
});
var map = $("#map").data("kendoMap");
map.markers.add([{ location: [33.7580, -118.2762]}]);