在xcode中获取经度和纬度并将其插入谷歌api [关闭]

问题描述 投票:-1回答:1

我在我的应用程序中使用了一个用于API的URL,但我必须将坐标编程到其中,例如

https://maps.googleapis.com/maps/api/place/search/json?location=38.69747988499999,-121.3570182875&radius=500&types=food&sensor=false&key=AIzaSyC794n1sZ9Rj0UnzXiNTqsDYbYBc0o_UxM

所以我有几个问题:

  1. 应用程序打开后如何获取我的位置?
  2. 如何将该位置放入上面的代码中?
iphone xcode api coordinates latitude-longitude
1个回答
0
投票

只需实现CLLocationManager的代表。

1:创建一个CLLocationManager(注意在应用程序中只能有一个CLLocationManager)2:将CLLocationManager的委托设置为实现CLLocationManagerDelegate 3的类:调用startUpdatingLocationstartMonitoringSignificantLocationChanges 4:CLLocationManager will inform you about new locations

然后LocationManager将调用locationManager:didUpdateToLocation:fromLocation:

© www.soinside.com 2019 - 2024. All rights reserved.