arcmap为啥打不开天地图历史卫星图
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了arcmap为啥打不开天地图历史卫星图相关的知识,希望对你有一定的参考价值。
参考技术A ArcMap加载天地图1、打开目录(可以从右边直接选择目录打开,或者点击左上角窗口——目录)
2、点击GIS服务器——添加WMTS服务器
3、在URL项添加刚刚复制的地址,单击加号添加参数及key值。后单击获取图层,正常显示应如下图所示。
(注意:需要在复制地址的"wmts"前手动输入"esri/"),如下图所示
(注意:复制粘贴时可能会有多余的空字符也会导致报错)
4、单击确定后,在右侧选中刚刚生成的“在线地图服务……”,点击连接。
5、将生成的图层(我这里是vec)拖到左侧内容列表。最终效果图如下:
Echats卫星图
const data1 = [] const data2 = [] const data3 = [] const data4 = [] for (let i = 0; i < 20; i++) { data1.push([parseInt(Math.random() * 5), parseInt(Math.random() * 360)]) data2.push([parseInt(Math.random() * 10), parseInt(Math.random() * 360)]) data3.push([parseInt(Math.random() * 15), parseInt(Math.random() * 360)]) data4.push([parseInt(Math.random() * 20), parseInt(Math.random() * 360)]) } option = { legend: { data: [‘GPS(G)‘, ‘BDS(S)‘, ‘DLONASS‘, ‘SBAS‘], top: 8, right: 0, icon: ‘path://M0 512C0 229.234759 229.234759 0 512 0s512 229.234759 512 512-229.234759 512-512 512S0 794.765241 0 512z m419.310345 194.630621a35.310345 35.310345 0 0 0 49.399172 1.271172l335.518897-311.931586a35.310345 35.310345 0 0 0-48.075035-51.729655l-309.124413 289.544827-145.125518-149.645241a35.310345 35.310345 0 1 0-50.688 49.169655l168.112552 173.320828z‘ }, polar: { center: [‘50%‘, ‘55%‘], radius: ‘78%‘ }, angleAxis: { type: ‘value‘, interval: 90 }, radiusAxis: { axisAngle: 0, splitLine: { lineStyle: { type: ‘dashed‘ } }, axisLabel: { } }, dataZoom: [ { type: ‘slider‘, radiusAxisIndex: 0, bottom: 0, left: 0, right: 5, start: 20, end: 80, height: 10 }, { type: ‘inside‘, radiusAxisIndex: 0, start: 20, end: 80 } ], tooltip: {}, series: [{ coordinateSystem: ‘polar‘, angleAxisIndex: 0, radiusAxisIndex: 0, name: ‘GPS(G)‘, type: ‘scatter‘, symbolSize: 30, itemStyle: { color: ‘#6882F9‘, opacity: 1 }, data: data1, label: { show: true, formatter: function (params) { return params.dataIndex } } }, { coordinateSystem: ‘polar‘, angleAxisIndex: 0, radiusAxisIndex: 0, name: ‘BDS(S)‘, type: ‘scatter‘, data: data2, itemStyle: { color: ‘#00C5C8‘, opacity: 1 }, symbolSize: 30, label: { show: true, formatter: function (params) { return params.dataIndex } } }, { coordinateSystem: ‘polar‘, angleAxisIndex: 0, radiusAxisIndex: 0, name: ‘DLONASS‘, type: ‘scatter‘, symbolSize: 30, itemStyle: { color: ‘#31C66F‘, opacity: 1 }, data: data3, label: { show: true, formatter: function (params) { return params.dataIndex } } }, { coordinateSystem: ‘polar‘, angleAxisIndex: 0, radiusAxisIndex: 0, name: ‘SBAS‘, type: ‘scatter‘, symbolSize: 30, data: data4, itemStyle: { color: ‘#FFA10C‘, opacity: 1 }, label: { show: true, formatter: function (params) { return params.dataIndex } } }] };
以上是关于arcmap为啥打不开天地图历史卫星图的主要内容,如果未能解决你的问题,请参考以下文章