因此,我正在尝试将 Google 和 MapQuest 的地理编码功能配对,因为某些地址无法通过 Google 进行地理编码,但它们出现在 Mapquest 上,所以我想将它们配对。我能够得到谷歌结果:
$geocode=file_get_contents('http://maps.google.com/maps/api/geocode/json?address='.$prepAddr.'&sensor=false');
$output= json_decode($geocode);
$lat1 = $output->results[0]->geometry->location->lat;
$lon1 = $output->results[0]->geometry->location->lng;
如何使用 MapQuest 获得结果?我从来没有使用过 MapQuest,所以我不知道它是如何返回数据的,而且我在这里或任何地方都没有找到任何可以展示检索数据的东西......
帮助!谢谢!