Reputation: 485
I have implemented a MapView in android. I need to achieve following things in maps
Upvotes: 0
Views: 476
Reputation: 54
You can disable scroll in MapFragment
using:
googleMap.getUiSettings().setScrollGesturesEnabled(false);
Upvotes: 1
Reputation: 18242
Enable the zoom gestures on your map object and disable the scroll gestures:
@Override
public void onMapReady(final GoogleMap googleMap) {
googleMap.getUiSettings().setZoomGesturesEnabled(true);
googleMap.getUiSettings().setScrollGesturesEnabled(false);
}
Upvotes: 1