美文网首页
cesium 图层构建的那些事 (九)

cesium 图层构建的那些事 (九)

作者: haibalai | 来源:发表于2022-07-25 09:22 被阅读0次

我们来构建 cesium 单图片图层和arcgis图层

```javascript

import {ImageryLayer} from "./ImageryLayer";

//arcgis珊格服务

export class ArcGisImageryLayer extends ImageryLayer{

public imageryProvider:any;//影像提供者

constructor(option:any={}){

super(option.name);

//如果是字符串(定是url),直接变成对象

if(typeof option !== "object"){

option = {url:option};

}

option = {

enablePickFeatures: false,

...option

}

this.type = "ArcGisImageryLayer";//重写类型

this.imageryProvider = new Cesium.ArcGisMapServerImageryProvider(option);

 更多参考 https://xiaozhuanlan.com/topic/8314925706

相关文章

网友评论

      本文标题:cesium 图层构建的那些事 (九)

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