File tree 1 file changed +19
-11
lines changed
1 file changed +19
-11
lines changed Original file line number Diff line number Diff line change @@ -199,19 +199,27 @@ export type IAzureMapLifecycleEvent = {
199
199
[ property in IAzureMapLayerLifecycleEvents ] : ( e : atlas . layer . Layer ) => void
200
200
}
201
201
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
+
202
220
export type IAzureLayerStatefulProviderProps = {
203
221
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
215
223
type : IAzureMapLayerType
216
224
events ?: IAzureMapLayerEvent | any
217
225
onCreateCustomLayer ?: ( dataSourceRef : DataSourceType , mapRef : MapType | null ) => atlas . layer . Layer
You can’t perform that action at this time.
0 commit comments