除了谷歌地图API之外,是否有任何网络服务(付费或免费)允许您反转地理编码?
我的特定应用程序可以访问纬度和经度,我需要能够获得美国邮政编码或州。
我无法使用Google的原因是,服务条款似乎表明如果您使用Google Maps API,则需要使用这些数据来显示Google地图。
我正在使用C#.Net框架以防相关。
答案 0 :(得分:33)
我使用http://nominatim.openstreetmap.org进行反向查找,它非常易于使用:
答案 1 :(得分:8)
Geonames可以为您提供地名:
http://ws.geonames.org/findNearbyPlaceName?lat=40.65&lng=-73.78
或邮政编码:
http://ws.geonames.org/findNearbyPostalCodes?lat=40.65&lng=-73.78
只要您信任它们就可以免费,而且每天只需要少于15000个查询。如果您需要更多,可以pay。
答案 2 :(得分:8)
我不是MS的粉丝。但请查看:http://msdn.microsoft.com/en-us/library/ff859477.aspx
RESTful位置服务API似乎没有发布任何限制。
您可以通过点API API查找位置:http://msdn.microsoft.com/en-us/library/ff701710.aspx
我尝试了geoNames的样本,结果对我来说不够好,因为我需要县信息,响应时间很慢。
答案 3 :(得分:6)
$.getJSON('https://nominatim.openstreetmap.org/reverse', {
lat: position.coords.latitude,
lon: position.coords.longitude,
format: 'json',
}, function (result) {
console.log(result);
});
$.getJSON('https://ws.geonames.org/countryCode', {
lat: position.coords.latitude,
lng: position.coords.longitude,
type: 'JSON',
username: 'demo'
}, function (result) {
console.log(result);
});
答案 4 :(得分:4)
ArcGIS提供免费(和付费)API:
https://developers.arcgis.com/rest/geocode/api-reference/geocoding-reverse-geocode.htm
它提供给定位置的地址(lat / lon)。它甚至不需要API密钥,但是他们建议您免费获得一个API密钥。
以下是一个示例API调用,带有JSON响应:
答案 5 :(得分:3)
Nominatim Search Service是免费的,没有请求限制(软限制为1 /秒)。
http://open.mapquestapi.com/nominatim/v1/reverse.php?format=json&lat=44.0776182&lon=-92.5296981
可以找到TOS here
答案 6 :(得分:1)
请查看Geocoda - 每月免费拨打1K正向或反向地理编码电话,价格合理,价格合理。
2019年2月更新 - Geocoda现已关闭。