2021-09-21 02:10:42 +02:00
|
|
|
import FeatureSource from "../../Logic/FeatureSource/FeatureSource";
|
|
|
|
import {UIEventSource} from "../../Logic/UIEventSource";
|
|
|
|
|
|
|
|
export interface ShowDataLayerOptions {
|
|
|
|
features: FeatureSource,
|
|
|
|
leafletMap: UIEventSource<L.Map>,
|
|
|
|
enablePopups?: true | boolean,
|
|
|
|
zoomToFeatures?: false | boolean,
|
2021-09-26 17:36:39 +02:00
|
|
|
doShowLayer?: UIEventSource<boolean>
|
2021-09-21 02:10:42 +02:00
|
|
|
}
|