@hestia-earth/ui-components 0.24.0-5 → 0.24.0-6
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/package.json
CHANGED
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
import { ISiteJSONLD, Site, IOrganisationJSONLD, Organisation } from '@hestia-earth/schema';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { HeNodeService, HeNodeStoreService } from '../../node';
|
|
5
|
-
import { IPolygonMap } from '../../common/maps-utils';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
6
|
type site = ISiteJSONLD | Site | IOrganisationJSONLD | Organisation;
|
|
8
7
|
export declare class SitesMapsComponent {
|
|
@@ -14,7 +13,6 @@ export declare class SitesMapsComponent {
|
|
|
14
13
|
private map?;
|
|
15
14
|
private _loadPolygons;
|
|
16
15
|
set loadPolygons(value: boolean);
|
|
17
|
-
protected termPolygons: import("@angular/core").WritableSignal<IPolygonMap[]>;
|
|
18
16
|
/**
|
|
19
17
|
* Display Site directly without using the node store.
|
|
20
18
|
*/
|
|
@@ -28,8 +26,10 @@ export declare class SitesMapsComponent {
|
|
|
28
26
|
private originalSites;
|
|
29
27
|
private nodes;
|
|
30
28
|
protected markers: import("@angular/core").Signal<import("../../common/maps-utils").IMarker[]>;
|
|
31
|
-
|
|
32
|
-
protected
|
|
29
|
+
private _sitePolygons;
|
|
30
|
+
protected sitePolygons: import("@angular/core").Signal<import("../../common/maps-utils").IPolygonMap[]>;
|
|
31
|
+
private _termPolygons;
|
|
32
|
+
protected termPolygons: import("@angular/core").Signal<import("../../common/maps-utils").IPolygonMap[]>;
|
|
33
33
|
protected showNoLocation: import("@angular/core").Signal<boolean>;
|
|
34
34
|
protected mapCenter: import("@angular/core").Signal<google.maps.LatLngLiteral | google.maps.LatLng>;
|
|
35
35
|
constructor(mapLoaded$: Observable<boolean>, nodeService: HeNodeService, nodeStoreService: HeNodeStoreService);
|