程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 通過php獲取google map的坐標地址

通過php獲取google map的坐標地址

編輯:關於PHP編程

     第一步,獲取坐標

    <?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" />
    
    代碼就兩段,很簡單。
    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved