@mappedin/events 6.10.0-beta.0 → 6.11.0-beta.0
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/lib/esm/index.d.ts +19 -1
- package/lib/esm/index.js +1 -1
- package/package.json +2 -2
package/lib/esm/index.d.ts
CHANGED
|
@@ -5081,7 +5081,7 @@ declare class Door extends DetailedMapData<EntranceFeature> implements IGeoJSOND
|
|
|
5081
5081
|
*/
|
|
5082
5082
|
destroy(): void;
|
|
5083
5083
|
}
|
|
5084
|
-
type TSpaceType = "room" | "hallway" | "exterior" | "void" | "gate";
|
|
5084
|
+
type TSpaceType = "room" | "hallway" | "exterior" | "void" | "gate" | "otb";
|
|
5085
5085
|
declare class Space extends DetailedMapData<SpaceFeature> implements IGeoJSONData, IFocusable, IAnchorable {
|
|
5086
5086
|
#private;
|
|
5087
5087
|
/**
|
|
@@ -5720,6 +5720,15 @@ declare class Floor extends BaseMapData implements IFocusable, IGeoJSONData {
|
|
|
5720
5720
|
* @returns {Space[]} An array of Space objects on this floor.
|
|
5721
5721
|
*/
|
|
5722
5722
|
get spaces(): Space[];
|
|
5723
|
+
/**
|
|
5724
|
+
* Gets the spaces that are open to below on this floor.
|
|
5725
|
+
* These are spaces that create ceiling cutouts when viewed from floors above.
|
|
5726
|
+
*
|
|
5727
|
+
* @internal
|
|
5728
|
+
*
|
|
5729
|
+
* @returns {Space[]} An array of Space objects that are open to below.
|
|
5730
|
+
*/
|
|
5731
|
+
get spacesOpenToBelow(): Space[];
|
|
5723
5732
|
/**
|
|
5724
5733
|
* Gets the underlying GeoJSON Feature representation of this Space.
|
|
5725
5734
|
*/
|
|
@@ -6603,6 +6612,10 @@ type TFindPreferredLanguageInVenueOptions = {
|
|
|
6603
6612
|
* */
|
|
6604
6613
|
fallbackToNavigatorLanguage?: boolean;
|
|
6605
6614
|
};
|
|
6615
|
+
interface FloorVoids {
|
|
6616
|
+
/** Void polygons extracted from holes in the footprint geometry */
|
|
6617
|
+
voids: FeatureCollection<Polygon, any>;
|
|
6618
|
+
}
|
|
6606
6619
|
declare class MapDataInternal extends PubSub<{
|
|
6607
6620
|
"language-change": {
|
|
6608
6621
|
code: string;
|
|
@@ -6687,6 +6700,11 @@ declare class MapDataInternal extends PubSub<{
|
|
|
6687
6700
|
mvfPoisByFloorId: MapDataRecords["mvfPoisByFloorId"];
|
|
6688
6701
|
mvfEntrancesByFloorId: MapDataRecords["mvfEntrancesByFloorId"];
|
|
6689
6702
|
mvfAnnotationsByFloorId: MapDataRecords["mvfAnnotationsByFloorId"];
|
|
6703
|
+
/**
|
|
6704
|
+
* Map of floor ID to void data extracted from footprint holes.
|
|
6705
|
+
* @internal
|
|
6706
|
+
*/
|
|
6707
|
+
voidsByFloorId: Record<string, FloorVoids>;
|
|
6690
6708
|
localePacksUrls: LocalePackUrls;
|
|
6691
6709
|
currentLanguage?: Language;
|
|
6692
6710
|
/**
|