bruce-cesium 2.8.0 → 2.8.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/dist/bruce-cesium.es5.js +60 -52
- package/dist/bruce-cesium.es5.js.map +1 -1
- package/dist/bruce-cesium.umd.js +59 -51
- package/dist/bruce-cesium.umd.js.map +1 -1
- package/dist/lib/bruce-cesium.js +1 -1
- package/dist/lib/rendering/render-managers/other/relations-render-manager.js +17 -23
- package/dist/lib/rendering/render-managers/other/relations-render-manager.js.map +1 -1
- package/dist/lib/rendering/visuals-register.js +37 -24
- package/dist/lib/rendering/visuals-register.js.map +1 -1
- package/dist/lib/widgets/common/draw-3d-polygon.js +1 -1
- package/dist/lib/widgets/common/draw-3d-polygon.js.map +1 -1
- package/dist/lib/widgets/common/draw-3d-polyline.js +1 -1
- package/dist/lib/widgets/common/draw-3d-polyline.js.map +1 -1
- package/dist/types/bruce-cesium.d.ts +1 -1
- package/dist/types/rendering/render-managers/other/relations-render-manager.d.ts +1 -1
- package/dist/types/rendering/visuals-register.d.ts +3 -3
- package/package.json +2 -2
|
@@ -104,13 +104,13 @@ export declare namespace VisualsRegister {
|
|
|
104
104
|
/**
|
|
105
105
|
* Locates a visual corresponding to a given entity id.
|
|
106
106
|
* If no menu item id is provided, then it will pick the "best" one.
|
|
107
|
-
* @param
|
|
108
|
-
* @param menuItemId
|
|
107
|
+
* @param params
|
|
109
108
|
* @returns
|
|
110
109
|
*/
|
|
111
110
|
GetRego(params: {
|
|
112
|
-
entityId
|
|
111
|
+
entityId?: string;
|
|
113
112
|
menuItemId?: string;
|
|
113
|
+
relation?: EntityRelation.IRelation;
|
|
114
114
|
}): IVisualRego;
|
|
115
115
|
/**
|
|
116
116
|
* Returns regos matching given criteria.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bruce-cesium",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"main": "dist/bruce-cesium.umd.js",
|
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"typescript": "^5.0.4"
|
|
72
72
|
},
|
|
73
73
|
"dependencies": {
|
|
74
|
-
"bruce-models": "^3.0.
|
|
74
|
+
"bruce-models": "^3.0.3",
|
|
75
75
|
"tslib": "^2.4.1"
|
|
76
76
|
}
|
|
77
77
|
}
|