我正在寻找一种API,它返回给定坐标所在国家/地区的语言。有谁知道这样的东西是否存在?
答案 0 :(得分:0)
ws.geonames.org
提供此服务。下面是一些使用JavaScript和jQuery的示例代码,但您可以使用任何语言访问它:
var lookupLanguagesWithGeonames = function(lat, lng) {
$.getJSON('http://ws.geonames.org/countryCode', {
lat: lat,
lng: lng,
type: 'JSON'
}, function(results) {
if (results.countryCode) {
alert('coordinates: ' + lat + ', ' + lng + '\n' + 'languages: ' + results.languages);
} else {
alert('coordinates: ' + lat + ', ' + lng + '\n' + 'failed: ' + results.status.value + ' ' + results.status.message);
}
});
};
// Coordinates that fall within a country
lookupLanguagesWithGeonames(43.7534932, 28.5743187);
// Coordinates which are not within any country
lookupLanguagesWithGeonames(142, 124);