In my application I need to overlay an map like image on a Mapview. Which will hide the real map from the user. When User zoom the map, overlay image should also get zoomed. I tried with Mapoverlay method which use to add pins in map but it didn’t match with my requirement.
Any idea would be a great help.
Thanks in advance !
You need to create your own class which extends ItemizedOverlay and in that classes constructor you can set the default marker as the image that you want the put onto the map.
Something like this.
In your original map Activity you need to do something like this to use your overlay.