Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 19 additions & 11 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -199,19 +199,27 @@ export type IAzureMapLifecycleEvent = {
[property in IAzureMapLayerLifecycleEvents]: (e: atlas.layer.Layer) => void
}

export interface IAzureLayerStatefulProviderOptions
extends SymbolLayerOptions,
HeatMapLayerOptions,
ImageLayerOptions,
LineLayerOptions,
PolygonExtrusionLayerOptions,
PolygonLayerOptions,
TileLayerOptions,
BubbleLayerOptions,
LayerOptions {
opacity: HeatMapLayerOptions['opacity'] &
ImageLayerOptions['opacity'] &
TileLayerOptions['opacity']
color: HeatMapLayerOptions['color'] & BubbleLayerOptions['color']
radius: HeatMapLayerOptions['radius'] & BubbleLayerOptions['radius']
fillOpacity: PolygonExtrusionLayerOptions['fillOpacity'] & PolygonLayerOptions['fillOpacity']
}

export type IAzureLayerStatefulProviderProps = {
id?: string
options?:
| (SymbolLayerOptions &
HeatMapLayerOptions &
ImageLayerOptions &
LineLayerOptions &
PolygonExtrusionLayerOptions &
PolygonLayerOptions &
TileLayerOptions &
BubbleLayerOptions &
LayerOptions)
| Options
options?: IAzureLayerStatefulProviderOptions | Options
type: IAzureMapLayerType
events?: IAzureMapLayerEvent | any
onCreateCustomLayer?: (dataSourceRef: DataSourceType, mapRef: MapType | null) => atlas.layer.Layer
Expand Down
Loading