PointSymbol3D is used to render features with Point geometry in a 3D SceneView.
Referenced by: Symbol3D
Properties
Property | Details |
---|---|
callout | Callout configuration for a symbol. |
styleOrigin | The origin of the style from which the symbol was originally referenced. |
symbolLayers[] | A Collection of Symbol3DLayer objects used to visualize the graphic or feature. Array of items of the following types: |
type | Specifies the type of symbol used Valid value of this property PointSymbol3D |
verticalOffset | Shifts the symbol along the vertical world axis by a given length. |
Point Symbol 3D Example
{
"type": "PointSymbol3D",
"symbolLayers": [
{
"width": 30000,
"height": 160000,
"resource": {
"primitive": "cylinder"
},
"type": "Object",
"material": {
"color": [
0,
255,
0
]
}
}
]
}
Icon Point Symbol with verticalOffset and leader line callout Example
{
"type": "PointSymbol3D",
"symbolLayers": [
{
"size": 16,
"resource": {
"primitive": "circle"
},
"type": "Icon",
"material": {
"color": [
0,
255,
0
]
}
}
],
"callout": {
"type": "line",
"color": [
255,
255,
255
],
"size": 0.75,
"border": {
"color": [
50,
50,
50
]
}
},
"verticalOffset": {
"screenLength": 100,
"maxWorldLength": 600,
"minWorldLength": 10
}
}