gpt4 book ai didi

iphone - 如何在谷歌地图 iOS 中找到当前位置?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:52:11 24 4
gpt4 key购买 nike

如何在谷歌地图中显示用户的当前位置?

我必须阅读这份 GPS 表格吗?

最佳答案

要移动到当前位置,您必须:

self.googleMapsView.myLocationEnabled = YES;

然后您可以在 viewWillAppear 方法中设置一个键值观察器,然后您可以使用 GoogleMaps SDK 的位置管理器更新您的位置。

- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];

// Implement here to check if already KVO is implemented.
...
[self.googleMapsView addObserver:self forKeyPath:@"myLocation" options:NSKeyValueObservingNew context: nil]
}

然后观察属性。

- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
if ([keyPath isEqualToString:@"myLocation"] && [object isKindOfClass:[GMSMapView class]])
{
[self.googleMapsView animateToCameraPosition:[GMSCameraPosition cameraWithLatitude:self.googleMapsView.myLocation.coordinate.latitude
longitude:self.googleMapsView.myLocation.coordinate.longitude
zoom:self.googleMapsView.projection.zoom]];
}
}

不要忘记在 viewWillDisappear 中注销您的观察者。

- (void)viewWillDisappear:(BOOL)animated
{
[super viewWillDisappear:animated];
// Implement here if the view has registered KVO
...
[self.googleMapsView removeObserver:self forKeyPath:@"myLocation"];
}

基于 Weindl 的回答。

关于iphone - 如何在谷歌地图 iOS 中找到当前位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16448305/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com