网站地图    收藏   

主页 > php专栏 > php应用 >

php google地图应用实例代码 - php高级应用

来源:自学PHP网    时间:2014-11-27 22:16 作者: 阅读:

[导读] functionselected($param,$value){if($param==$value)printSELECTED;}#Collectanyformdatatocontrolthedisplay$scale=10;$maptype=G_NOR......

php google地图应用实例代码

  1. function selected ( $param , $value ) {  
  2. if ( $param == $value ) print "SELECTED" ;  
  3.  
  4. # Collect any form data to control the display 
  5.  
  6. $scale = 10 ;  
  7. $maptype = "G_NORMAL_MAP" ;  
  8. if ( $_REQUEST [ scale ]) $scale = $_REQUEST [ scale ];  
  9. if ( $_REQUEST [ maptype ]) $maptype = $_REQUEST [ maptype ]; 
  10.  
  11. # Geocoding your location  
  12. # Note - you would cache this in a file  
  13. # The key is domain specific - your google maps教程 key 
  14.  
  15. /*  
  16. $location = file("http://maps.google.com/maps/geo?q=48+Spa+Road,+Melksham,+UK&  
  17. output=csv&key=ABQIAAAAvp3__HwvT3VkixIIbsW0axQuKI_6t1bH2P0vCI_Q8jfpn8qdNBQMnnelj  
  18. xh9czilkau_bYSCXteS_A");  
  19. */  
  20. # Following line is hard coded for demo  
  21. $location [ 0 ]= "200,8,51.369318,-2.133457" ;  
  22. list ( $stat , $acc , $north , $east ) = explode ( "," , $location [ 0 ]); 
  23.  
  24. ?> 
  25.  
  26. <html>  
  27. <head>  
  28. <title>Well House Manor, Melksham</title>  
  29. <script src="http://maps.google.com/maps?file=api&amp;v=2&amp;  
  30. key=ABQIAAAAvp3__HwvT3VkixIIbsW0axQuKI_6t1bH2P0vCI_Q8jfpn8qdNBQMnneljxh9czilkau_  
  31. bYSCXteS_A"  
  32. type="text/javascript教程"></script>  
  33. <script type="text/javascript"
  34.  
  35. //<![CDATA[ 
  36.  
  37. function load() {  
  38. if (GBrowserIsCompatible()) {  
  39. var map = new GMap2(document.getElementById("map"));  
  40. map.setCenter(new GLatLng(51.36905, -2.1335), <?= $scale ?> );  
  41. map.setMapType( <?= $maptype ?> );  
  42. var manor = new GLatLng( <?= $north ?> , <?= $east ?> );  
  43. map.addOverlay(new GMarker(manor)); 
  44.  
  45. }  
  46.  
  47. //]]>  
  48. </script>  
  49. </head>  
  50. <body onLoad="load()" onUnload="GUnload()">  
  51. <table><tr valign=top><td>  
  52. <h1>Well House Manor, Melksham</h1>  
  53. <img src=http://filesimg.111cn.net/2010/03/20100525003348607.jpg><br>  
  54. &bull; Business Hotel in Melksham<br>  
  55. &bull; All rooms fitted to superior standard<br>  
  56. &bull; Internet Access throughout<br>  
  57. &bull; Plenty of parking and close to town centre<br><br>  
  58. <a href=http://www.wellhousemanor.co.uk>Well House  
  59. Manor website</a><hr>  
  60. <form method=POST> Change to  
  61. <select name=scale>  
  62. <option value=7 <?= selected ( $scale , 7 ) ?> >Overview</option>  
  63. <option value=10 <?= selected ( $scale , 10 ) ?> >County</option>  
  64. <option value=13 <?= selected ( $scale , 13 ) ?> >Town</option>  
  65. <option value=16 <?= selected ( $scale , 16 ) ?> >Street</option>  
  66. <option value=19 <?= selected ( $scale , 19 ) ?> >Building</option>  
  67. </select>  
  68. <select name=maptype>  
  69. <option value=G_NORMAL_MAP <?= selected ( $maptype , "G_NORMAL_MAP" ) ?> >  
  70. Normal map</option>  
  71. <option value=G_SATELLITE_MAP <?= selected ( $maptype , "G_SATELLITE_MAP" ) ?> >  
  72. Satellite data</option>  
  73. <option value=G_HYBRID_MAP <?= selected ( $maptype , "G_HYBRID_MAP" ) ?> > //开源代码phpfensi.com 
  74. Hybrid</option>  
  75. </select>  
  76. <input type=submit value="go!"></form><br>  
  77. This is a sample PHP page with Google Maps<br>  
  78. teach you how to write pages like this</a><br>  
  79. Date - <?= date ( "F, jS l Y" ) ?> <br> 
  80.  
  81. </td><td>  
  82. <div id="map" style="width: 450px; height: 550px"</div>  
  83. </td></tr></table>  
  84. </body>  
  85. </html>

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论