菜鸟教程小白 发表于 2022-12-12 10:04:12

ios - 谷歌地图中的didUpdateUserLocation?


                                            <p><p>我正在使用 Storyboard和 Googlemap 构建 iOS 应用。使用iOS6——苹果 map 有方法</p>

<p>-(void)mapView:(MKMapView*)mapView didUpdateUserLocation:(MKUserLocation *)userLocation {
}</p>

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

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

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

<p>任何关于此问题的指导将不胜感激,在此先感谢!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><code>GMSMapView</code> 类有一个<code>myLocation</code> 属性,您可以在用户位置移动时观察该属性的变化。有关详细信息,请参阅此问题:</p>

<p> <a href="https://stackoverflow.com/questions/15266118/about-positioning-myself-some-problems" rel="noreferrer noopener nofollow">about positioning myself,some problems</a> </p>

<p>另一种研究方法是 <code>startMonitoringForRegion:</code> 方法,当用户在区域内移动时(例如,靠近目标标记),您可以使用该方法接收通知:</p >

<p> <a href="http://developer.apple.com/library/ios/#documentation/CoreLocation/Reference/CLLocationManager_Class/CLLocationManager/CLLocationManager.html#//apple_ref/occ/instm/CLLocationManager/startMonitoringForRegion" rel="noreferrer noopener nofollow">http://developer.apple.com/library/ios/#documentation/CoreLocation/Reference/CLLocationManager_Class/CLLocationManager/CLLocationManager.html#//apple_ref/occ/instm/CLLocationManager/startMonitoringForRegion</a> :</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 谷歌地图中的didUpdateUserLocation?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/15857281/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/15857281/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 谷歌地图中的didUpdateUserLocation?