美文网首页
加载geoserver的wmts服务图层

加载geoserver的wmts服务图层

作者: xueyueshuai | 来源:发表于2023-08-01 10:10 被阅读0次
    let wmtsLayer = new Cesium.WebMapTileServiceImageryProvider({
      url: 'http://43.143.213.90:8083/geoserver/gwc/service/wmts?' +
        'layer=one:country' +
        '&style=' +
        '&tilematrixset={TileMatrixSet}' +
        '&Service=WMTS' +
        '&Request=GetTile' +
        '&Version=1.0.0' +
        '&Format=image/png' +
        '&TileMatrix={TileMatrix}' +
        '&TileCol={TileCol}' +
        '&TileRow={TileRow}',
    
      style: '',
      layer: 'one:country',
      tilingScheme: new Cesium.GeographicTilingScheme(), //应于EPSG:4326切片方案,是一个简单的地理投影方案
      tileMatrixSetID: 'EPSG:4326',
      tileMatrixLabels: ['EPSG:4326:0', 'EPSG:4326:1', 'EPSG:4326:2', 'EPSG:4326:3', 'EPSG:4326:4', 'EPSG:4326:5', 'EPSG:4326:6', 'EPSG:4326:7', 'EPSG:4326:8', 'EPSG:4326:9', 'EPSG:4326:10', 'EPSG:4326:11', 'EPSG:4326:12', 'EPSG:4326:13', 'EPSG:4326:14', 'EPSG:4326:15', 'EPSG:4326:16', 'EPSG:4326:17', 'EPSG:4326:18', 'EPSG:4326:19', 'EPSG:4326:20', 'EPSG:4326:21'],
      maximumLevel: 18,
    });
    this.viewer.imageryLayers.addImageryProvider(wmtsLayer)
    

    相关文章

      网友评论

          本文标题:加载geoserver的wmts服务图层

          本文链接:https://www.haomeiwen.com/subject/klhdpdtx.html