Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

map.setmylocationenabled(true) not working

I'm working with Google Maps in my android app. I need to recenter the map to the client's current location. I used the following statement -

map.setmylocationenabled(true);

This displays a button on the top right but clicking that doesn't work.

The button click listener:

mMap.setOnMyLocationButtonClickListener(new GoogleMap.OnMyLocationButtonClickListener() {
                @Override
                public boolean onMyLocationButtonClick() {
                    mMap.addMarker(new MarkerOptions().position(myLatLng).title("My Location"));
                    mMap.animateCamera(CameraUpdateFactory.newLatLngZoom(myLatLng, zoomLevel));
                    return false;
                }
            });
like image 863
Venu Saini Avatar asked Jan 05 '16 09:01

Venu Saini


1 Answers

The last line was a solution for me:

myMap.setMyLocationEnabled(true);
myMap.getUiSettings().setMyLocationButtonEnabled(true);
like image 113
Andrii Kovalchuk Avatar answered Sep 25 '22 06:09

Andrii Kovalchuk