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"/>
<link href="http://www.bt68f.cn/Public/css/button.min.css" rel="stylesheet">
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<!--
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>
html, body, #map {
margin: 0;
padding: 0;
height: 100%;
width: 100%
}
#info {
width: 340px;
position: absolute;
top: 100px;
left: 50%;
z-index: 10;
margin-left: -170px;
color: #155724;
background-color: #d4edda;
padding: .75rem 1.25rem;
margin-bottom: 1rem;
border: 1px solid transparent;
border-radius: .25rem;
font-size: 14px;
}
li{
list-style: none;
display: flex;
}
.tips{
position: absolute;
top: 30px;
left: 50%;
transform: translate(-50%,0);
background: white;
padding: 10px;
color: red;
}
</style>
</head>
<body>
<div id='map'></div>
<div class="tips">點擊地圖 獲取對應的信息</div>
<div id="info">
</div>
<script type="text/javascript">// 軟件配置信息地址,軟件安裝完成之后使用本地地址,如:http://localhost:9000
BM.Config.HTTP_URL = "http://ua.bigemap.com:30081/bmsdk/"
// 在ID為map的元素中實例化一個地圖,并設置地圖的ID號為 bigemap.baidu-map,ID號程序自動生成,無需手動配置,并設置地圖的投影為百度地圖 ,中心點,默認的級別和顯示級別控件
var map = BM.map('map', 'bigemap.dc-tian-w-satellite', {
center: [30, 104],
zoom: 3,
attributionControl: false,
zoomControl: true
});
map.on("click", e => {
console.log(e.latlng)
axiosUrl(`${e.latlng.lng},${e.latlng.lat}`)
})
var infoDom = document.getElementById("info")
function axiosUrl(latlng) {
var infoarr = []
var strs = ""
$.get(`http://demo.bigemap.com/app/api/location?point=${latlng}`).then(res => {
res = JSON.parse(res)
res.results.forEach((v,i) => {
strs+=v.name
if(i != res.results.length-1){
strs+="--"
}
})
document.getElementById("info").innerText = strs
})
}
</script>
</body>
</html>