BIGEMPA Js API示例中心
<!DOCTYPE html> <html> <head> <meta charset='UTF-8' /> <meta name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no' /> <!-- 以下CSS地址請在安裝軟件了替換成本地的地址 CSS地址請使用: http://localhost:9000/bigemap.js/v2.1.0/bigemap.css 軟件下載地址 http://www.bt68f.cn/reader/download/detail201802017.html --> <link href='http://www.bt68f.cn:9000/bigemap.js/v2.1.0/bigemap.css' rel='stylesheet' /> <!-- JS地址請使用: http://localhost:9000/bigemap.js/v2.1.0/bigemap.js --> <script src='http://www.bt68f.cn:9000/bigemap.js/v2.1.0/bigemap.js'></script> <style> body { margin: 0; padding: 0; } #map { position: absolute; top: 0px; bottom: 0; width: 100%; } #position{ background-color: #eee; padding: 5px; position: absolute;top:50px;right: 20px; z-index: 9; width:320px; border-radius:5px; text-align:left; } </style> <title>地圖信息的監(jiān)聽</title> </head> <body> <div id="position"> <div id="zoom"> 當(dāng)前級別 : 2 </div> <div id="move"> 當(dāng)前中心點(diǎn): 緯度:0.00000,經(jīng)度:0.00000 </div> </div> <div id='map'></div> <script> // 軟件配置信息地址,軟件安裝完成之后使用本地地址,如:http://localhost:9000 BM.Config.HTTP_URL = 'http://www.bt68f.cn:9000'; // 在ID為map的元素中實(shí)例化一個地圖,并設(shè)置地圖的ID號,ID號程序自動生成,無需手動配置 ,中心點(diǎn),默認(rèn)的級別和顯示級別控件 var map = BM.map('map', 'bigemap.zhongkexingtu', { center: [0, 0], zoom: 2, zoomControl: true,attributionControl:false }); //添加 一個移動結(jié)束的事件,事件列表請參見 http://www.bt68f.cn/offlinemaps/api/#map-moveend map.on('moveend',function(e){ var c=this.getCenter(); document.getElementById('move').innerHTML='當(dāng)前中心點(diǎn): 緯度:'+c.lat.toFixed(5)+',經(jīng)度:'+c.lng.toFixed(5); }); //添加一個縮放事件 map.on('zoomend',function(e){ document.getElementById('zoom').innerHTML='當(dāng)前級別 : '+this.getZoom(); }); </script> </body> </html>