Google Map iOS应用搜索

时间:2015-09-01 07:09:04

标签: ios google-maps search maps

  

Google Place API有不同的搜索API用于搜索地点   在下面链接中提到:

https://developers.google.com/places/webservice/search?hl=en

我想要与' Google地图'完全相同的结果我的应用程序中的iOS应用程序。

那么我应该使用哪个API来搜索和使用什么参数?

目前我正在使用网址进行搜索:

https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=xxxx.xx,xxxx.xx&radius=50000&keyword=xxxxx&key=xxx

2 个答案:

答案 0 :(得分:0)

  

使用Google Place Api查找搜索,NearBY带图像的地方   与Google Api Search相关的所有内容均在演示中提供。

我创建了一个演示,你可以得到完整的解决方案,检查一下。 可能对你有帮助。

  

GooglePlacesAPIDemo

答案 1 :(得分:0)

这会将确切的结果作为Google Map返回。但是我已经将类型设置为" ATM"但你可以得到任何像餐厅,酒吧,银行等的结果。

// Call Google Places API as..
NSString * strUrl = [ NSString stringWithFormat : @"https://maps.googleapis.com/maps/api/place/search /json?location = %f , %f &radius = % @ &type = atm &sensor = true & name = %@ &key = %@",latitude, longitude, radius.text,UITextField.text, googleAPI_Key ];

您将获得JSON格式的数据。根据你解析它。 对于纬度和经度,使用CLLocationManager获取当前位置。