|
@@ -468,7 +468,7 @@ export default {
|
|
|
map2DViewer.jlMap = L.esri
|
|
|
.tiledMapLayer({
|
|
|
tileSize: 512,
|
|
|
- url: systemConfig.imageryLayerSat2018s2.url,
|
|
|
+ url: systemConfig.imageryLayer.url,
|
|
|
})
|
|
|
.addTo(map2DViewer.map);
|
|
|
map2DViewer.jlControl = L.control
|
|
@@ -561,11 +561,6 @@ export default {
|
|
|
"+proj=tmerc +lat_0=0 +lon_0=121.2751921 +k=1 +x_0=0 +y_0=-3457147.81 +ellps=krass +units=m +no_defs",
|
|
|
{
|
|
|
resolutions: systemConfig.imageryLayer.resolutions,
|
|
|
- // resolutions: [
|
|
|
- // 132.2919312505292, 52.91677250021167, 26.458386250105836, 13.229193125052918, 5.291677250021167, 2.6458386250105836,
|
|
|
- // 1.3229193125052918, 0.5291677250021167, 0.26458386250105836, 0.13229193125052918
|
|
|
- // ],
|
|
|
-
|
|
|
origin: [-66000, 75000],
|
|
|
bounds: L.bounds([-65000, -76000], [75000, 72000]),
|
|
|
}
|
|
@@ -598,17 +593,17 @@ export default {
|
|
|
let layer = L.esri
|
|
|
.tiledMapLayer({
|
|
|
tileSize: 512,
|
|
|
- url: systemConfig.imageryLayer.url,
|
|
|
+ url: systemConfig.blueBlackMap.url,
|
|
|
})
|
|
|
.addTo(map2DViewer.map);
|
|
|
- map2DViewer.layers["imagery"] = layer;
|
|
|
+ map2DViewer.layers["darkmap"] = layer;
|
|
|
|
|
|
// 加载遥感影像sat-2022s1 -- 暂时代替宝石蓝底图
|
|
|
- let darkmap = L.esri.tiledMapLayer({
|
|
|
+ let imageryLayer = L.esri.tiledMapLayer({
|
|
|
tileSize: 512,
|
|
|
- url: systemConfig.blueBlackMap.url,
|
|
|
+ url: systemConfig.imageryLayer.url,
|
|
|
});
|
|
|
- map2DViewer.layers["darkmap"] = darkmap;
|
|
|
+ map2DViewer.layers["imagery"] = imageryLayer;
|
|
|
// 加载遥感影像sat-2018s2
|
|
|
let imageryLayer2 = L.esri.tiledMapLayer({
|
|
|
tileSize: 512,
|
|
@@ -1017,7 +1012,7 @@ export default {
|
|
|
position: absolute;
|
|
|
width: 100%;
|
|
|
height: calc(100% - 60px);
|
|
|
- background-color: #003452;
|
|
|
+ background-color: rgb(0,47,71);
|
|
|
z-index: 1;
|
|
|
top: 60px;
|
|
|
left: 0px;
|