I am integrating google maps sdk. Its all work fine. But how to remove particular Marker(Pin Point) when second will appear.(I am not using Mapkit)
I want the following:
loop all marker in the map , and you can use title or snippet to decide which marker you remove
as map.markers is no longer to use in google map ios sdk , you need to have a nsmutablearray to store all marker for looping purpose
and you can make use of userData of the marker , marker.userData , which i prefer to store a nsdictionary information in the marker in order to prevent from duplicate name of title .
cheers.