You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

44 lines
1.7 KiB

  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  4. <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
  5. <style type="text/css">
  6. body, html,#allmap {width: 100%;height: 100%;overflow: hidden;margin:0;font-family:"微软雅黑";}
  7. </style>
  8. <script type="text/javascript" src="http://api.map.baidu.com/api?v=2.0&ak=lbnOVuOdm1XmZLkI38UKuvSw3DyHUltq"></script>
  9. <title>浏览器定位</title>
  10. </head>
  11. <body>
  12. <div id="allmap"></div>
  13. </body>
  14. </html>
  15. <script type="text/javascript">
  16. // 百度地图API功能
  17. var map = new BMap.Map("allmap");
  18. var point = new BMap.Point(116.331398,39.897445);
  19. map.centerAndZoom(point,12);
  20. var geolocation = new BMap.Geolocation();
  21. geolocation.getCurrentPosition(function(r){
  22. if(this.getStatus() == BMAP_STATUS_SUCCESS){
  23. var mk = new BMap.Marker(r.point);
  24. map.addOverlay(mk);
  25. map.panTo(r.point);
  26. //alert('您的位置:'+r.point.lng+','+r.point.lat);
  27. }
  28. else {
  29. alert('failed'+this.getStatus());
  30. }
  31. },{enableHighAccuracy: true})
  32. //关于状态码
  33. //BMAP_STATUS_SUCCESS 检索成功。对应数值“0”。
  34. //BMAP_STATUS_CITY_LIST 城市列表。对应数值“1”。
  35. //BMAP_STATUS_UNKNOWN_LOCATION 位置结果未知。对应数值“2”。
  36. //BMAP_STATUS_UNKNOWN_ROUTE 导航结果未知。对应数值“3”。
  37. //BMAP_STATUS_INVALID_KEY 非法密钥。对应数值“4”。
  38. //BMAP_STATUS_INVALID_REQUEST 非法请求。对应数值“5”。
  39. //BMAP_STATUS_PERMISSION_DENIED 没有权限。对应数值“6”。(自 1.1 新增)
  40. //BMAP_STATUS_SERVICE_UNAVAILABLE 服务不可用。对应数值“7”。(自 1.1 新增)
  41. //BMAP_STATUS_TIMEOUT 超时。对应数值“8”。(自 1.1 新增)
  42. </script>