Google地方特定于国家/地区的自动填充服务(街道 - 城市 - 州 - 邮政编码)

时间:2014-02-11 07:23:23

标签: java google-maps-api-3 geocoding google-places-api google-places

我正在使用Google地方信息自动完成服务,我需要过滤特定于国家/地区的地方!!

参考站点: - https://www.grubhub.com(特定国家/地区,州/邮政编码)

我找到了一个例子: - http://plnkr.co/QjPEczt6AosghVP8EHNV

我需要自动填充功能,以具有街道地址 - 城市状态 - 密码格式的国家/地区提供特定建议。

非常感谢任何有关如何实现这一目标的想法。

非常感谢, Devang

1 个答案:

答案 0 :(得分:0)

这很简单(以法国为例)......

GooglePlaces client = new GooglePlace("apiKey");
List<Predictions> predictions = client.getPlacePredictions(input, -1, -1, -1, -1, null, null, "fr");
for (Prediction prediction : predictions) {
    String descriptions = prediction.getDescription();
    Place place = prediction.getPlace();
    // blah blah blah
}

...在this库中。