【Cesium 基礎(chǔ)】Entity API

相關(guān)示例

  1. Cesium 提供繪制Entity的API接口如下,詳情參看[1][2]
//api使用如下:添加一個(gè)點(diǎn)
let option= {
    position: Cesium.Cartesian3.fromDegrees(
          this.defaultPoint[0],
          this.defaultPoint[1]
        ),
        point: {
          pixelSize: 10,
          color: Cesium.Color.YELLOW
        }
      }
this.viewer.entities.add(option)

更多entity使用

//  BillboardGraphics 
 billboard : {
            image : '../images/Cesium_Logo_overlay.png', // default: undefined
            show : true, // default
            pixelOffset : new Cesium.Cartesian2(0, -50), // default: (0, 0)
            eyeOffset : new Cesium.Cartesian3(0.0, 0.0, 0.0), // default
            horizontalOrigin : Cesium.HorizontalOrigin.CENTER, // default
            verticalOrigin : Cesium.VerticalOrigin.BOTTOM, // default: CENTER
            scale : 2.0, // default: 1.0
            color : Cesium.Color.LIME, // default: WHITE
            rotation : Cesium.Math.PI_OVER_FOUR, // default: 0.0
            alignedAxis : Cesium.Cartesian3.ZERO, // default
            width : 100, // default: undefined
            height : 25 // default: undefined
        }


//  BoxGraphics 
  box: {
          dimensions: new Cesium.Cartesian3(400000.0, 300000.0, 500000.0),
          material: Cesium.Color.BLUE
        }
//  CorridorGraphics 
 corridor: {
          positions: Cesium.Cartesian3.fromDegreesArray([
            100.0,
            40.0,
            105.0,
            40.0,
            105.0,
            35.0
          ]),
          width: 200000.0,
          material: Cesium.Color.RED.withAlpha(0.5),
          outline: true,
          outlineColor: Cesium.Color.RED
        }
//  CylinderGraphics 
 cylinder: {
          length: 400000.0,
          topRadius: 200000.0,
          bottomRadius: 200000.0,
          material: Cesium.Color.GREEN.withAlpha(0.5),
          outline: true,
          outlineColor: Cesium.Color.DARK_GREEN
        }
//  EllipseGraphics 
 // circle
  ellipse: {
          semiMinorAxis: 300000.0,
          semiMajorAxis: 300000.0,
          height: 200000.0,
          material: Cesium.Color.GREEN
        }
  // ellipse 
  ellipse: {
          semiMinorAxis: 250000.0,
          semiMajorAxis: 400000.0,
          material: Cesium.Color.RED.withAlpha(0.5),
          outline: true,
          outlineColor: Cesium.Color.RED
        }

//  EllipsoidGraphics 
 ellipsoid: {
          radii: new Cesium.Cartesian3(200000.0, 200000.0, 300000.0),
          material: Cesium.Color.BLUE
        }
//  LabelGraphics 
 label: {
          id: "my label",
          text: "?? ???? ?????? \n ?????? ?????? ????"
        }
//  ModelGraphics 
 model: {
          uri: "/data/gltf/Spider.gltf",
          minimumPixelSize: 28,
          maximumScale: 200
        }
//  PathGraphics 
  
//  PolygonGraphics 
  polygon: {
          hierarchy: Cesium.Cartesian3.fromDegreesArray([
            115.0,
            37.0,
            115.0,
            32.0,
            107.0,
            33.0,
            102.0,
            31.0,
            102.0,
            35.0
          ]),
          material: Cesium.Color.RED
        }
//  PolylineGraphics  
polyline: {
          positions: Cesium.Cartesian3.fromDegreesArray([75, 35, 125, 35]),
          width: 5,
          material: Cesium.Color.RED
        }
//  PolylineVolumeGraphics 
polylineVolume: {
          positions: Cesium.Cartesian3.fromDegreesArray([
            85.0,
            32.0,
            85.0,
            36.0,
            89.0,
            36.0
          ]),
          shape: this.computeCircle(60000.0),
          material: Cesium.Color.RED
        }
//  RectangleGraphics 
 rectangle: {
          coordinates: Cesium.Rectangle.fromDegrees(80.0, 20.0, 110.0, 25.0),
          material: Cesium.Color.RED.withAlpha(0.5),
          outline: true,
          outlineColor: Cesium.Color.RED
        }
