Skip to content

Commit

Permalink
Update LandActivity.java
Browse files Browse the repository at this point in the history
Solving issue The map does not zoom in or out neither it shows the compass scorelab#108
  • Loading branch information
iammosespaulr authored Jan 9, 2018
1 parent 4de3a54 commit c75a2bc
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,10 @@ public void onMapReady(GoogleMap googleMap) {
// for ActivityCompat#requestPermissions for more details.
return;
}
UiSettings uiSettings = googleMap.getUiSettings();
uiSettings.setCompassEnabled(false);
uiSettings.setZoomControlsEnabled(true);
uiSettings.setMyLocationButtonEnabled(false);
mGoogleMap.setMyLocationEnabled(true);
}

Expand Down

0 comments on commit c75a2bc

Please sign in to comment.