@eyeon/threejs-map 1.1.33 → 1.1.35
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/dist/Hooks/useMeshFloors/useMaterialAndGeometry.d.ts +1 -0
- package/dist/Hooks/useMeshFloors/useMeshParams.d.ts +1 -1
- package/dist/defaults.d.ts +1 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +18 -18
- package/dist/index.js.map +1 -1
- package/dist/index.module.js +3612 -3453
- package/dist/index.module.js.map +1 -1
- package/dist/index.umd.js +22 -22
- package/dist/index.umd.js.map +1 -1
- package/dist/interfaces/index.d.ts +3 -2
- package/dist/test-maps/pacific-view/Pacific View - First Level.ai +119674 -30
- package/dist/test-maps/pacific-view/Pacific View - Second Level.ai +18775 -28
- package/dist/test-maps/pacific-view/SVG/floor1.svg +603 -0
- package/dist/test-maps/pacific-view/SVG/floor2.svg +533 -0
- package/dist/test-maps/shops-at-south-town/SVG/floor1.svg +779 -0
- package/dist/test-maps/shops-at-south-town/SVG/floor2.svg +4025 -0
- package/package.json +6 -46
- package/README.md +0 -16
|
@@ -2,13 +2,13 @@ import { Color, Intersection, Material, Mesh, MeshBasicMaterial, Object3D, Shape
|
|
|
2
2
|
import { Graph } from 'ngraph.graph';
|
|
3
3
|
import { MapResponsiveSettings } from './mapApiTypes';
|
|
4
4
|
export type MapMode = 'view' | 'edit';
|
|
5
|
-
export type
|
|
5
|
+
export type MapHost = 'PORTAL' | 'DISPLAY_APP' | 'WEBSITE' | 'PORTAL_KIOSK' | 'PORTAL_RESPONSIVE' | 'DEMO';
|
|
6
6
|
export type MapRenderMode = '2D' | '3D';
|
|
7
7
|
export type MapDeviceType = 'display_app' | 'desktop' | 'tablet' | 'mobile';
|
|
8
8
|
export interface MapConfigProps {
|
|
9
9
|
CENTER_ID: number;
|
|
10
10
|
KIOSK_ID: number;
|
|
11
|
-
|
|
11
|
+
HOST: MapHost;
|
|
12
12
|
DEVICE: MapDeviceType;
|
|
13
13
|
STYLE: MapRenderMode;
|
|
14
14
|
STATS: boolean;
|
|
@@ -30,6 +30,7 @@ export interface MapConfigProps {
|
|
|
30
30
|
PARKING_ICON_COLOR: Color;
|
|
31
31
|
PARKING_LANE_COLOR: Color;
|
|
32
32
|
GREEN_AREA_COLOR: Color;
|
|
33
|
+
WATER_AREA_COLOR: Color;
|
|
33
34
|
DEFAULT_SELECTED_STORE: string | null;
|
|
34
35
|
BOUNDARY_COLOR: Color;
|
|
35
36
|
CAMERA: {
|