php google地图应用实例代码

2022 年 3 月 10 日1550

  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://http://www.zjjv.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://http://www.zjjv.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://http://www.zjjv.com///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://http://www.zjjv.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>

【免责声明】本站内容转载自互联网,其相关言论仅代表作者个人观点绝非权威,不代表本站立场。如您发现内容存在版权问题,请提交相关链接至邮箱:bqsm@foxmail.com,我们将及时予以处理。

0 0