SimpleMarkerSceneSymbol QML Type

  • Esri.ArcGISRuntime
  • SimpleMarkerSceneSymbol
  • Uses a 3D marker symbol to symbolize graphics and features that have point or multipoint geometry. More...

    Import Statement: import Esri.ArcGISRuntime
    Since: Esri.ArcGISRuntime 100.0
    Inherits:

    MarkerSceneSymbol

    Properties

    • style : Enums.SimpleMarkerSceneSymbolStyle

    Signals

    Detailed Description

    Simple marker scene symbols display graphics and features (collectively referred to as geoelements) using predefined 3D markers such as Enums.SimpleMarkerSceneSymbolStyleCone, Enums.SimpleMarkerSceneSymbolStyleCube, and Enums.SimpleMarkerSceneSymbolStyleSphere.

    The shapes rendered are dependent on the style and dimensions (width, height, depth):

    • If the style is sphere (the default), and dimensions are different, then the shape rendered is an ellipsoid.
    • If the style is cube, and dimensions are different, then the shape rendered is a cuboid.
    • If the style is cone, and the width and depth are different, then the cone rendered has elliptic base.
    • If the style is cylinder, and the width and depth are different, then the cylinder rendered has elliptic ends.
    • If the style is diamond, and the width and depth are different, then the two halves of the diamond are connected by a rectangle (instead of the standard square).
    • If the style is a tetrahedron, and the width and depth are different, then the base is not an equilateral triangle.

    Example:

    Create a red SimpleMarkerSceneSymbol that is in the shape of a cone:

    SimpleMarkerSceneSymbol {
        style: Enums.SimpleMarkerSceneSymbolStyleCone
        color: "red"
        height: 75
        width: 75
        depth: 75
    }

    Note that SimpleMarkerSceneSymbol will not display using static rendering mode.

    See also JsonSerializable and Symbol.

    Property Documentation

    style : Enums.SimpleMarkerSceneSymbolStyle

    The SimpleMarkerSceneSymbolStyle of the symbol (i.e. cone, cube, cylinder, sphere etc).

    If not set, defaults to SimpleMarkerSceneSymbolStyleSphere

    The style of the simple scene marker symbol Enums.SimpleMarkerSceneSymbolStyle. Returns Enums.SimpleMarkerSceneSymbolStyleCone if an error occurs.


    Signal Documentation

    styleChanged()

    Emitted when the style property changes.

    Note: The corresponding handler is onStyleChanged.


    Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.