A simple renderer based on a single symbol. More...
Import Statement: | import Esri.ArcGISRuntime 100.15 |
Since: | Esri.ArcGISRuntime 100.0 |
Inherits: |
Properties
- description : string
- label : string
- symbol : Symbol
Signals
Detailed Description
Simple renderers symbolize all graphics in a graphics overlay or features in a feature layer according to a given scheme. Simple renderers use a simple scheme, meaning the same symbol is used for all graphics and features, regardless of their attribute values.
This QML type supports the following default properties. A default property may be declared inside another declared object without being assigned explicitly to a property.
Type | Default Property |
---|---|
Symbol | symbol |
RendererSceneProperties | sceneProperties |
Example:
Apply a SimpleRenderer to a GraphicsOverlay:
GraphicsOverlay { id: graphicsOverlay SimpleRenderer { SimpleMarkerSymbol { style: Enums.SimpleMarkerSymbolStyleCircle color: "#0000ff" size: 16.0 } } }
See also JsonSerializable.
Property Documentation
[default] symbol : Symbol |
The symbol for the renderer.
This symbol will be applied to all graphics or features that are in the layer that this renderer is applied to.
Signal Documentation
Emitted when the description property changes.
Note: The corresponding handler is onDescriptionChanged
.
Emitted when the label property changes.
Note: The corresponding handler is onLabelChanged
.
Emitted when the symbol property changes.
Note: The corresponding handler is onSymbolChanged
.