在我的应用中,我正在使用GMSMapView
,并且我想更改跟踪模式。在iOS MapKit中,我可以将跟踪模式更改为MKUserTrackingModeFollowWithHeading
,但是不知道如何在GMSMapView
中进行更改。
在应用程序Google Maps
中,第二次触摸myLocationButton
后,它即可正常工作。可能吗?
最佳答案
要使用当前位置连续更改相机,您需要将Google地图的GMSCamera更新到当前位置。您可以在位置管理器委托方法中进行操作。
CLLocation *location;
- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations {
//Get current latitude and longitude from didUpdateLocation
location = [locations lastObject];
}
-(void)locationManager:(CLLocationManager *)manager didUpdateHeading:(CLHeading *)newHeading
{
GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:location.coordinate.latitude longitude:location.coordinate.longitude zoom:10 bearing:newHeading.trueHeading viewingAngle:0];
//You can change viewingAngle from 0 to 45
[self.mapForView animateToCameraPosition:camera];
}
万一您的代表没有接到电话,请从我的答案here中寻求帮助
希望能帮助到你。