Skip to content

CompositeSymbolType

CompositeSymbolType = object

Defined in: src/ExpoArcgis.types.ts:2047

A composite symbol that overlays multiple symbols stacked on top of each other. Useful for combining a marker with a label, or layering two markers for a ring effect. Mirrors the native CompositeSymbol.

{ type: 'composite', symbols: [
{ type: 'simple-marker', color: '#fff', size: 18 },
{ type: 'simple-marker', color: '#e63946', size: 10 },
] }

symbols: Symbol[]

Defined in: src/ExpoArcgis.types.ts:2050

The symbols to stack, drawn in order (first = bottom, last = top).


type: "composite"

Defined in: src/ExpoArcgis.types.ts:2048