美文网首页
Cesium-Map

Cesium-Map

作者: zhuyx0304 | 来源:发表于2024-04-11 14:33 被阅读0次
    // 高德地图
          var options = {
            style: 'img', // style: img、elec、cva
            crs: 'WGS84', // 使用84坐标系,默认为:GCJ02
            minimumLevel: 1,
            maximumLevel: 16
          }
          viewer.imageryLayers.add(new Cesium.ImageryLayer( new AmapImageryProvider(options)))
          // 百度地图
          var options = {
            style: 'normal', // style: img、vec、normal、dark
            crs: 'WGS84' // 使用84坐标系,默认为:BD09
          }
          viewer.imageryLayers.add(new Cesium.ImageryLayer( new BaiduImageryProvider(options)))
          // 天地图
          var options = {
            style: 'vec', //style: vec、cva、img、cia、ter 
            key:'', // 需去相关地图厂商申请
          }
          viewer.imageryLayers.add(new Cesium.ImageryLayer( new TdtImageryProvider(options)))
          // 腾讯地图
          var options = {
            style: 1 //style: img、1:经典
          }
          viewer.imageryLayers.add(new Cesium.ImageryLayer( new TencentImageryProvider(options)))
    

    相关文章

      网友评论

          本文标题:Cesium-Map

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