BIGEMPA Js API示例中心
<!DOCTYPE html>charset='UTF-8'name='viewport' content='initial-scale=1,maximum-scale=1,user-scalable=no'href='http://www.bigemap.com:9000/bigemap.js/v2.1.0/bigemap.css' rel='stylesheet'src='http://www.bigemap.com:9000/bigemap.js/v2.1.0/bigemap.js'body { margin: 0; padding: 0; }#map { position: absolute; top: 0; bottom: 0; width: 100%; }航拍数据id='map'// 软件配置信息地址,软件安装完成之后使用本地地址,如:http://localhost:9000BM.Config.HTTP_URL = 'http://www.bigemap.com:9000';//创建地图var map = BM.map('map', null, { center: [23.039393450126127,113.48061370849608], zoom: 17, zoomControl: true,attributionControl:false });//实例化航拍的图var offline=BM.tileLayer('bigemap.773nfa3w');//实例化谷歌卫星地图var google_satellite=BM.tileLayer('bigemap.zhongkexingtu');//将两个图层添加在地图上面google_satellite.addTo(map);offline.addTo(map)