任何人都可以帮助我如何使用Geoapi获取特定城市的商业列表。是否可以使用GeoApi中的特定城市检索商家列表。如果有可能请通过示例mql查询或url链接告诉我如何做到这一点。
答案 0 :(得分:0)
是的,您可以检索您所在位置的商家列表,您的查询将如下,
MQL查询: {"lat": 37.75629, "lon": -122.4213, "radius": "1km", "entity": [{"type": "business", "guid": null}]}
这是example
要了解GeoAPI的工作原理,以下是一些基本查询。将查询放在浏览器中以查看其JSON格式的结果。
* Search from a latitude, longitude coordinate pair:
o http://api.geoapi.com/v1/search?lat=37.75647&lon=-122.421218&radius=0.1km&apikey=demo&pretty=1
* Get the parent entities of a lat, lon pair:
o http://api.geoapi.com/v1/parents?lat=37.563475&lon=-122.323219&apikey=demo&pretty=1
* Get an entitys parents (in this case, the entity is Ritual Roasters in San Francisco, and its parents are the neighborhood and city its located in):
o http://api.geoapi.com/v1/e/ritual-coffee-roasters-san-francisco-ca-94110/parents?apikey=demo&pretty=1
* Get information about a business (in this case, Ritual Roasters in San Francisco):
o http://api.geoapi.com/v1/e/ritual-coffee-roasters-san-francisco-ca-94110/view/listing?apikey=demo&pretty=1
* Get information about an entity (in this case, San Francisco):
o http://api.geoapi.com/v1/e/san-francisco-ca?apikey=demo&pretty=1