@foodmarketmaker/mapag 0.0.39 → 0.0.41
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/fesm2022/foodmarketmaker-mapag.mjs +2492 -1889
- package/fesm2022/foodmarketmaker-mapag.mjs.map +1 -1
- package/index.d.ts +4 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1323,6 +1323,7 @@ declare class NaicsMapper implements MapboxMapper {
|
|
|
1323
1323
|
private ICON_LAYER_ID;
|
|
1324
1324
|
private HEATMAP_LAYER_ID;
|
|
1325
1325
|
settings: _angular_core.WritableSignal<NaicsMapperSettings>;
|
|
1326
|
+
current: Popup | null;
|
|
1326
1327
|
constructor(settings?: Partial<NaicsMapperSettings>, id?: string | undefined);
|
|
1327
1328
|
update(settings: Partial<NaicsMapperSettings>): void;
|
|
1328
1329
|
private _update;
|
|
@@ -1337,7 +1338,7 @@ declare class NaicsMapper implements MapboxMapper {
|
|
|
1337
1338
|
private getFipsFilter;
|
|
1338
1339
|
filter(map: Map$1): void;
|
|
1339
1340
|
getSettings(): NaicsMapperSettings;
|
|
1340
|
-
onClick: (e: MapLayerMouseEvent$1 | MapLayerTouchEvent$1) => void
|
|
1341
|
+
onClick: (e: MapLayerMouseEvent$1 | MapLayerTouchEvent$1) => Promise<void>;
|
|
1341
1342
|
renderPopup(f: Feature): Promise<string | undefined>;
|
|
1342
1343
|
}
|
|
1343
1344
|
type NaicsCode = Partial<NaicsMapperSettings> & {
|
|
@@ -1978,6 +1979,7 @@ declare class PointDataMapper implements MapboxMapper {
|
|
|
1978
1979
|
private CLUSTER_LABEL_LAYER_ID;
|
|
1979
1980
|
settings: _angular_core.WritableSignal<PointDataMapperSettings>;
|
|
1980
1981
|
svc: _angular_core.WritableSignal<MapService | null>;
|
|
1982
|
+
current: Popup | null;
|
|
1981
1983
|
constructor(popupRenderer?: PopupRenderer, settings?: Partial<PointDataMapperSettings>);
|
|
1982
1984
|
update(settings: Partial<PointDataMapperSettings>): void;
|
|
1983
1985
|
private _update;
|
|
@@ -1994,7 +1996,7 @@ declare class PointDataMapper implements MapboxMapper {
|
|
|
1994
1996
|
private createCircleLayers;
|
|
1995
1997
|
private createHeatLayers;
|
|
1996
1998
|
private createIconLayers;
|
|
1997
|
-
onClick: (e: MapLayerMouseEvent$1 | MapLayerTouchEvent$1) => void
|
|
1999
|
+
onClick: (e: MapLayerMouseEvent$1 | MapLayerTouchEvent$1) => Promise<void>;
|
|
1998
2000
|
getSettings(): PointDataMapperSettings;
|
|
1999
2001
|
}
|
|
2000
2002
|
interface PointDataClusterProperties {
|