//  WallGraphics
 wall: {
          positions: Cesium.Cartesian3.fromDegreesArrayHeights([
            107.0,
            43.0,
            100000.0,
            97.0,
            43.0,
            100000.0,
            97.0,
            40.0,
            100000.0,
            107.0,
            40.0,
            100000.0,
            107.0,
            43.0,
            100000.0
          ]),
          material: Cesium.Color.GREEN
        }
  1. Entity中Property使用,參看[3][4]

SampledProperty

// 
 //修改boxEntity 高度
 var property = new Cesium.SampledProperty(Cesium.Cartesian3);
      property.addSample(
        this.starttime,
        new Cesium.Cartesian3(100000.0, 100000.0, 200000.0)
      );
      property.addSample(
        this.stoptime,
        new Cesium.Cartesian3(400000.0, 300000.0, 700000.0)
      );
 blueBox.box.dimensions = property;

 //修改顏色
 var colorProperty = new Cesium.SampledProperty(Cesium.Color);
      colorProperty.addSample(this.starttime, new Cesium.Color(0, 1, 0));
      colorProperty.addSample(this.stoptime, new Cesium.Color(0, 0, 1));
  blueBox.box.material = new Cesium.ColorMaterialProperty(
        colorProperty
      );

SampledPositionProperty 修改位置

 
 var property = new Cesium.SampledPositionProperty();

      property.addSample(
        this.starttime,
        Cesium.Cartesian3.fromDegrees(
          this.defaultPoint[0],
          this.defaultPoint[1],
          300000.0
        )
      );

      property.addSample(
        this.stoptime,
        Cesium.Cartesian3.fromDegrees(
          this.defaultPoint[0] + 5,
          this.defaultPoint[1] + 5,
          300000.0
        )
      ); 
      blueBox.position = property;

CompositeProperty 多屬性組合

  var sampledProperty = new Cesium.SampledProperty(Cesium.Cartesian3);
      sampledProperty.addSample(
        Cesium.JulianDate.fromIso8601("2019-03-01T00:00:00.00Z"),
        new Cesium.Cartesian3(400000.0, 300000.0, 200000.0)
      );

      sampledProperty.addSample(
        Cesium.JulianDate.fromIso8601("2019-03-02T00:00:00.00Z"),
        new Cesium.Cartesian3(400000.0, 300000.0, 400000.0)
      );
      var ticProperty = new Cesium.TimeIntervalCollectionProperty();
      ticProperty.intervals.addInterval(
        Cesium.TimeInterval.fromIso8601({
          iso8601: "2019-03-02T00:00:00.00Z/2019-03-02T06:00:00.00Z",
          isStartIncluded: true,
          isStopIncluded: false,
          data: new Cesium.Cartesian3(400000.0, 300000.0, 400000.0)
        })
      );
      ticProperty.intervals.addInterval(
        Cesium.TimeInterval.fromIso8601({
          iso8601: "2019-03-02T06:00:00.00Z/2019-03-04T12:00:00.00Z",
          isStartIncluded: true,
          isStopIncluded: false,
          data: new Cesium.Cartesian3(400000.0, 300000.0, 500000.0)
        })
      );
      ticProperty.intervals.addInterval(
        Cesium.TimeInterval.fromIso8601({
          iso8601: "2019-03-04T12:00:00.00Z/2019-03-04T18:00:00.00Z",
          isStartIncluded: true,
          isStopIncluded: false,
          data: new Cesium.Cartesian3(400000.0, 300000.0, 600000.0)
        })
      );
      ticProperty.intervals.addInterval(
        Cesium.TimeInterval.fromIso8601({
          iso8601: "2019-03-04T18:00:00.00Z/2019-03-05T23:00:00.00Z",
          isStartIncluded: true,
          isStopIncluded: true,
          data: new Cesium.Cartesian3(400000.0, 300000.0, 700000.0)
        })
      );
      var compositeProperty = new Cesium.CompositeProperty();
      compositeProperty.intervals.addInterval(
        Cesium.TimeInterval.fromIso8601({
          iso8601: "2019-03-01T00:00:00.00Z/2019-03-02T00:00:00.00Z",
          data: sampledProperty
        })
      );
      compositeProperty.intervals.addInterval(
        Cesium.TimeInterval.fromIso8601({
          iso8601: "2019-03-02T00:00:00.00Z/2019-03-05T00:00:00.00Z",
          isStartIncluded: false,
          isStopIncluded: false,
          data: ticProperty
        })
      ); 
      blueBox.box.dimensions = compositeProperty;


