我正在寻找一个 API,它返回给定坐标所在国家/地区使用的语言。有谁知道这样的东西是否存在?
问问题
117 次
1 回答
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);
于 2012-08-06T13:15:00.853 回答