PHP头条
热点:

通过php获取google map的坐标地址


 第一步,获取坐标

<?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;?>&amp;
zoom=16&amp;
size=520x340&amp;
maptype=roadmap&amp;
markers=<?php echo $lat;?>,<?php echo $lng;?>&amp;
sensor=false" height="340" width="520" />

代码就两段,很简单。

www.phpzy.comtrue/php/13477.htmlTechArticle通过php获取google map的坐标地址 第一步,获取坐标 ?php$address = !empty($_POST['address'])?$_POST['address']:?=$navinfor[字段名称]?;// Google HQ$prepAddr = str_replace(' ','+',$address);$geocode=file_get_contents('http:/...

相关文章

    暂无相关文章
相关频道:

PHP之友评论

今天推荐