Cesium 加载天地图并显示地名信息
要加载带有地名信息的天地图,需要使用天地图提供的 WMTS 服务,并将带有地名信息的瓦片层添加到 Cesium 的场景中。
以下是一个示例代码:
// 创建 Cesium Viewer
var viewer = new Cesium.Viewer('cesiumContainer');
// 创建天地图的 WMTS 服务
var tdt_wmts = new Cesium.WebMapTileServiceImageryProvider({
url: 'http://t{s}.tianditu.com/DataServer?T=vec_c&x={TileCol}&y={TileRow}&l={TileMatrix}',
layer: 'tdt_vec_c',
style: 'default',
format: 'tiles',
tileMatrixSetID: 'c',
maximumLevel: 18,
subdomains: ['0', '1', '2', '3', '4', '5', '6', '7'],
credit: new Cesium.Credit('天地图全球矢量地图服务'),
tilingScheme: new Cesium.WebMercatorTilingScheme(),
show: false
});
// 创建带有地名信息的瓦片层
var tdt_annotation = new Cesium.WebMapTileServiceImageryProvider({
url: 'http://t{s}.tianditu.com/DataServer?T=cva_c&x={TileCol}&y={TileRow}&l={TileMatrix}',
layer: 'tdt_cva_c',
style: 'default',
format: 'tiles',
tileMatrixSetID: 'c',
maximumLevel: 18,
subdomains: ['0', '1', '2', '3', '4', '5', '6', '7'],
credit: new Cesium.Credit('天地图全球矢量注记服务'),
tilingScheme: new Cesium.WebMercatorTilingScheme(),
show: false
});
// 将 WMTS 服务添加到 Cesium Viewer 中
viewer.imageryLayers.addImageryProvider(tdt_wmts);
viewer.imageryLayers.addImageryProvider(tdt_annotation);
在上述代码中,我们首先创建了一个 Cesium Viewer,并创建了天地图的 WMTS 服务。然后,我们创建了带有地名信息的瓦片层,并将它们添加到 Cesium Viewer 的 imageryLayers 中。
最后,我们可以通过设置 show 属性来控制是否显示这些瓦片层。
这样,就可以加载带有地名信息的天地图了。
原文地址: https://www.cveoy.top/t/topic/opzh 著作权归作者所有。请勿转载和采集!