Symbol3D is the base class for all 3D symbols. It is used to render 2D Point, Polyline, and Polygon features in a FeatureLayer and 3D mesh features in a SceneLayer. All 3D symbols must be used in a SceneView instance; there is no support for 3D rendering in MapViews.
There are five types of 3D symbols. Four of them correspond with a different feature geometry type. The fifth, LabelSymbol3D, may be applied to any geometry type. See the table below to learn about which symbol types are supported for each geometry type.
Geometry type | Valid symbol types |
---|---|
Point | PointSymbol3D, LabelSymbol3D |
Polyline | LineSymbol3D, LabelSymbol3D |
Polygon | PolygonSymbol3D, LabelSymbol3D |
Mesh | MeshSymbol3D, LabelSymbol3D |
All 3D symbols have a symbolLayers property, which is an array of Symbol3DLayers that define the appearance of the symbol. All symbols must have at least one symbol layer added to the symbolLayers property. The Symbol3D object is a container that holds multiple symbol layers that determine the appearance of the symbol. One layer may be an outline, another the fill, etc. The relationship of symbol layers to symbol is similar to the relationship of operational layers to a Map. There are various types of symbol layers that may be used based on the symbol type and geometry of the features. See Symbol3DLayer to learn more about symbol layers.
Property Overview
Name | Type | Summary | |
---|---|---|---|
String | The name of the class. more details | more details | |
Object | The origin of the style from which the symbol was originally referenced. more details | more details | |
Collection | A Collection of Symbol3DLayer objects used to visualize the graphic or feature. more details | more details | |
String | The symbol type. more details | more details |
Property Details
declaredClassStringreadonly
The name of the class. The declared class name is formatted as
esri.folder.className
.styleOriginObjectreadonly
The origin of the style from which the symbol was originally referenced. A reference to the style origin can be either by styleName or by styleUrl (but not both). This information is part of the WebScene persistence model and may be used to understand where a symbol was originally sourced from. It does not affect actual appearance or rendering of the symbol.
symbolLayersCollection autocast
A Collection of Symbol3DLayer objects used to visualize the graphic or feature.
typeStringreadonly
The symbol type.
Possible values: simple-marker-symbol | picture-marker-symbol | simple-line-symbol | cartographic-line-symbol | simple-fill-symbol | picture-fill-symbol | text-symbol | shield-label-symbol | point-symbol-3d | line-symbol-3d | polygon-symbol-3d | mesh-symbol-3d | label-symbol-3d
Method Overview
Name | Return Type | Summary | |
---|---|---|---|
* | Creates a new instance of this class and initializes it with values from a JSON object generated from a product in the ArcGIS platform. more details | more details | |
Object | Converts an instance of this class to its ArcGIS Portal JSON representation. more details | more details |
Method Details
fromJSON(json){*}static
Creates a new instance of this class and initializes it with values from a JSON object generated from a product in the ArcGIS platform. The object passed into the input
json
parameter often comes from a response to a query operation in the REST API or a toJSON() method from another ArcGIS product. See the Using fromJSON() topic in the Guide for details and examples of when and how to use this function.Parameter:json ObjectA JSON representation of the instance in the ArcGIS format. See the ArcGIS REST API documentation for examples of the structure of various input JSON objects.
Returns:Type Description * Returns a new instance of this class. Converts an instance of this class to its ArcGIS Portal JSON representation. See the Using fromJSON() topic in the Guide for more information.
Returns:Type Description Object The ArcGIS Portal JSON representation of an instance of this class.