@eyeon/threejs-map 1.1.32 → 1.1.33-beta.1
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/README.md +1 -0
- package/dist/Hooks/useMeshFloors/nodesUtils.d.ts +2 -0
- package/dist/Hooks/useMeshFloors/useMeshParams.d.ts +1 -1
- package/dist/index.js +18 -18
- package/dist/index.js.map +1 -1
- package/dist/index.module.js +2462 -2305
- package/dist/index.module.js.map +1 -1
- package/dist/index.umd.js +22 -22
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/dist/test-maps/franklin/B8E5EEB77A4D7CE8.png +0 -0
package/README.md
CHANGED
|
@@ -14,3 +14,4 @@
|
|
|
14
14
|
### Proxy API Server - Storybook
|
|
15
15
|
After running storybook by `npm run storybook`, you need to first visit this link: http://localhost:6006/eyeon-portal/auth, this will generate `webAppJwtToken` which is necessary for Proxy API server JWT Authentication.
|
|
16
16
|
|
|
17
|
+
#dummy deploy - 1
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
import { AppFloor } from '../../interfaces/mapbox';
|
|
2
2
|
import { Vector2 } from 'three';
|
|
3
|
+
/** Nearest id on the element or an ancestor (Illustrator often ids groups, not child paths). */
|
|
4
|
+
export declare function getLayerNameFromNode(node: Element | undefined): string | undefined;
|
|
3
5
|
export declare function next_node_name(node_count: number): string;
|
|
4
6
|
export declare function get_node_name(vertex: Vector2, floor_index: number, floors: AppFloor[], node_count: number): [string, boolean];
|