Reputation: 11
Android: I need to keep a marker (static) in the center of the screen while you scroll in google map and to retrieve the location of the marker.someone can give me an idea?
Upvotes: 1
Views: 1441
Reputation: 7329
Just draw the marker in a different view on top of the map so that it doesn't move when you drag the map and use this to get the center of the map:
mMap.getCameraPosition().target
Upvotes: 1