diff --git a/src/main/resources/static/img/synthesisQuery/tower.png b/src/main/resources/static/img/synthesisQuery/tower.png index 0c86bd6..036d157 100644 Binary files a/src/main/resources/static/img/synthesisQuery/tower.png and b/src/main/resources/static/img/synthesisQuery/tower.png differ diff --git a/src/main/resources/static/js/basic/lineManagement/child/setLonAndLat.js b/src/main/resources/static/js/basic/lineManagement/child/setLonAndLat.js index 510a37a..7909bbb 100644 --- a/src/main/resources/static/js/basic/lineManagement/child/setLonAndLat.js +++ b/src/main/resources/static/js/basic/lineManagement/child/setLonAndLat.js @@ -222,16 +222,16 @@ function initTowerLine(points) { var point = new BMapGL.Point(item.lon, item.lat); linePoints.push(point); // 添加到连线数组 // 创建点标记 - var icon = new BMapGL.Icon("../../../../img/synthesisQuery/tower.png", new BMapGL.Size(32, 32), { + var icon = new BMapGL.Icon("../../../../img/synthesisQuery/tower.png", new BMapGL.Size(30, 66), { // 图标定位点 - anchor: new BMapGL.Size(16, 30), + anchor: new BMapGL.Size(15, 66), }); var marker = new BMapGL.Marker(point, {icon: icon}); map.addOverlay(marker); // 创建标签 var label = new BMapGL.Label(item.towerName, { position: point, - offset: new BMapGL.Size(20, -40) + offset: new BMapGL.Size(20, -60) }); label.setStyle({ color: "#333",