第一步,獲取坐標
<?php
$address = !empty($_POST['address'])?$_POST['address']:"<?=$navinfor[字段名稱]?>";// 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;
?>
第二步,將獲取到的坐標嵌入到地圖即可
<img src="http://maps.google.com/maps/api/staticmap?center=<?php echo $lat;?>,
<?php echo $lng;?>&
zoom=16&
size=520x340&
maptype=roadmap&
markers=<?php echo $lat;?>,<?php echo $lng;?>&
sensor=false" height="340" width="520" />
代碼就兩段,很簡單。