我正在寻找一个开放的Map API,我可以在一个国家搜索街道名称,返回一系列可能的位置。例如:我的输入是:eggmont street,england,它返回一个列表,我可以在那里找到英格兰的Eggmont街。
有可能吗?
谢谢!
答案 0 :(得分:0)
// 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);