@mappedin/mappedin-js 5.47.0 → 5.48.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/get-venue/index.d.ts +24 -0
- package/lib/esm/get-venue/index.js +1 -1
- package/lib/esm/navigator/index.js +1 -1
- package/lib/esm/renderer/{GLTFExporter-BB3K7EJS.js → GLTFExporter-M3KQRS3Q.js} +1 -1
- package/lib/esm/renderer/{PerformanceController-I7OX53U7.js → PerformanceController-OCUUPNZR.js} +1 -1
- package/lib/esm/renderer/{browser-LC3KQF56.js → browser-4SFL4UGN.js} +1 -1
- package/lib/esm/renderer/chunk-JIMJW33G.js +1 -0
- package/lib/esm/renderer/{chunk-WPKQOCR6.js → chunk-TUEPC7VC.js} +1 -1
- package/lib/esm/renderer/index.d.ts +27 -3
- package/lib/esm/renderer/index.js +1 -1
- package/lib/esm/renderer/{outdoor-context-BW5D6LMF.js → outdoor-context-7RAGMYX2.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-G2PO5LDI.js +0 -1
|
@@ -1384,7 +1384,7 @@ declare module '@mappedin/mappedin-js/renderer/MapView.types' {
|
|
|
1384
1384
|
overviewPathOptions?: TPathOptions;
|
|
1385
1385
|
overviewPathOnConnectionsOptions?: TPathOptions;
|
|
1386
1386
|
showOverviewPathOnMap?: MappedinMap;
|
|
1387
|
-
overviewPathMode?: 'always' | 'current-elevation-and-mapgroup';
|
|
1387
|
+
overviewPathMode?: 'always' | 'current-elevation-and-mapgroup' | 'current-elevation';
|
|
1388
1388
|
overviewInactivePathSizeFactor?: number;
|
|
1389
1389
|
overviewPathInactiveColor?: string;
|
|
1390
1390
|
};
|
|
@@ -9378,8 +9378,8 @@ declare module '@mappedin/mappedin-js/renderer/private/controllers/JourneyContro
|
|
|
9378
9378
|
constructor(directions: MappedinDirections | MappedinDirections[], options: TJourneyOptions | undefined, core: Core);
|
|
9379
9379
|
setStep: (step: any) => void;
|
|
9380
9380
|
setStepByPath: (path: Path) => void;
|
|
9381
|
-
overviewPathMode: 'never' | 'always' | 'current-elevation-and-mapgroup';
|
|
9382
|
-
setOverviewPathMode(mode: 'never' | 'always' | 'current-elevation-and-mapgroup'): void;
|
|
9381
|
+
overviewPathMode: 'never' | 'always' | 'current-elevation-and-mapgroup' | 'current-elevation';
|
|
9382
|
+
setOverviewPathMode(mode: 'never' | 'always' | 'current-elevation-and-mapgroup' | 'current-elevation'): void;
|
|
9383
9383
|
static instance: JourneyController | null;
|
|
9384
9384
|
static create(directions: MappedinDirections | MappedinDirections[], options: any, core: Core): JourneyController;
|
|
9385
9385
|
destroy(): void;
|
|
@@ -11479,27 +11479,51 @@ declare module '@mappedin/mappedin-js/get-venue/Mappedin.cache' {
|
|
|
11479
11479
|
categories: {
|
|
11480
11480
|
[id: string]: MappedinCategory;
|
|
11481
11481
|
};
|
|
11482
|
+
categoriesByExternalId: {
|
|
11483
|
+
[externalId: string]: MappedinCategory;
|
|
11484
|
+
};
|
|
11482
11485
|
locations: {
|
|
11483
11486
|
[id: string]: MappedinLocation;
|
|
11484
11487
|
};
|
|
11488
|
+
locationsByExternalId: {
|
|
11489
|
+
[externalId: string]: MappedinLocation;
|
|
11490
|
+
};
|
|
11485
11491
|
vortexes: {
|
|
11486
11492
|
[id: string]: MappedinVortex;
|
|
11487
11493
|
};
|
|
11494
|
+
vortexesByExternalId: {
|
|
11495
|
+
[externalId: string]: MappedinVortex;
|
|
11496
|
+
};
|
|
11488
11497
|
maps: {
|
|
11489
11498
|
[id: string]: MappedinMap;
|
|
11490
11499
|
};
|
|
11500
|
+
mapsByExternalId: {
|
|
11501
|
+
[externalId: string]: MappedinMap;
|
|
11502
|
+
};
|
|
11491
11503
|
nodes: {
|
|
11492
11504
|
[id: string]: MappedinNode;
|
|
11493
11505
|
};
|
|
11506
|
+
nodesByExternalId: {
|
|
11507
|
+
[externalId: string]: MappedinNode;
|
|
11508
|
+
};
|
|
11494
11509
|
polygons: {
|
|
11495
11510
|
[id: string]: MappedinPolygon;
|
|
11496
11511
|
};
|
|
11512
|
+
polygonsByExternalId: {
|
|
11513
|
+
[externalId: string]: MappedinPolygon;
|
|
11514
|
+
};
|
|
11497
11515
|
events: {
|
|
11498
11516
|
[id: string]: MappedinEvent;
|
|
11499
11517
|
};
|
|
11518
|
+
eventsByExternalId: {
|
|
11519
|
+
[externalId: string]: MappedinEvent;
|
|
11520
|
+
};
|
|
11500
11521
|
mapGroups: {
|
|
11501
11522
|
[id: string]: MappedinMapGroup;
|
|
11502
11523
|
};
|
|
11524
|
+
mapGroupsByExternalId: {
|
|
11525
|
+
[externalId: string]: MappedinMapGroup;
|
|
11526
|
+
};
|
|
11503
11527
|
locationStates: {
|
|
11504
11528
|
[id: string]: MappedinLocationState;
|
|
11505
11529
|
};
|