Forward & Reverse Geocoding

免费增值
Verified
通过 Geocoding | 已更新 14 days ago | Mapping
人气

9.9 / 10

延迟

92ms

服务等级

100%

Health Check

100%

返回所有讨论

How can I obtain lat and Long from the response ?

Rapid account: Ishan Myluck
ishan.myluck
4 years ago

The response is in json format
[{“importance”:0.88028949865446,“licence”:“Data © OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",“class”:“place”,“osm_id”:2702400314,“display_name”:"Delhi, Kotwali Tehsil, Central Delhi, Delhi, 110006, India”,“osm_type”:“node”,“lon”:“77.2219388”,“place_id”:28014618,“boundingbox”:[“28.4917178”,“28.8117178”,“77.0619388”,“77.3819388”],“lat”:“28.6517178”,“type”:“city”},{“importance”:0.88028949865446,“licence”:“Data © OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",“class”:“boundary”,“osm_id”:1942586,“display_name”:"Delhi, India”,“osm_type”:“relation”,“lon”:“77.1716954”,“place_id”:248434451,“boundingbox”:[“28.4046285”,“28.8834464”,“76.8388351”,“77.346601”],“lat”:“28.6273928”,“type”:“administrative”},{“importance”:0.495,“licence”:“Data © OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",“class”:“waterway”,“osm_id”:301750823,“display_name”:"Delhi, Akkalkuwa, Nandubar, Maharashtra, 393025, India”,“osm_type”:“way”,“lon”:“73.934463”,“place_id”:162052895,“boundingbox”:[“21.4584209”,“21.6565955”,“73.9133997”,“73.9519009”],“lat”:“21.5766266”,“type”:“river”},{“importance”:0.221,“licence”:“Data © OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",“class”:“shop”,“osm_id”:7741582801,“display_name”:"Delhi, Kolathur Road, Kolathur Chanthapadi, Kolathur, Perinthalmanna, Malappuram, Kerala, 679338, India”,“osm_type”:“node”,“lon”:“76.1376047”,“place_id”:290058681,“boundingbox”:[“10.9472113”,“10.9473113”,“76.1375547”,“76.1376547”],“lat”:“10.9472613”,“type”:“clothes”}]

How can I split to obtain lat and long from first object ?

Rapid account: Geocode Support
GeocodeSupport Commented 4 years ago

Hi Ishan,
you’ll just have to parse the json in your application for the lon and lat objects.

In your example, you’ve an array of objects and you would just parse along to get the lat and long from the first array element.

If you are unfamiliar with JSON but familiar with xml, you may as well switch to an xml response output by using format=xml.

As we can’t see what app/software or programming language you use you’ll have to state further details to get some direct help.

E.g. in JavaScript you could save the response in a response var and than use response[0].lat resp. response[0].lon . Other programming languages (may) have JSON parser libraries to translate the json response into an object in your used programming language.

加入讨论 - 在下面添加评论:

登录/注册以发布新的评论