地理编码到语言

时间:2012-05-26 14:01:08

标签: geocoding latitude-longitude

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

1 个答案:

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

jsfiddle link