@foodmarketmaker/mapag 0.0.9 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts
CHANGED
|
@@ -301,7 +301,6 @@ declare class MapComponent implements AfterViewInit, OnDestroy {
|
|
|
301
301
|
constructor();
|
|
302
302
|
ngAfterViewInit(): void;
|
|
303
303
|
ngOnDestroy(): void;
|
|
304
|
-
layerExists(map: Map$1, layerId: string): void;
|
|
305
304
|
private initializeMap;
|
|
306
305
|
saveImage(): void;
|
|
307
306
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MapComponent, never>;
|
|
@@ -631,9 +630,9 @@ declare class HardinessMapper implements MapboxMapper {
|
|
|
631
630
|
over: _angular_core.WritableSignal<geojson.Feature<geojson.Geometry, geojson.GeoJsonProperties> | null>;
|
|
632
631
|
settings: _angular_core.WritableSignal<HardinessSettings>;
|
|
633
632
|
onStyleChange(map: Map$1, svc: MapService): Promise<void>;
|
|
634
|
-
constructor();
|
|
633
|
+
constructor(settings?: Partial<HardinessSettings>);
|
|
635
634
|
create(): Promise<void>;
|
|
636
|
-
update(newSettings: HardinessSettings): void;
|
|
635
|
+
update(newSettings: Partial<HardinessSettings>): void;
|
|
637
636
|
private _update;
|
|
638
637
|
onReady(map: Map$1, svc: MapService): Promise<void>;
|
|
639
638
|
reset(): void;
|
|
@@ -729,8 +728,8 @@ declare class WatershedMapper implements MapboxMapper {
|
|
|
729
728
|
current: Popup | null;
|
|
730
729
|
currentFeatureID: string | number | undefined;
|
|
731
730
|
over: _angular_core.WritableSignal<geojson.Feature<geojson.Geometry, geojson.GeoJsonProperties> | null>;
|
|
732
|
-
constructor();
|
|
733
|
-
update(settings: WatershedSettings): void;
|
|
731
|
+
constructor(settings?: Partial<WatershedSettings>);
|
|
732
|
+
update(settings: Partial<WatershedSettings>): void;
|
|
734
733
|
private _update;
|
|
735
734
|
private create;
|
|
736
735
|
onReady(map: Map$1, svc: MapService): Promise<void>;
|