參考資料
[1]https://cesiumjs.org/Cesium/Build/Documentation/Entity.html?classFilter=entity
[2]http://blog.sina.com.cn/s/blog_15e866bbe0102xqsx.html
[3]https://zhuanlan.zhihu.com/p/50534090
[4]http://cesium.xin/wordpress/archives/108.html


更多內(nèi)容谈息,歡迎關(guān)注公眾號

seeling_GIS

?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市钙姊,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌,老刑警劉巖脚祟,帶你破解...
    沈念sama閱讀 206,723評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件绍在,死亡現(xiàn)場離奇詭異,居然都是意外死亡斗锭,警方通過查閱死者的電腦和手機(jī)地淀,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,485評論 2 382
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來岖是,“玉大人帮毁,你說我怎么就攤上這事〔虺牛” “怎么了烈疚?”我有些...
    開封第一講書人閱讀 152,998評論 0 344
  • 文/不壞的土叔 我叫張陵,是天一觀的道長聪轿。 經(jīng)常有香客問我胞得,道長,這世上最難降的妖魔是什么屹电? 我笑而不...
    開封第一講書人閱讀 55,323評論 1 279
  • 正文 為了忘掉前任阶剑,我火速辦了婚禮,結(jié)果婚禮上危号,老公的妹妹穿的比我還像新娘牧愁。我一直安慰自己,他們只是感情好外莲,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,355評論 5 374
  • 文/花漫 我一把揭開白布猪半。 她就那樣靜靜地躺著,像睡著了一般偷线。 火紅的嫁衣襯著肌膚如雪磨确。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,079評論 1 285
  • 那天声邦,我揣著相機(jī)與錄音乏奥,去河邊找鬼。 笑死亥曹,一個(gè)胖子當(dāng)著我的面吹牛邓了,可吹牛的內(nèi)容都是我干的恨诱。 我是一名探鬼主播,決...
    沈念sama閱讀 38,389評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼骗炉,長吁一口氣:“原來是場噩夢啊……” “哼照宝!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起句葵,我...
    開封第一講書人閱讀 37,019評論 0 259
  • 序言:老撾萬榮一對情侶失蹤厕鹃,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后乍丈,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體剂碴,經(jīng)...
    沈念sama閱讀 43,519評論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,971評論 2 325
  • 正文 我和宋清朗相戀三年诗赌,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片秸弛。...
    茶點(diǎn)故事閱讀 38,100評論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡铭若,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出递览,到底是詐尸還是另有隱情叼屠,我是刑警寧澤,帶...
    沈念sama閱讀 33,738評論 4 324
  • 正文 年R本政府宣布绞铃,位于F島的核電站镜雨,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏儿捧。R本人自食惡果不足惜荚坞,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,293評論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望菲盾。 院中可真熱鬧颓影,春花似錦、人聲如沸懒鉴。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,289評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽临谱。三九已至璃俗,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間悉默,已是汗流浹背城豁。 一陣腳步聲響...
    開封第一講書人閱讀 31,517評論 1 262
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留抄课,地道東北人钮蛛。 一個(gè)月前我還...
    沈念sama閱讀 45,547評論 2 354
  • 正文 我出身青樓鞭缭,卻偏偏與公主長得像,于是被迫代替她去往敵國和親魏颓。 傳聞我的和親對象是個(gè)殘疾皇子岭辣,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,834評論 2 345

推薦閱讀更多精彩內(nèi)容

  • 在此特此聲明:一下所有鏈接均來自互聯(lián)網(wǎng),在此記錄下我的查閱學(xué)習(xí)歷程甸饱,感謝各位原創(chuàng)作者的無私奉獻(xiàn) 沦童! 技術(shù)一點(diǎn)一點(diǎn)積...
  • 1.綜合類 綜合類地址 前端知識體系http://www.cnblogs.com/sb19871023/p/389...
    Gaizka閱讀 248評論 0 0
  • # Awesome Python [![Awesome](https://cdn.rawgit.com/sindr...
    emily_007閱讀 2,202評論 0 3
  • 昨天晚上吉祥臥非常的舒服偷遗,我也非常的喜歡,可能是因?yàn)椴涣?xí)慣所以還是會(huì)經(jīng)常的翻來覆去驼壶,不過整體還好氏豌。 睡到了十點(diǎn)多,...
    蕭璉閱讀 173評論 0 1
  • 我纪铺!陌小胖!不減肥了碟渺! 自從去過南京以后鲜锚,我就愛上了各種豬蹄,尤其愛烤豬蹄苫拍,天上人間芜繁,唯愛和美食不可辜負(fù)!二師兄绒极,...
    解憂閑時(shí)光閱讀 551評論 10 12