@mappedin/mappedin-js 5.39.0 → 5.39.2
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/get-venue/index.js +1 -1
- package/lib/esm/renderer/{GLTFExporter-UHKPRCPA.js → GLTFExporter-I2OMW6PG.js} +1 -1
- package/lib/esm/renderer/{PerformanceController-QQ7G4Q2S.js → PerformanceController-FEVGB5E2.js} +1 -1
- package/lib/esm/renderer/{browser-BHT5JGFQ.js → browser-LSTO6YXP.js} +1 -1
- package/lib/esm/renderer/chunk-CQO5KFXZ.js +1 -0
- package/lib/esm/renderer/{chunk-27JB5UEJ.js → chunk-NOVHOL33.js} +1 -1
- package/lib/esm/renderer/index.d.ts +5 -2
- package/lib/esm/renderer/index.js +1 -1
- package/lib/esm/renderer/{outdoor-context-D4U3HPZG.js → outdoor-context-ESR4QFBP.js} +1 -1
- package/lib/mappedin.js +1 -1
- package/lib/node/index.js +1 -1
- package/package.json +2 -2
- package/lib/esm/renderer/chunk-Z7IFQHON.js +0 -1
|
@@ -7988,8 +7988,9 @@ declare module '@mappedin/mappedin-js/renderer/internal/Mappedin.MapObject' {
|
|
|
7988
7988
|
/**
|
|
7989
7989
|
* A function that should be called when the map is made invisible, in order
|
|
7990
7990
|
* to postpone its tasks.
|
|
7991
|
+
* @param persistImages - if true, image meshes will not be set visible = false
|
|
7991
7992
|
*/
|
|
7992
|
-
onInvisible(): void;
|
|
7993
|
+
onInvisible(persistImages?: boolean): void;
|
|
7993
7994
|
/**
|
|
7994
7995
|
* Queue a task on this map that will be executed when the high and low
|
|
7995
7996
|
* priority tasks have been processed.
|
|
@@ -9030,6 +9031,7 @@ declare module '@mappedin/mappedin-js/renderer/private/controllers/StackedMapsCo
|
|
|
9030
9031
|
needsUpdate: boolean;
|
|
9031
9032
|
currentState: STACKED_MAPS_STATE;
|
|
9032
9033
|
mapsInStack: MappedinMap[];
|
|
9034
|
+
get mapIdsInStack(): string[];
|
|
9033
9035
|
getZoomIntoMapOptions: (params: TParams) => (MapViewScene | {
|
|
9034
9036
|
activeMap: MappedinMap;
|
|
9035
9037
|
focusOn: {
|
|
@@ -9096,7 +9098,7 @@ declare module '@mappedin/mappedin-js/renderer/private/controllers/StackedMapsCo
|
|
|
9096
9098
|
exec(transitions: TTargetTransitionFunction[] | void, params: TParams): Promise<void>;
|
|
9097
9099
|
disable: () => Promise<void>;
|
|
9098
9100
|
enable: (opts?: TStackedMapsOptions) => Promise<void>;
|
|
9099
|
-
get nodesInJourneyOrMap():
|
|
9101
|
+
get nodesInJourneyOrMap(): MappedinNode[];
|
|
9100
9102
|
showOverview: (animationOptions?: TCameraAnimationOptions) => Promise<void>;
|
|
9101
9103
|
scrollToMap: (map: MappedinMap, duration?: number) => Promise<void>;
|
|
9102
9104
|
restack: (options?: TStackedMapsOptions) => Promise<void>;
|
|
@@ -9458,6 +9460,7 @@ declare module '@mappedin/mappedin-js/renderer/private/controllers/JourneyContro
|
|
|
9458
9460
|
activeDirections: MappedinDirections;
|
|
9459
9461
|
get isMultiFloor(): boolean;
|
|
9460
9462
|
get mapsInJourney(): (import("../../internal").MappedinMap | undefined)[];
|
|
9463
|
+
get mapsIdsInJourney(): (string | undefined)[];
|
|
9461
9464
|
get buildingsInJourney(): {};
|
|
9462
9465
|
get mapIdsInvolvedInJourney(): string[];
|
|
9463
9466
|
constructor(directions: MappedinDirections | MappedinDirections[], options: TJourneyOptions | undefined, core: Core);
|