我有一个1663个地点/地址的列表,我需要使用地址作为输入或搜索条件的Lat/Lng。有没有一种方法可以使用googlemapapi自动通过地址查找lat/lng?
谢谢,
$data = "ur adress"
$string = json_decode(file_get_contents("https://maps.googleapis.com/maps/api/geocode/json?address=$data&sensor=true_or_false"));
$lat = $string->results[0]->geometry->location->lat;
$lng = $string->results[0]->geometry->location->lng;
作为php 的灵感来源