Skip to content

Commit

Permalink
Add arcType property to CZML's polygon process
Browse files Browse the repository at this point in the history
  • Loading branch information
shehzan10 committed Feb 20, 2019
1 parent d0653e1 commit 0cbd2d3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions Source/DataSources/CzmlDataSource.js
Original file line number Diff line number Diff line change
Expand Up @@ -1771,6 +1771,7 @@ define([
processPacketData(Boolean, polygon, 'perPositionHeight', polygonData.perPositionHeight, interval, sourceUri, entityCollection);
processPacketData(Boolean, polygon, 'closeTop', polygonData.closeTop, interval, sourceUri, entityCollection);
processPacketData(Boolean, polygon, 'closeBottom', polygonData.closeBottom, interval, sourceUri, entityCollection);
processPacketData(ArcType, polygon, 'arcType', polygonData.arcType, interval, sourceUri, entityCollection);
processPacketData(ShadowMode, polygon, 'shadows', polygonData.shadows, interval, sourceUri, entityCollection);
processPacketData(DistanceDisplayCondition, polygon, 'distanceDisplayCondition', polygonData.distanceDisplayCondition, interval, sourceUri, entityCollection);
processPacketData(Number, polygon, 'zIndex', polygonData.zIndex, interval, sourceUri, entityCollection);
Expand Down
4 changes: 4 additions & 0 deletions Specs/Data/CZML/ValidationDocument.czml
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,7 @@
"perPositionHeight":true,
"closeTop":true,
"closeBottom":true,
"arcType":"GEODESIC",
"shadows":"CAST_ONLY",
"distanceDisplayCondition":{
"distanceDisplayCondition":[
Expand Down Expand Up @@ -6281,6 +6282,9 @@
"closeBottom":{
"reference":"Constant#polygon.closeBottom"
},
"arcType":{
"reference":"Constant#polygon.arcType"
},
"shadows":{
"reference":"Constant#polygon.shadows"
},
Expand Down

0 comments on commit 0cbd2d3

Please sign in to comment.