@eyeon/threejs-map 1.1.29 → 1.1.30
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/defaults.d.ts +9 -0
- package/dist/index.js +18 -18
- package/dist/index.js.map +1 -1
- package/dist/index.module.js +2710 -2711
- package/dist/index.module.js.map +1 -1
- package/dist/index.umd.js +19 -19
- package/dist/index.umd.js.map +1 -1
- package/dist/interfaces/portal.d.ts +0 -5
- package/package.json +1 -1
package/dist/defaults.d.ts
CHANGED
|
@@ -3,6 +3,15 @@ import { MapCameraControlsState, MapObjData } from './interfaces/mapApiTypes';
|
|
|
3
3
|
import { PortalMapSettingsProps } from './interfaces/portal';
|
|
4
4
|
export declare const cameraControlsDefaultVars: MapCameraControlsState;
|
|
5
5
|
export declare const defaultPortalMapSettings: PortalMapSettingsProps;
|
|
6
|
+
/** Code-only layer styling. Never loaded from or saved to portal/database settings. */
|
|
7
|
+
export declare const staticMapLayerSettings: {
|
|
8
|
+
readonly PARKING_LINE_THICKNESS: 0.6;
|
|
9
|
+
readonly PARKING_LINE_COLOR: import('three').Color;
|
|
10
|
+
readonly PARKING_ICON_COLOR: import('three').Color;
|
|
11
|
+
readonly PARKING_LANE_COLOR: import('three').Color;
|
|
12
|
+
readonly GREEN_AREA_COLOR: import('three').Color;
|
|
13
|
+
};
|
|
14
|
+
export declare const applyStaticMapLayerSettings: <T extends MapConfigProps>(config: T) => T;
|
|
6
15
|
export declare const mapConfigDefaultVars: MapConfigProps;
|
|
7
16
|
export declare const mapObjDefaultVars: MapObjData;
|
|
8
17
|
export declare const textLogoNamePrefix = "custom-layer-";
|