2

我正在寻找一个 API,它返回给定坐标所在国家/地区使用的语言。有谁知道这样的东西是否存在?

4

1 回答 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);​

jsfiddle链接

于 2012-08-06T13:15:00.853 回答