2

Uber released an update to their app, and they have somehow made the circle around the my location blue dot pulsate.

Here is an image (not an Uber screenshot) of the blue dot and circle I am talking about:

enter image description here

My question is not about Ubers' implementation, my question is that I did not believe it was possible to remove the blue circle from google maps. How is this done? If I know this, I can use animations at my current location to achieve the same effect.

I have already attempted doing the following

gmaps.getUiSettings().setMyLocationButtonEnabled(false);

This had no effect on the blue dot, nor the blue circle around the dot.

mkrieger1
  • 19,194
  • 5
  • 54
  • 65
portfoliobuilder
  • 7,556
  • 14
  • 76
  • 136
  • 1
    Take a look at http://stackoverflow.com/questions/38147350/google-maps-current-location-marker-period-updates-for-gmaps/38147659#38147659 – antonio Nov 02 '16 at 23:08

1 Answers1

9

The blue circle should be removed with

map.setMyLocationEnabled(false);
Gchorba
  • 301
  • 2
  • 13