I am trying to create a map that does not wrap horizontally using the Google Maps API V3. Therefore, instead of repeating the card side by side again and again, I want to show it only once. I got this to work by providing a custom getTileUrl function for google.maps.ImageMapType
But when I add overlays (like markers or polygons), they still repeat horizontally. How can I stop the overlay from repeating horizontally?
Change Here is an image showing the problem: 
I was thinking about somehow changing the google.maps.Projection.fromLatLngToPoint () method, but for some reason it is almost inaccessible.
source share