加载geoserver的wmts服务图层

2023-08-01  本文已影响0人  xueyueshuai
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)
上一篇 下一篇

猜你喜欢

热点阅读