我有一个包含姓名,区域,城市fieds的CSV文件,我希望CSV包含以下字段名称,区域,城市,纬度,经度
任何人都可以建议哪种API最适合这些,
我已经尝试过了 Google API的
我想完全
echo $url = "https://maps.googleapis.com/maps/api/geocode/json?address=" . $name1 . "+" . $area1 . "+" . $city . "&key=" . $api_key;
哪种API符合我的要求?
我也尝试了这个
$url = "https://maps.googleapis.com/maps/api/place/textsearch/json?query=". $name1 . "+" . $area1 . "+" . $city . "&key=" . $api_key;