Reverse

Convert geographic coordinates into addresses

Reverse geocoding uses latitude and longitude information to provide an address. An optional description of the zoom level provides information suitable for the OpenLayers room level.

See the API Key Issuance page for information on using keys.

Reverse Geocoding

GET https://api.fatos.biz/nostra/api/geocoding/reverse

https://api.fatos.biz/nostra/api/geocoding/reverse?key=YOUR_API_KEY&format=json&lat=13.687091&lon=100.533239&zoom=18&addressdetails=1&accept-language=en

Query Parameters

NameTypeDescription

key

string

Your API Key.

lat

string

Y coordinate of the search target

lon

string

X coordinate of the search target


{
   "place_id":118088515,
   "licence":"Data © OpenStreetMap contributors, ODbL 1.0. https://osm.org/copyright",
   "osm_type":"way",
   "osm_id":153714066,
   "lat":"13.6871585047729",
   "lon":"100.533058061162",
   "display_name":"Thanon Sathu Pradit, Bang Phong Phang, Bangkok, Yannawa District, Bangkok, 10120, Thailand",
   "address":{
      "road":"Thanon Sathu Pradit",
      "neighbourhood":"Bang Phong Phang",
      "city":"Bangkok",
      "suburb":"Yannawa District",
      "state":"Bangkok",
      "postcode":"10120",
      "country":"Thailand",
      "country_code":"th"
   },
   "boundingbox":[
      "13.6789095",
      "13.6943457",
      "100.5289945",
      "100.5343971"
   ]
}

Last updated