php使用google地圖應(yīng)用實(shí)例
更新時(shí)間:2014年12月31日 11:05:19 投稿:shichen2014
這篇文章主要介紹了php使用google地圖應(yīng)用方法,分析了google地圖接口調(diào)用技巧及具體用法,具有一定參考借鑒價(jià)值,需要的朋友可以參考下
本文實(shí)例講述了php使用google地圖應(yīng)用方法。分享給大家供大家參考。具體如下:
php代碼如下:
復(fù)制代碼 代碼如下:
function selected ( $param , $value ) {
if ( $param == $value ) print "SELECTED" ;
}
# Collect any form data to control the display
$scale = 10 ;
$maptype = "G_NORMAL_MAP" ;
if ( $_REQUEST [ scale ]) $scale = $_REQUEST [ scale ];
if ( $_REQUEST [ maptype ]) $maptype = $_REQUEST [ maptype ];
# Geocoding your location
# Note - you would cache this in a file
# The key is domain specific - your google maps教程 key
/*
$location = file("http://maps.google.com/maps/geo?q=48+Spa+Road,+Melksham,+UK&
output=csv&key=ABQIAAAAvp3__HwvT3VkixIIbsW0axQuKI_6t1bH2P0vCI_Q8jfpn8qdNBQMnnelj
xh9czilkau_bYSCXteS_A");
*/
# Following line is hard coded for demo
$location [ 0 ]= "200,8,51.369318,-2.133457" ;
list ( $stat , $acc , $north , $east ) = explode ( "," , $location [ 0 ]);
if ( $param == $value ) print "SELECTED" ;
}
# Collect any form data to control the display
$scale = 10 ;
$maptype = "G_NORMAL_MAP" ;
if ( $_REQUEST [ scale ]) $scale = $_REQUEST [ scale ];
if ( $_REQUEST [ maptype ]) $maptype = $_REQUEST [ maptype ];
# Geocoding your location
# Note - you would cache this in a file
# The key is domain specific - your google maps教程 key
/*
$location = file("http://maps.google.com/maps/geo?q=48+Spa+Road,+Melksham,+UK&
output=csv&key=ABQIAAAAvp3__HwvT3VkixIIbsW0axQuKI_6t1bH2P0vCI_Q8jfpn8qdNBQMnnelj
xh9czilkau_bYSCXteS_A");
*/
# Following line is hard coded for demo
$location [ 0 ]= "200,8,51.369318,-2.133457" ;
list ( $stat , $acc , $north , $east ) = explode ( "," , $location [ 0 ]);
html頁面如下:
復(fù)制代碼 代碼如下:
<html>
<head>
<title>Well House Manor, Melksham</title>
<script src="http://maps.google.com/maps?file=api&v=2&
key=ABQIAAAAvp3__HwvT3VkixIIbsW0axQuKI_6t1bH2P0vCI_Q8jfpn8qdNBQMnneljxh9czilkau_
bYSCXteS_A"
type="text/javascript教程"></script>
<script type="text/javascript">
//<![CDATA[
function load() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(51.36905, -2.1335), <?= $scale ?> );
map.setMapType( <?= $maptype ?> );
var manor = new GLatLng( <?= $north ?> , <?= $east ?> );
map.addOverlay(new GMarker(manor));
}
}
//]]>
</script>
</head>
<body onLoad="load()" onUnload="GUnload()">
<table><tr valign=top><td>
<h1>Well House Manor, Melksham</h1>
<img src=/get_pic/2010/03/20100525003348607.jpg><br>
• Business Hotel in Melksham<br>
• All rooms fitted to superior standard<br>
• Internet Access throughout<br>
• Plenty of parking and close to town centre<br><br>
<a href=http://www.wellhousemanor.co.uk>Well House
Manor website</a><hr>
<form method=POST> Change to
<select name=scale>
<option value=7 <?= selected ( $scale , 7 ) ?> >Overview</option>
<option value=10 <?= selected ( $scale , 10 ) ?> >County</option>
<option value=13 <?= selected ( $scale , 13 ) ?> >Town</option>
<option value=16 <?= selected ( $scale , 16 ) ?> >Street</option>
<option value=19 <?= selected ( $scale , 19 ) ?> >Building</option>
</select>
<select name=maptype>
<option value=G_NORMAL_MAP <?= selected ( $maptype , "G_NORMAL_MAP" ) ?> >
Normal map</option>
<option value=G_SATELLITE_MAP <?= selected ( $maptype , "G_SATELLITE_MAP" ) ?> >
Satellite data</option>
<option value=G_HYBRID_MAP <?= selected ( $maptype , "G_HYBRID_MAP" ) ?> >
Hybrid</option>
</select>
<input type=submit value="go!"></form><br>
This is a sample PHP page with Google Maps<br>
teach you how to write pages like this</a><br>
Date - <?= date ( "F, jS l Y" ) ?> <br>
</td><td>
<div id="map" style="width: 450px; height: 550px"</div>
</td></tr></table>
</body>
</html>
<head>
<title>Well House Manor, Melksham</title>
<script src="http://maps.google.com/maps?file=api&v=2&
key=ABQIAAAAvp3__HwvT3VkixIIbsW0axQuKI_6t1bH2P0vCI_Q8jfpn8qdNBQMnneljxh9czilkau_
bYSCXteS_A"
type="text/javascript教程"></script>
<script type="text/javascript">
//<![CDATA[
function load() {
if (GBrowserIsCompatible()) {
var map = new GMap2(document.getElementById("map"));
map.setCenter(new GLatLng(51.36905, -2.1335), <?= $scale ?> );
map.setMapType( <?= $maptype ?> );
var manor = new GLatLng( <?= $north ?> , <?= $east ?> );
map.addOverlay(new GMarker(manor));
}
}
//]]>
</script>
</head>
<body onLoad="load()" onUnload="GUnload()">
<table><tr valign=top><td>
<h1>Well House Manor, Melksham</h1>
<img src=/get_pic/2010/03/20100525003348607.jpg><br>
• Business Hotel in Melksham<br>
• All rooms fitted to superior standard<br>
• Internet Access throughout<br>
• Plenty of parking and close to town centre<br><br>
<a href=http://www.wellhousemanor.co.uk>Well House
Manor website</a><hr>
<form method=POST> Change to
<select name=scale>
<option value=7 <?= selected ( $scale , 7 ) ?> >Overview</option>
<option value=10 <?= selected ( $scale , 10 ) ?> >County</option>
<option value=13 <?= selected ( $scale , 13 ) ?> >Town</option>
<option value=16 <?= selected ( $scale , 16 ) ?> >Street</option>
<option value=19 <?= selected ( $scale , 19 ) ?> >Building</option>
</select>
<select name=maptype>
<option value=G_NORMAL_MAP <?= selected ( $maptype , "G_NORMAL_MAP" ) ?> >
Normal map</option>
<option value=G_SATELLITE_MAP <?= selected ( $maptype , "G_SATELLITE_MAP" ) ?> >
Satellite data</option>
<option value=G_HYBRID_MAP <?= selected ( $maptype , "G_HYBRID_MAP" ) ?> >
Hybrid</option>
</select>
<input type=submit value="go!"></form><br>
This is a sample PHP page with Google Maps<br>
teach you how to write pages like this</a><br>
Date - <?= date ( "F, jS l Y" ) ?> <br>
</td><td>
<div id="map" style="width: 450px; height: 550px"</div>
</td></tr></table>
</body>
</html>
希望本文所述對(duì)大家的php程序設(shè)計(jì)有所幫助。
您可能感興趣的文章:
- php使用GeoIP庫實(shí)例
- php GeoIP的使用教程
- PHP安裝GeoIP擴(kuò)展根據(jù)IP獲取地理位置及計(jì)算距離的方法
- PHP計(jì)算百度地圖兩個(gè)GPS坐標(biāo)之間距離的方法
- php實(shí)現(xiàn)計(jì)算百度地圖坐標(biāo)之間距離的方法
- php+js實(shí)現(xiàn)百度地圖多點(diǎn)標(biāo)注的方法
- 定位地理位置PHP判斷員工打卡簽到經(jīng)緯度是否在打卡之內(nèi)
- php讀取qqwry.dat ip地址定位文件的類實(shí)例代碼
- PHP進(jìn)階學(xué)習(xí)之Geo的地圖定位算法詳解
相關(guān)文章
PHP實(shí)現(xiàn)基于3DES算法加密解密字符串示例
這篇文章主要介紹了PHP實(shí)現(xiàn)基于3DES算法加密解密字符串,簡(jiǎn)單描述了3DES加密算法的概念、原理并結(jié)合實(shí)例形式分析了3DES加密算法具體定義與使用技巧,需要的朋友可以參考下2018-08-08php站內(nèi)搜索并高亮顯示關(guān)鍵字的實(shí)現(xiàn)代碼
將sql語句中包含的%$info%交給DBMS執(zhí)行的時(shí)候,他會(huì)查找字段中含有變量$info的值的信息2011-12-12php微信開發(fā)之自定義菜單實(shí)現(xiàn)
這篇文章主要為大家詳細(xì)介紹了php微信開發(fā)之自定義菜單實(shí)現(xiàn)代碼,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2016-11-11PHP 數(shù)據(jù)結(jié)構(gòu) 算法 三元組 Triplet
PHP 數(shù)據(jù)結(jié)構(gòu) 算法 三元組 Triplet,學(xué)習(xí)php的朋友可以參考下。2011-07-07php連接與操作PostgreSQL數(shù)據(jù)庫的方法
這篇文章主要介紹了php連接與操作PostgreSQL數(shù)據(jù)庫的方法,以實(shí)例形式較為詳細(xì)的分析了php連接PostgreSQL數(shù)據(jù)庫以及進(jìn)行讀取與增加、修改、刪除等技巧,具有一定的參考借鑒價(jià)值,需要的朋友可以參考下2014-12-12