test.html 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="utf-8">
  5. <title>地图展示</title>
  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  7. <meta name="viewport" content="initial-scale=1.0, user-scalable=no">
  8. <meta http-equiv="X-UA-Compatible" content="IE=Edge">
  9. <style>
  10. body,
  11. html,
  12. #container {
  13. width: 800px;
  14. height: 600px;
  15. margin: 0;
  16. font-family: "微软雅黑";
  17. }
  18. </style>
  19. <script src="//api.map.baidu.com/api?type=webgl&v=1.0&ak=E4Y9cdBjAvDM6DjGcOmBA4v2GcEXAWvG"></script>
  20. </head>
  21. <body>
  22. <div id="container"></div>
  23. <div style="width: 400px">
  24. 经度值:<input type="text" id="longitude" readonly="readonly" size="20" value="118.34964" style="width:150px;" />
  25. 纬度值:<input type="text" id="latitude" readonly="readonly" size="20" value="35.088303" style="width:150px;" />
  26. </div>
  27. <div id="r-result" style="width: 400px">
  28. 请输入:<input type="text" id="suggestId" size="20" value="百度" style="width:150px;" />&nbsp;&nbsp;注:输入获取位置后需点击选着精确位置获取经纬度
  29. </div>
  30. <div id="searchResultPanel" style="border:1px solid #C0C0C0;width:150px;height:auto; display:none;"></div>
  31. </body>
  32. </html>
  33. <script>
  34. function G(id) {
  35. return document.getElementById(id);
  36. }
  37. var map = new BMapGL.Map('container'); // 创建Map实例
  38. map.centerAndZoom(new BMapGL.Point(118.34964, 35.088303), 14); // 初始化地图,设置中心点坐标和地图级别
  39. map.enableScrollWheelZoom(true); // 开启鼠标滚轮缩放
  40. var marker = new BMapGL.Marker(new BMapGL.Point(118.34964, 35.088303));
  41. map.addOverlay(marker);
  42. map.addEventListener('click', function (e) {
  43. map.clearOverlays();
  44. G('longitude').value = e.latlng.lng.toFixed(6);
  45. G('latitude').value = e.latlng.lat.toFixed(6);
  46. var marker = new BMapGL.Marker(new BMapGL.Point(e.latlng.lng, e.latlng.lat));
  47. map.addOverlay(marker);
  48. });
  49. var ac = new BMapGL.Autocomplete( //建立一个自动完成的对象
  50. {"input" : "suggestId"
  51. ,"location" : map
  52. });
  53. ac.addEventListener("onhighlight", function(e) { //鼠标放在下拉列表上的事件
  54. var str = "";
  55. var _value = e.fromitem.value;
  56. var value = "";
  57. if (e.fromitem.index > -1) {
  58. value = _value.province + _value.city + _value.district + _value.street + _value.business;
  59. }
  60. str = "FromItem<br />index = " + e.fromitem.index + "<br />value = " + value;
  61. value = "";
  62. if (e.toitem.index > -1) {
  63. _value = e.toitem.value;
  64. value = _value.province + _value.city + _value.district + _value.street + _value.business;
  65. }
  66. str += "<br />ToItem<br />index = " + e.toitem.index + "<br />value = " + value;
  67. G("searchResultPanel").innerHTML = str;
  68. });
  69. var myValue;
  70. ac.addEventListener("onconfirm", function(e) { //鼠标点击下拉列表后的事件
  71. var _value = e.item.value;
  72. myValue = _value.province + _value.city + _value.district + _value.street + _value.business;
  73. G("searchResultPanel").innerHTML ="onconfirm<br />index = " + e.item.index + "<br />myValue = " + myValue;
  74. setPlace();
  75. });
  76. function setPlace(){
  77. map.clearOverlays(); //清除地图上所有覆盖物
  78. function myFun(){
  79. var pp = local.getResults().getPoi(0).point; //获取第一个智能搜索的结果
  80. map.centerAndZoom(pp, 18);
  81. map.addOverlay(new BMapGL.Marker(pp)); //添加标注
  82. }
  83. var local = new BMapGL.LocalSearch(map, { //智能搜索
  84. onSearchComplete: myFun
  85. });
  86. local.search(myValue);
  87. }
  88. </script>