Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: slow intersections on IAzureLayerStatefulProviderProps type #228

Merged
merged 1 commit into from
Feb 25, 2025
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