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地址請(qǐng)?jiān)诎惭b軟件了替換成本地的地址 CSS地址請(qǐng)使用: http://localhost:9000/bigemap.js/v2.1.0/bigemap.css 軟件下載地址 http://www.dng9999.cn/reader/download/detail201802017.html --> <link href="http://ua.bigemap.com:30081/bmsdk/bigemap.js/v2.1.0/bigemap.css" rel="stylesheet"/> <!-- JS地址請(qǐng)使用: http://localhost:9000/bigemap.js/v2.1.0/bigemap.js --> <script src="http://ua.bigemap.com:30081/bmsdk/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)前級(jí)別 : 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://ua.bigemap.com:30081/bmsdk/" // 在ID為map的元素中實(shí)例化一個(gè)地圖,并設(shè)置地圖的ID號(hào),ID號(hào)程序自動(dòng)生成,無需手動(dòng)配置 ,中心點(diǎn),默認(rèn)的級(jí)別和顯示級(jí)別控件 var map = BM.map('map', 'bigemap.dc-satellite', { crs: BM.CRS.EPSG4326, center: [0, 0], zoom: 2, zoomControl: true,attributionControl:false }); //添加 一個(gè)移動(dòng)結(jié)束的事件,事件列表請(qǐng)參見 http://www.dng9999.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); }); //添加一個(gè)縮放事件 map.on('zoomend',function(e){ document.getElementById('zoom').innerHTML='當(dāng)前級(jí)別 : '+this.getZoom(); }); </script> </body> </html>