当前位置:Gxlcms > PHP教程 > php使用google地图接口开发应用的例子

php使用google地图接口开发应用的例子

时间:2021-07-01 10:21:17 帮助过:25人阅读

  1. function selected ( $param , $value ) {
  2. if ( $param == $value ) print "SELECTED" ;
  3. }
  4. # Collect any form data to control the display
  5. $scale = 10 ;
  6. $maptype = "G_NORMAL_MAP" ;
  7. if ( $_REQUEST [ scale ]) $scale = $_REQUEST [ scale ];
  8. if ( $_REQUEST [ maptype ]) $maptype = $_REQUEST [ maptype ];
  9. # Geocoding your location
  10. # Note - you would cache this in a file
  11. # The key is domain specific - your google maps教程 key
  12. /*
  13. $location = file("http://maps.google.com/maps/geo?q=48+Spa+Road,+Melksham,+UK&
  14. output=csv&key=ABQIAAAAvp3__HwvT3VkixIIbsW0axQuKI_6t1bH2P0vCI_Q8jfpn8qdNBQMnnelj
  15. xh9czilkau_bYSCXteS_A");
  16. */
  17. # Following line is hard coded for demo
  18. $location [ 0 ]= "200,8,51.369318,-2.133457" ;
  19. list ( $stat , $acc , $north , $east ) = explode ( "," , $location [ 0 ]);

html页面:

  1. php调用谷歌地图接口 - www.plcxue.com
  2. Well House Manor, Melksham


  3. ? Business Hotel in Melksham
  4. ? All rooms fitted to superior standard
  5. ? Internet Access throughout
  6. ? Plenty of parking and close to town centre

  7. Well House
  8. Manor website

  9. This is a sample PHP page with Google Maps
  10. teach you how to write pages like this
  11. Date -

人气教程排行