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://ua.bigemap.com:30081/bmsdk/bigemap.js/v2.1.0/bigemap.css" rel="stylesheet"/>
<!--
JS地址請使用:
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>地圖信息的監聽</title>
</head>
<body>
<div id="position">
<div id="zoom">
當前級別 : 2
</div>
<div id="move">
當前中心點: 緯度:0.00000,經度:0.00000
</div>
</div>
<div id='map'></div>
<script>
// 軟件配置信息地址,軟件安裝完成之后使用本地地址,如:http://localhost:9000
BM.Config.HTTP_URL = "http://ua.bigemap.com:30081/bmsdk/"
// 在ID為map的元素中實例化一個地圖,并設置地圖的ID號,ID號程序自動生成,無需手動配置 ,中心點,默認的級別和顯示級別控件
var map = BM.map('map', 'bigemap.dc-tian-w-satellite', {center: [0, 0], zoom: 2, zoomControl: true,attributionControl:false });
//添加 一個移動結束的事件,事件列表請參見 http://www.bt68f.cn/offlinemaps/api/#map-moveend
map.on('moveend',function(e){
var c=this.getCenter();
document.getElementById('move').innerHTML='當前中心點: 緯度:'+c.lat.toFixed(5)+',經度:'+c.lng.toFixed(5);
});
//添加一個縮放事件
map.on('zoomend',function(e){
document.getElementById('zoom').innerHTML='當前級別 : '+this.getZoom();
});
</script>
</body>
</html>