arcgis javascript api4.x加载天地图cgs2000坐标系

需求:arcgis javascript api4.x加载天地图cgs2000坐标系

效果:

示例代码:

html 复制代码
<!DOCTYPE html>
<html lang="en">
 
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>加载天地图</title>
    <link
    rel="stylesheet"
    href="https://js.arcgis.com/4.27/esri/themes/light/main.css"
  />
  <script src="https://js.arcgis.com/4.27/"></script>
 
    <style>
        html,
        body,
        #map {
            width: 100%;
            height: 100%;
            padding: 0;
            margin: 0;
        }
    </style>
    <script>
        require(["esri/Map",
            "esri/views/MapView",
            "esri/layers/WebTileLayer",
            "esri/layers/support/TileInfo" 
     
        ], function (Map, MapView, WebTileLayer, TileInfo) {
            
            let tileInfo = new TileInfo({
            dpi: 90.71428571427429,
            rows: 256,
            cols: 256,
            compressionQuality: 0,
            origin: {
                x: -180,
                y: 90
            },
            spatialReference: {
                wkid: 4490
            },
            lods: [
                { level: 0, levelValue: 1, resolution: 0.703125, scale: 295497593.05875003 },
                { level: 1, levelValue: 2, resolution: 0.3515625, scale: 147748796.52937502 },
                { level: 2, levelValue: 3, resolution: 0.17578125, scale: 73874398.264687508 },
                { level: 3, levelValue: 4, resolution: 0.087890625, scale: 36937199.132343754 },
                { level: 4, levelValue: 5, resolution: 0.0439453125, scale: 18468599.566171877 },
                { level: 5, levelValue: 6, resolution: 0.02197265625, scale: 9234299.7830859385 },
                { level: 6, levelValue: 7, resolution: 0.010986328125, scale: 4617149.8915429693 },
                { level: 7, levelValue: 8, resolution: 0.0054931640625, scale: 2308574.9457714846 },
                { level: 8, levelValue: 9, resolution: 0.00274658203125, scale: 1154287.4728857423 },
                { level: 9, levelValue: 10, resolution: 0.001373291015625, scale: 577143.73644287116 },
                { level: 10, levelValue: 11, resolution: 0.0006866455078125, scale: 288571.86822143558 },
                { level: 11, levelValue: 12, resolution: 0.00034332275390625, scale: 144285.93411071779 },
                { level: 12, levelValue: 13, resolution: 0.000171661376953125, scale: 72142.967055358895 },
                { level: 13, levelValue: 14, resolution: 8.58306884765625e-005, scale: 36071.483527679447 },
                { level: 14, levelValue: 15, resolution: 4.291534423828125e-005, scale: 18035.741763839724 },
                { level: 15, levelValue: 16, resolution: 2.1457672119140625e-005, scale: 9017.8708819198619 },
                { level: 16, levelValue: 17, resolution: 1.0728836059570313e-005, scale: 4508.9354409599309 },
                { level: 17, levelValue: 18, resolution: 5.3644180297851563e-006, scale: 2254.4677204799655 },
                { level: 18, levelValue: 19, resolution: 2.68220901489257815e-006, scale: 1127.23386023998275 },
                { level: 19, levelValue: 20, resolution: 1.341104507446289075e-006, scale: 563.616930119991375 }
            ]
        });
 
 
 
         /*天地图-影像(CGCS2000)*/
 
         var img_tiandituLayer = new WebTileLayer("http://{subDomain}.tianditu.gov.cn/img_c/wmts?SERVICE=WMTS&VERSION=1.0.0&REQUEST=GetTile&LAYER=img&STYLE=default&FORMAT=tiles&TILEMATRIXSET=c&TILEMATRIX={level}&TILEROW={row}&TILECOL={col}&tk=ac0daf56728bbb77d9514ba3df69bcd3", {
            subDomains: ["t0","t1","t2","t3","t4","t5","t6","t7"],
            title: "天地图-影像",
            tileInfo: tileInfo,
            spatialReference: {
                wkid: 4490
            },
            fullExtent:{
                xmin: -180,
                xmax: 180,
                ymin: -90,
                ymax: 90,
                spatialReference: 4490
            }
        });
 
        var cia_tiandituLayer = new WebTileLayer("http://{subDomain}.tianditu.gov.cn/cia_c/wmts?SERVICE=WMTS&VERSION=1.0.0&REQUEST=GetTile&LAYER=cia&STYLE=default&FORMAT=tiles&TILEMATRIXSET=c&TILEMATRIX={level}&TILEROW={row}&TILECOL={col}&tk=ac0daf56728bbb77d9514ba3df69bcd3", {
            subDomains: ["t0","t1","t2","t3","t4","t5","t6","t7"],
            title: "天地图-影像注记",
            tileInfo: tileInfo,
            spatialReference: {
                wkid: 4490
            },
            fullExtent:{
                xmin: -180,
                xmax: 180,
                ymin: -90,
                ymax: 90,
                spatialReference: 4490
            }
        });
  
 
            var map = new Map({
              
                basemap: {
                    baseLayers: [
                img_tiandituLayer
            ],
            referenceLayers: [
                cia_tiandituLayer
            ],
                },
                
            });
   
            var view = new MapView({
                container: "map",
                map: map,                         
 
            });       
            
        })
    </script>
</head>
 
<body>
    <div id="map"></div>
</body>
 
</html>
 
</html>
相关推荐
CryptoPP1 小时前
使用 KLineChart 这个轻量级的前端图表库
服务器·开发语言·前端·windows·后端·golang
18你磊哥1 小时前
chromedriver.exe的使用和python基本处理
开发语言·python
小坏讲微服务1 小时前
Spring Cloud Alibaba 整合 Scala 教程完整使用
java·开发语言·分布式·spring cloud·sentinel·scala·后端开发
Kiri霧1 小时前
Scala 循环控制:掌握 while 和 for 循环
大数据·开发语言·scala
闲人编程2 小时前
Python的抽象基类(ABC):定义接口契约的艺术
开发语言·python·接口·抽象类·基类·abc·codecapsule
qq_172805592 小时前
Go 语言结构型设计模式深度解析
开发语言·设计模式·golang
lkbhua莱克瓦242 小时前
集合进阶8——Stream流
java·开发语言·笔记·github·stream流·学习方法·集合
骑自行车的码农2 小时前
🍂 React DOM树的构建原理和算法
javascript·算法·react.js
北极糊的狐2 小时前
Vue3 中父子组件传参是组件通信的核心场景,需遵循「父传子靠 Props,子传父靠自定义事件」的原则,以下是资料总结
前端·javascript·vue.js
20岁30年经验的码农2 小时前
Java Elasticsearch 实战指南
java·开发语言·elasticsearch