bruce-models 1.9.7 → 1.9.8
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-models.es5.js +9 -3
- package/dist/bruce-models.es5.js.map +1 -1
- package/dist/bruce-models.umd.js +9 -3
- package/dist/bruce-models.umd.js.map +1 -1
- package/dist/lib/account/account-settings.js +2 -2
- package/dist/lib/account/account.js +185 -185
- package/dist/lib/ann-document/ann-document.js +86 -86
- package/dist/lib/api/abstract-api.js +246 -246
- package/dist/lib/api/api-getters.js +134 -134
- package/dist/lib/api/api.js +93 -93
- package/dist/lib/api/bruce-api.js +216 -216
- package/dist/lib/api/cam-api.js +82 -82
- package/dist/lib/api/global-api.js +81 -81
- package/dist/lib/api/idm-api.js +82 -82
- package/dist/lib/bruce-models.js +86 -86
- package/dist/lib/calculator/calculator.js +341 -335
- package/dist/lib/calculator/calculator.js.map +1 -1
- package/dist/lib/client-file/client-file.js +245 -245
- package/dist/lib/common/bounds.js +61 -61
- package/dist/lib/common/bruce-event.js +46 -46
- package/dist/lib/common/bruce-variable.js +60 -60
- package/dist/lib/common/cache.js +165 -165
- package/dist/lib/common/camera.js +11 -11
- package/dist/lib/common/cartes.js +123 -123
- package/dist/lib/common/carto.js +60 -60
- package/dist/lib/common/color.js +86 -86
- package/dist/lib/common/delay-queue.js +56 -56
- package/dist/lib/common/dictionary.js +2 -2
- package/dist/lib/common/geometry.js +120 -120
- package/dist/lib/common/transform.js +2 -2
- package/dist/lib/common/utc.js +39 -39
- package/dist/lib/custom-form/custom-form-content.js +26 -26
- package/dist/lib/custom-form/custom-form.js +106 -106
- package/dist/lib/data-lab/data-lab.js +49 -49
- package/dist/lib/entity/entity-attachment-type.js +83 -83
- package/dist/lib/entity/entity-attachment.js +122 -122
- package/dist/lib/entity/entity-attribute.js +29 -29
- package/dist/lib/entity/entity-comment.js +82 -82
- package/dist/lib/entity/entity-coords.js +149 -149
- package/dist/lib/entity/entity-link.js +82 -82
- package/dist/lib/entity/entity-lod-category.js +100 -100
- package/dist/lib/entity/entity-lod.js +185 -185
- package/dist/lib/entity/entity-relation-type.js +109 -109
- package/dist/lib/entity/entity-relation.js +132 -132
- package/dist/lib/entity/entity-source.js +136 -136
- package/dist/lib/entity/entity-tag.js +149 -149
- package/dist/lib/entity/entity-type-visual-settings.js +13 -13
- package/dist/lib/entity/entity-type.js +113 -113
- package/dist/lib/entity/entity.js +319 -319
- package/dist/lib/entity/getters/batched-data-getter.js +84 -84
- package/dist/lib/entity/getters/entity-filter-getter.js +303 -303
- package/dist/lib/entity/getters/entity-globe.js +211 -211
- package/dist/lib/entity/getters/view-monitor.js +2 -2
- package/dist/lib/import/import-cad.js +53 -53
- package/dist/lib/import/import-csv.js +23 -23
- package/dist/lib/import/import-json.js +23 -23
- package/dist/lib/import/import-kml.js +23 -23
- package/dist/lib/import/imported-file.js +91 -91
- package/dist/lib/internal/uploader.js +76 -76
- package/dist/lib/markup/markup.js +185 -185
- package/dist/lib/plugin/plugin.js +83 -83
- package/dist/lib/program-key/program-key.js +111 -111
- package/dist/lib/project/menu-item.js +121 -121
- package/dist/lib/project/project-view-bookmark.js +147 -147
- package/dist/lib/project/project-view-legacy-tile.js +77 -77
- package/dist/lib/project/project-view-tile.js +125 -125
- package/dist/lib/project/project-view.js +133 -133
- package/dist/lib/project/zoom-control.js +17 -17
- package/dist/lib/server/message-broker.js +142 -142
- package/dist/lib/server/pending-action.js +71 -71
- package/dist/lib/server/task.js +63 -63
- package/dist/lib/style/style.js +117 -117
- package/dist/lib/tileset/tileset.js +415 -415
- package/dist/lib/user/permission.js +20 -20
- package/dist/lib/user/session.js +137 -137
- package/dist/lib/user/user-group.js +94 -94
- package/dist/lib/user/user.js +446 -446
- package/dist/lib/util/encrypt-utils.js +19 -19
- package/dist/lib/util/math-utils.js +40 -40
- package/dist/lib/util/object-utils.js +17 -17
- package/dist/lib/util/path-utils.js +61 -61
- package/dist/lib/util/url-utils.js +94 -94
- package/package.json +1 -1
|
@@ -1,85 +1,85 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.BatchedDataGetter = void 0;
|
|
4
|
-
const bruce_event_1 = require("../../common/bruce-event");
|
|
5
|
-
const MAX_AREA_IN_DEGREES = 90;
|
|
6
|
-
const GETTER_DELAY = 50;
|
|
7
|
-
/**
|
|
8
|
-
* This is a batched "arbitrary data" getter.
|
|
9
|
-
* You feed it an array of data, then it will emit that data in batches when the view changes.
|
|
10
|
-
*/
|
|
11
|
-
var BatchedDataGetter;
|
|
12
|
-
(function (BatchedDataGetter) {
|
|
13
|
-
class Getter {
|
|
14
|
-
constructor(data, viewPort, batchSize) {
|
|
15
|
-
this.viewPortRemoval = null;
|
|
16
|
-
this.viewRect = null;
|
|
17
|
-
this.viewCenter = null;
|
|
18
|
-
this.onUpdate = null;
|
|
19
|
-
this.data = data;
|
|
20
|
-
this.viewPort = viewPort;
|
|
21
|
-
this.batchSize = batchSize;
|
|
22
|
-
}
|
|
23
|
-
get OnUpdate() {
|
|
24
|
-
if (!this.onUpdate) {
|
|
25
|
-
this.onUpdate = new bruce_event_1.BruceEvent();
|
|
26
|
-
}
|
|
27
|
-
return this.onUpdate;
|
|
28
|
-
}
|
|
29
|
-
Start() {
|
|
30
|
-
this.viewPortRemoval = this.viewPort.Updated().Subscribe(() => {
|
|
31
|
-
this.updateViewport();
|
|
32
|
-
});
|
|
33
|
-
this.updateViewport();
|
|
34
|
-
}
|
|
35
|
-
Dispose() {
|
|
36
|
-
var _a;
|
|
37
|
-
(_a = this.viewPortRemoval) === null || _a === void 0 ? void 0 : _a.call(this);
|
|
38
|
-
}
|
|
39
|
-
updateViewport() {
|
|
40
|
-
this.updateBounds();
|
|
41
|
-
this.startGetterLoop();
|
|
42
|
-
}
|
|
43
|
-
updateBounds() {
|
|
44
|
-
const viewRect = this.viewPort.GetBounds();
|
|
45
|
-
const poi = this.viewPort.GetTarget();
|
|
46
|
-
if (viewRect && poi) {
|
|
47
|
-
if (Math.abs(viewRect.west - viewRect.east) > MAX_AREA_IN_DEGREES) {
|
|
48
|
-
return;
|
|
49
|
-
}
|
|
50
|
-
if (Math.abs(viewRect.south - viewRect.north) > MAX_AREA_IN_DEGREES) {
|
|
51
|
-
return;
|
|
52
|
-
}
|
|
53
|
-
this.viewRect = viewRect;
|
|
54
|
-
this.viewCenter = poi;
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
startGetterLoop() {
|
|
58
|
-
clearInterval(this.getterInterval);
|
|
59
|
-
if (!this.viewRect || !this.viewCenter) {
|
|
60
|
-
return;
|
|
61
|
-
}
|
|
62
|
-
let index = 0;
|
|
63
|
-
const onTick = () => {
|
|
64
|
-
this.processBatch(this.data.slice(index, index + this.batchSize));
|
|
65
|
-
index += this.batchSize;
|
|
66
|
-
return index >= this.data.length;
|
|
67
|
-
};
|
|
68
|
-
if (!onTick()) {
|
|
69
|
-
this.getterInterval = setInterval(() => {
|
|
70
|
-
if (onTick()) {
|
|
71
|
-
clearInterval(this.getterInterval);
|
|
72
|
-
}
|
|
73
|
-
}, GETTER_DELAY);
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
processBatch(batch) {
|
|
77
|
-
var _a;
|
|
78
|
-
if (batch.length > 0) {
|
|
79
|
-
(_a = this.onUpdate) === null || _a === void 0 ? void 0 : _a.Trigger(batch);
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
BatchedDataGetter.Getter = Getter;
|
|
84
|
-
})(BatchedDataGetter = exports.BatchedDataGetter || (exports.BatchedDataGetter = {}));
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BatchedDataGetter = void 0;
|
|
4
|
+
const bruce_event_1 = require("../../common/bruce-event");
|
|
5
|
+
const MAX_AREA_IN_DEGREES = 90;
|
|
6
|
+
const GETTER_DELAY = 50;
|
|
7
|
+
/**
|
|
8
|
+
* This is a batched "arbitrary data" getter.
|
|
9
|
+
* You feed it an array of data, then it will emit that data in batches when the view changes.
|
|
10
|
+
*/
|
|
11
|
+
var BatchedDataGetter;
|
|
12
|
+
(function (BatchedDataGetter) {
|
|
13
|
+
class Getter {
|
|
14
|
+
constructor(data, viewPort, batchSize) {
|
|
15
|
+
this.viewPortRemoval = null;
|
|
16
|
+
this.viewRect = null;
|
|
17
|
+
this.viewCenter = null;
|
|
18
|
+
this.onUpdate = null;
|
|
19
|
+
this.data = data;
|
|
20
|
+
this.viewPort = viewPort;
|
|
21
|
+
this.batchSize = batchSize;
|
|
22
|
+
}
|
|
23
|
+
get OnUpdate() {
|
|
24
|
+
if (!this.onUpdate) {
|
|
25
|
+
this.onUpdate = new bruce_event_1.BruceEvent();
|
|
26
|
+
}
|
|
27
|
+
return this.onUpdate;
|
|
28
|
+
}
|
|
29
|
+
Start() {
|
|
30
|
+
this.viewPortRemoval = this.viewPort.Updated().Subscribe(() => {
|
|
31
|
+
this.updateViewport();
|
|
32
|
+
});
|
|
33
|
+
this.updateViewport();
|
|
34
|
+
}
|
|
35
|
+
Dispose() {
|
|
36
|
+
var _a;
|
|
37
|
+
(_a = this.viewPortRemoval) === null || _a === void 0 ? void 0 : _a.call(this);
|
|
38
|
+
}
|
|
39
|
+
updateViewport() {
|
|
40
|
+
this.updateBounds();
|
|
41
|
+
this.startGetterLoop();
|
|
42
|
+
}
|
|
43
|
+
updateBounds() {
|
|
44
|
+
const viewRect = this.viewPort.GetBounds();
|
|
45
|
+
const poi = this.viewPort.GetTarget();
|
|
46
|
+
if (viewRect && poi) {
|
|
47
|
+
if (Math.abs(viewRect.west - viewRect.east) > MAX_AREA_IN_DEGREES) {
|
|
48
|
+
return;
|
|
49
|
+
}
|
|
50
|
+
if (Math.abs(viewRect.south - viewRect.north) > MAX_AREA_IN_DEGREES) {
|
|
51
|
+
return;
|
|
52
|
+
}
|
|
53
|
+
this.viewRect = viewRect;
|
|
54
|
+
this.viewCenter = poi;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
startGetterLoop() {
|
|
58
|
+
clearInterval(this.getterInterval);
|
|
59
|
+
if (!this.viewRect || !this.viewCenter) {
|
|
60
|
+
return;
|
|
61
|
+
}
|
|
62
|
+
let index = 0;
|
|
63
|
+
const onTick = () => {
|
|
64
|
+
this.processBatch(this.data.slice(index, index + this.batchSize));
|
|
65
|
+
index += this.batchSize;
|
|
66
|
+
return index >= this.data.length;
|
|
67
|
+
};
|
|
68
|
+
if (!onTick()) {
|
|
69
|
+
this.getterInterval = setInterval(() => {
|
|
70
|
+
if (onTick()) {
|
|
71
|
+
clearInterval(this.getterInterval);
|
|
72
|
+
}
|
|
73
|
+
}, GETTER_DELAY);
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
processBatch(batch) {
|
|
77
|
+
var _a;
|
|
78
|
+
if (batch.length > 0) {
|
|
79
|
+
(_a = this.onUpdate) === null || _a === void 0 ? void 0 : _a.Trigger(batch);
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
BatchedDataGetter.Getter = Getter;
|
|
84
|
+
})(BatchedDataGetter = exports.BatchedDataGetter || (exports.BatchedDataGetter = {}));
|
|
85
85
|
//# sourceMappingURL=batched-data-getter.js.map
|