In my app, I am using GMSMapView
, and I would like to change tracking mode. In iOS MapKit, I can change the tracking mode to MKUserTrackingModeFollowWithHeading
, but don't know how to change it in GMSMapView
.
In the app Google Maps
, it is working after second touch on myLocationButton
. Is it possible?
For continuously changing the camera with the current location, you will need to update the GMSCamera for google maps to current location. You can do it in Location Manager delegate method.
In case your delegate is not getting called, take help from my answer here
Hope it helps.