PHP は地理的位置情報に基づいて緯度と経度を取得します
詳細は不要です。コードを投稿するだけです:
<span style="font-size:14px;"><?php $address = !emptyempty($_POST['address'])?$_POST['address']:"上海徐汇区漕宝70号";// Google HQ $prepAddr = str_replace(' ','+',$address); $geocode=file_get_contents('http://maps.google.com/maps/api/geocode/json?address='.$prepAddr.'&sensor=false'); $output= json_decode($geocode); $lat = $output->results[0]->geometry->location->lat; $lng = $output->results[0]->geometry->location->lng; ?> </span>
著作権に関する声明: この記事はブロガーによるオリジナルの記事であり、ブロガーの許可なく複製することはできません。