当前位置:首页 > PHP教程 > php应用 > 列表

php使用google地图应用实例

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-05 13:23:30 浏览: 评论:0 

这篇文章主要介绍了php使用google地图应用方法,分析了google地图接口调用技巧及具体用法,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了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 ]); 

html页面如下:

  1. <html>  
  2. <head>  
  3. <title>Well House Manor, Melksham</title>  
  4. <script src="http://maps.google.com/maps?file=api&amp;v=2&amp;  
  5. key=ABQIAAAAvp3__HwvT3VkixIIbsW0axQuKI_6t1bH2P0vCI_Q8jfpn8qdNBQMnneljxh9czilkau_  
  6. bYSCXteS_A"  
  7. type="text/javascript教程"></script>  
  8. <script type="text/javascript"> 
  9.  
  10. //<![CDATA[ 
  11.  
  12. function load() {  
  13. if (GBrowserIsCompatible()) {  
  14. var map = new GMap2(document.getElementById("map"));  
  15. map.setCenter(new GLatLng(51.36905, -2.1335), <?= $scale ?> );  
  16. map.setMapType( <?= $maptype ?> );  
  17. var manor = new GLatLng( <?= $north ?> , <?= $east ?> );  
  18. map.addOverlay(new GMarker(manor)); 
  19.  
  20.  
  21. } 
  22.  
  23. //]]>  
  24. </script>  
  25. </head>  
  26. <body onLoad="load()" onUnload="GUnload()">  
  27. <table><tr valign=top><td>  
  28. <h1>Well House Manor, Melksham</h1>  
  29. <img src=/get_pic/2010/03/20100525003348607.jpg><br>  
  30. &bull; Business Hotel in Melksham<br>  
  31. &bull; All rooms fitted to superior standard<br>  
  32. &bull; Internet Access throughout<br>  
  33. &bull; Plenty of parking and close to town centre<br><br>  
  34. <a href=http://www.wellhousemanor.co.uk>Well House  
  35. Manor website</a><hr>  
  36. <form method=POST> Change to  
  37. <select name=scale>  
  38. <option value=7 <?= selected ( $scale , 7 ) ?> >Overview</option>  
  39. <option value=10 <?= selected ( $scale , 10 ) ?> >County</option>  
  40. <option value=13 <?= selected ( $scale , 13 ) ?> >Town</option>  
  41. <option value=16 <?= selected ( $scale , 16 ) ?> >Street</option>  
  42. <option value=19 <?= selected ( $scale , 19 ) ?> >Building</option>  
  43. </select>  
  44. <select name=maptype>  
  45. <option value=G_NORMAL_MAP <?= selected ( $maptype , "G_NORMAL_MAP" ) ?> >  
  46. Normal map</option>  
  47. <option value=G_SATELLITE_MAP <?= selected ( $maptype , "G_SATELLITE_MAP" ) ?> >  
  48. Satellite data</option>  
  49. <option value=G_HYBRID_MAP <?= selected ( $maptype , "G_HYBRID_MAP" ) ?> > 
  50. Hybrid</option>  
  51. </select>  
  52. <input type=submit value="go!"></form><br>  
  53. This is a sample PHP page with Google Maps<br>  
  54. teach you how to write pages like this</a><br>  
  55. Date - <?= date ( "F, jS l Y" ) ?> <br> 
  56.  
  57. </td><td>  
  58. <div id="map" style="width: 450px; height: 550px"</div>  
  59. </td></tr></table>  
  60. </body>  
  61. </html>

Tags: php使用google地图

分享到: