I am trying to customize blue dot which represents current location in Google Maps. I am trying to change its color or use custom image as icon. image.
I checked
Customize Google Maps blue dot for current location
But i want to enable location as well and also i does not fit image exactly on top of blue dot (though i use exact coordinates).
I tried to put circle on top of Map using
GMSCircle *circ = [GMSCircle circleWithPosition:circleCenter
radius:50];
circ.map = mapView_;
circ.fillColor = [UIColor redColor];
But it sits behind blue dot.