Google Maps中的didUpdateUserLocation?

时间:2013-04-06 23:48:32

标签: ios mkmapview mapkit google-maps-sdk-ios

我正在使用故事板和Google地图构建iOS应用。使用iOS6 - Apple地图有一个方法

- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation { }

查看在线文档和xCode中的googleMaps.framework,我没有找到类似方法的任何线索。

我想要做的是当用户到达地图上的标记时 - 让用户知道他们到达了那个目的地。

谷歌地图中是否存在如上所示的方法?和/或我需要做些什么来实现我之前所说的。

提前感谢您对此事的任何指导意见!

1 个答案:

答案 0 :(得分:1)

GMSMapView类具有myLocation属性,您可以观察用户位置移动时的更改。有关详细信息,请参阅此问题:

about positioning myself,some problems

另一种可以查看的方法可以是startMonitoringForRegion:方法,当用户在区域内移动时(例如,靠近目标标记),您可以使用该方法接收通知:

http://developer.apple.com/library/ios/#documentation/CoreLocation/Reference/CLLocationManager_Class/CLLocationManager/CLLocationManager.html#//apple_ref/occ/instm/CLLocationManager/startMonitoringForRegion