问题
I have implemented google map in my project and i want to hide my current location marker and i need to show the button which allow to go my current location.
As the google provides current location button but i want to hide current location marker. I am attaching image the will more helps you in understanding the problem.

回答1:
You can disable it from with your Google Map instance (here called "map")
map.setMyLocationEnabled(false);
map.getUiSettings().setMyLocationButtonEnabled(false);
来源:https://stackoverflow.com/questions/29008384/how-to-hide-current-location-in-google-map