Reverse
Description
Reverse geocoding uses latitude and longitude information to provide addresses. Optional description of the zoom level provides information suitable for the openlayers room level.
Parameter
https://maps.fatos.biz/fatos/api/geocoding/reverse?(query string)
* key = Your API Key
Must be issued through the Fatos Sales Group.(sales@fatoscorp.com)
* format = [xml | json]
output method.
* accept-language = <browser language(string)>
Preferred language to show search results, overrides browser values.
(ex.zh-sg:singapore,th:thailand,id:indonesian,ko:korea...)
* lat = <value>
* lon = <value>
Location information for addressing.
* addressdetails = [0 | 1]
Whether to separate addresses into details.
* zoom = [0 ~ 18]
Detail level, 0 is a country, 18 is a building.
Recommended 18
Example
https://maps.fatos.biz/fatos/api/geocoding/reverse?key=(Your API Key)&format=json&lat=1.27836264&lon=103.8029343&zoom=18&addressdetails=1&accept-language=en
{
"address_type": "way",
"lat": "1.27836263535848",
"lon": "103.802934312811",
"display_name":
"Alexandra Road, Alexandra, Sentosa Cove, Southwest, 119578, Singapore",
"address": {
"road": "Alexandra Road",
"suburb": "Alexandra",
"hamlet": "Sentosa Cove",
"county": "Southwest",
"postcode": "119578",
"country": "Singapore",
"country_code": "sg"
},
"boundingbox": ["1.2783626", "1.2785892", "103.8029343", "103.8030164"]
}
← Forward