0

The question is in the title: How do I remove the default UI pop ups from GoogleMaps?

Everything will become clear once you look at the screenshot below (PFA). Please tell me if there is more content I should add in this question (n00b).

I have to disable the pop ups on the bottom right.

Photo

geocodezip
  • 158,664
  • 13
  • 220
  • 245
petnamedsteve
  • 347
  • 1
  • 2
  • 11

1 Answers1

2

Have you tried using something along these lines?

GoogleMap map;

UiSettings config = map.getUiSettings();
config.setMapToolbarEnabled(false);
config.setZoomControlsEnabled(false);

From my experience this is exactly what you need.

sp0rk
  • 483
  • 4
  • 14