Reputation: 323
Anyone please help me, I want to set compass button on top right corner on the Google map. I have wasted my lot of time but i didn't find any answer that can help me. How can I achieve this with the Google maps ? Any suggestions?
Upvotes: 6
Views: 1965
Reputation: 47807
By default Compass
is coming at left side corner in Google maps V2. You just set.setCompassEnabled(true)
.
myMap.getUiSettings().setCompassEnabled(true);
and also compass icon appear only if you rotate the map to not align to north.
Upvotes: 4