Skip to content

Commit f27cc9c

Browse files
committed
fix: ArcGIS换源
1 parent 4c76b8f commit f27cc9c

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

packages/renderer/src/utils/TileLayerCollection/param.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ export default function getParams() {
5454
},
5555
},
5656
GEOQ: {
57-
Colour: {
58-
url: 'https://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineCommunity/MapServer/tile/{z}/{y}/{x}',
57+
Satellite: {
58+
url: 'https://services.arcgisonline.com/arcgis/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}',
5959
},
60-
Gray: {
61-
url: 'https://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineStreetGray/MapServer/tile/{z}/{y}/{x}',
60+
Street: {
61+
url: 'https://services.arcgisonline.com/arcgis/rest/services/World_Street_Map/MapServer/tile/{z}/{y}/{x}',
6262
},
63-
Midnightblue: {
64-
url: 'https://map.geoq.cn/ArcGIS/rest/services/ChinaOnlineStreetPurplishBlue/MapServer/tile/{z}/{y}/{x}',
63+
Physical: {
64+
url: 'https://services.arcgisonline.com/arcgis/rest/services/World_Physical_Map/MapServer/tile/{z}/{y}/{x}',
6565
},
6666
},
6767
Google: {

packages/renderer/src/utils/layerList.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -253,27 +253,27 @@ const mapList = [
253253
value: 'Geoq',
254254
children: [
255255
{
256-
label: '彩色',
257-
value: 'Colour',
256+
label: 'World_Imagery',
257+
value: 'Satellite',
258258
prejection: 'EPSG:3857',
259259
exteral: {
260-
attribution: 'ArcGIS-彩色',
260+
attribution: 'ArcGIS-卫星地图',
261261
},
262262
},
263263
{
264-
label: '灰度',
265-
value: 'Gray',
264+
label: 'World_Street_Map',
265+
value: 'Street',
266266
prejection: 'EPSG:3857',
267267
exteral: {
268-
attribution: 'ArcGIS-灰度',
268+
attribution: 'ArcGIS-街景地图',
269269
},
270270
},
271271
{
272-
label: '午夜蓝',
273-
value: 'Midnightblue',
272+
label: 'World_Physical_Map',
273+
value: 'Physical',
274274
prejection: 'EPSG:3857',
275275
exteral: {
276-
attribution: 'ArcGIS-午夜蓝',
276+
attribution: 'ArcGIS-物理',
277277
},
278278
},
279279
],

0 commit comments

Comments
 (0)