php google地图应用实例代码
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-09 16:19:34 浏览: 评论:0
- 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>
- <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=http://filesimg.111cn.net/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" ) ?> > //开源代码phpfensi.com
- 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>
Tags: php google地图 php应用实例
- 上一篇:php在线解压ZIP文件实例代码
- 下一篇:php+ajax文章自动保存代码实例方法
相关文章
- ·PHP中通过Web 执行C/C++应用程序(2013-11-13)
- ·用PHP实现Ftp用户的在线管理(2013-11-13)
- ·用PHP自动把纯文本转换成Web页面(2013-11-13)
- ·用实例分析PHP5异常处理(2013-11-13)
- ·php5的simplexml解析错误(2013-11-13)
- ·PHP后门的隐藏技巧测试报告(2013-11-13)
- ·PHP缓存技术详谈(2013-11-27)
- ·利用PHP自定义错误处理器处理出错信息(2013-11-27)
- ·PHP作wap开发时遇到的问题(2013-11-27)
- ·php编写大型网站问题集(2013-11-27)
- ·php测试性能代码(2013-11-28)
- ·php 安全register globals设置为TRUE的危害(2013-11-28)
- ·XSLTProcessor 中 registerPHPFunctions 后无法调用 php 函数(2013-11-30)
- ·PHP中常用三种缓存技术(2013-11-30)
- ·新浪微博PHP版SDK的导致20007错误(2013-12-03)
- ·linux中phpMyAdmin错误提示Wrong permissions on configuration file, should no(2013-12-04)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)