温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

google地图怎么在php项目中应用

发布时间:2020-12-21 15:59:04 来源:亿速云 阅读:276 作者:Leah 栏目:开发技术

本篇文章给大家分享的是有关google地图怎么在php项目中应用,小编觉得挺实用的,因此分享给大家学习,希望大家阅读完这篇文章后可以有所收获,话不多说,跟着小编一起来看看吧。

php代码如下:

复制代码 代码如下:

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 ]);

html页面如下:

复制代码 代码如下:

<html> 
<head> 
<title>Well House Manor, Melksham</title> 
<script src="http://maps.google.com/maps?file=api&amp;v=2&amp; 
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> 
<h2>Well House Manor, Melksham</h2> 
<img src=/get_pic/2010/03/20100525003348607.jpg><br> 
&bull; Business Hotel in Melksham<br> 
&bull; All rooms fitted to superior standard<br> 
&bull; Internet Access throughout<br> 
&bull; 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" </div> 
</td></tr></table> 
</body> 
</html>

以上就是google地图怎么在php项目中应用,小编相信有部分知识点可能是我们日常工作会见到或用到的。希望你能通过这篇文章学到更多知识。更多详情敬请关注亿速云行业资讯频道。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI