Skip to content

Commit 21f34bf

Browse files
authoredFeb 25, 2025··
fix: slow intersections with interface + extends (#228)
1 parent 8c01571 commit 21f34bf

File tree

1 file changed

+19
-11
lines changed

1 file changed

+19
-11
lines changed
 

‎src/types.ts

+19-11
Original file line numberDiff line numberDiff line change
@@ -199,19 +199,27 @@ export type IAzureMapLifecycleEvent = {
199199
[property in IAzureMapLayerLifecycleEvents]: (e: atlas.layer.Layer) => void
200200
}
201201

202+
export interface IAzureLayerStatefulProviderOptions
203+
extends SymbolLayerOptions,
204+
HeatMapLayerOptions,
205+
ImageLayerOptions,
206+
LineLayerOptions,
207+
PolygonExtrusionLayerOptions,
208+
PolygonLayerOptions,
209+
TileLayerOptions,
210+
BubbleLayerOptions,
211+
LayerOptions {
212+
opacity: HeatMapLayerOptions['opacity'] &
213+
ImageLayerOptions['opacity'] &
214+
TileLayerOptions['opacity']
215+
color: HeatMapLayerOptions['color'] & BubbleLayerOptions['color']
216+
radius: HeatMapLayerOptions['radius'] & BubbleLayerOptions['radius']
217+
fillOpacity: PolygonExtrusionLayerOptions['fillOpacity'] & PolygonLayerOptions['fillOpacity']
218+
}
219+
202220
export type IAzureLayerStatefulProviderProps = {
203221
id?: string
204-
options?:
205-
| (SymbolLayerOptions &
206-
HeatMapLayerOptions &
207-
ImageLayerOptions &
208-
LineLayerOptions &
209-
PolygonExtrusionLayerOptions &
210-
PolygonLayerOptions &
211-
TileLayerOptions &
212-
BubbleLayerOptions &
213-
LayerOptions)
214-
| Options
222+
options?: IAzureLayerStatefulProviderOptions | Options
215223
type: IAzureMapLayerType
216224
events?: IAzureMapLayerEvent | any
217225
onCreateCustomLayer?: (dataSourceRef: DataSourceType, mapRef: MapType | null) => atlas.layer.Layer

0 commit comments

Comments
 (0)
Please sign in to comment.