From 456c5f1a2e83ceb8ded28760abc6105a5279e328 Mon Sep 17 00:00:00 2001 From: zuoxiao <470321431@qq.com> Date: 星期一, 11 十一月 2024 11:38:42 +0800 Subject: [PATCH] 地图添加地图标注 --- app/src/main/assets/js/map.js | 16 +++++++++++----- 1 files changed, 11 insertions(+), 5 deletions(-) diff --git a/app/src/main/assets/js/map.js b/app/src/main/assets/js/map.js index 58b8398..130aa4b 100644 --- a/app/src/main/assets/js/map.js +++ b/app/src/main/assets/js/map.js @@ -24,12 +24,18 @@ }; // 鍒濆鍖栧湴鍥� function initMap() { + // 褰卞儚搴曞浘 var imageURL = "http://t0.tianditu.gov.cn/img_w/wmts?" + "SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=img&STYLE=default&TILEMATRIXSET=w&FORMAT=tiles" + "&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}&tk=d8beed89b43160a9a185e5aff431f85d"; //鍒涘缓鑷畾涔夊浘灞傚璞� - var lay = new T.TileLayer(imageURL, { minZoom: 1, maxZoom: 18 }); - var config = { layers: [lay] }; + //褰卞儚娉ㄨ锛堝湴鍥句笂鐨勫湴鍧�锛� + var imgURL2 ="http://t0.tianditu.gov.cn/cia_w/wmts?" +"SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&LAYER=cia&STYLE=default&TILEMATRIXSET=w&FORMAT=tiles" + + "&TILEMATRIX={z}&TILEROW={y}&TILECOL={x}" + + "&tk=d8beed89b43160a9a185e5aff431f85d"; + var lay = new T.TileLayer(imageURL, { minZoom: 6, maxZoom: 18 }); + var lay2 = new T.TileLayer(imgURL2, { minZoom: 6, maxZoom: 18 }); + var config = { layers: [lay,lay2] }; map = new T.Map("mapDiv", config); var scale = new T.Control.Scale(); //娣诲姞姣斾緥灏烘帶浠� @@ -134,21 +140,21 @@ // 鎵嬫満鑾峰彇鍒板畾浣嶅悗鏄剧ず瀹氫綅 function locationOverLay(lng, lag) { console.log("function銆嬨�嬨�嬨�嬨�媗ocationOverLay"); - map.centerAndZoom(new T.LngLat(lng, lag), 18); + map.centerAndZoom(new T.LngLat(lng, lag), map.getZoom()); let icon = new T.Icon({ iconUrl: locationIMGPath, iconSize: new T.Point(27, 27), iconAnchor: new T.Point(10, 25) }); - let marker = new T.Marker(new T.LngLat(lng, lag), { icon: icon }); map.addOverLay(marker); } //璁剧疆鍦板浘涓績鐐� - function setCenterAndZoom(lng, lat) { + function setCenterAndZoom(lng, lat,thiszoom) { + zoom=thiszoom; console.log("function銆嬨�嬨�嬨�嬨�媠etCenterAndZoom>>>>lng:" + lng + ",lat:" + lat); map.centerAndZoom(new T.LngLat(lng, lat), zoom); } -- Gitblit v1.8.0