映射API以搜索国家/地区中的街道

时间:2016-05-04 14:37:44

标签: java maps

我正在寻找一个开放的Map API,我可以在一个国家搜索街道名称,返回一系列可能的位置。例如:我的输入是:eggmont street,england,它返回一个列表,我可以在那里找到英格兰的Eggmont街。

有可能吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

查看Google Maps Web Services

Example usage

// Replace the API key below with a valid API key.
GeoApiContext context = new GeoApiContext().setApiKey("YOUR_API_KEY");
GeocodingResult[] results =  GeocodingApi.geocode(context,
    "1600 Amphitheatre Parkway Mountain View, CA 94043").await();
System.out.println(results[0].formattedAddress);