在我的应用中,我正在使用GMSMapView
,我想更改跟踪模式。在iOS MapKit中,我可以将跟踪模式更改为MKUserTrackingModeFollowWithHeading
,但不知道如何在GMSMapView
中更改它。
在应用Google Maps
中,它在myLocationButton
上第二次触摸后正在工作。有可能吗?
答案 0 :(得分:4)
要使用当前位置连续更改相机,您需要将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
获取帮助希望它有所帮助。