@geode/opengeodeweb-viewer 1.1.0-rc.2 → 1.1.1-rc.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/package.json +1 -1
- package/schemas.json +396 -150
package/package.json
CHANGED
package/schemas.json
CHANGED
|
@@ -51,83 +51,318 @@
|
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
53
|
"mesh": {
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
"
|
|
60
|
-
"
|
|
54
|
+
"edges": {
|
|
55
|
+
"visibility": {
|
|
56
|
+
"$id": "opengeodeweb_viewer.mesh.edges.visibility",
|
|
57
|
+
"rpc": "visibility",
|
|
58
|
+
"type": "object",
|
|
59
|
+
"properties": {
|
|
60
|
+
"id": {
|
|
61
|
+
"type": "string"
|
|
62
|
+
},
|
|
63
|
+
"visibility": {
|
|
64
|
+
"type": "boolean"
|
|
65
|
+
}
|
|
61
66
|
},
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
|
|
67
|
+
"required": [
|
|
68
|
+
"id",
|
|
69
|
+
"visibility"
|
|
70
|
+
],
|
|
71
|
+
"additionalProperties": false
|
|
65
72
|
},
|
|
66
|
-
"
|
|
67
|
-
"id",
|
|
68
|
-
"
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
"id": {
|
|
78
|
-
"type": "string"
|
|
73
|
+
"vertex_attribute": {
|
|
74
|
+
"$id": "opengeodeweb_viewer.mesh.edges.vertex_attribute",
|
|
75
|
+
"rpc": "vertex_attribute",
|
|
76
|
+
"type": "object",
|
|
77
|
+
"properties": {
|
|
78
|
+
"id": {
|
|
79
|
+
"type": "string"
|
|
80
|
+
},
|
|
81
|
+
"name": {
|
|
82
|
+
"type": "string"
|
|
83
|
+
}
|
|
79
84
|
},
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
|
|
85
|
+
"required": [
|
|
86
|
+
"id",
|
|
87
|
+
"name"
|
|
88
|
+
],
|
|
89
|
+
"additionalProperties": false
|
|
83
90
|
},
|
|
84
|
-
"
|
|
85
|
-
"id",
|
|
86
|
-
"
|
|
87
|
-
|
|
88
|
-
|
|
91
|
+
"size": {
|
|
92
|
+
"$id": "opengeodeweb_viewer.mesh.edges.size",
|
|
93
|
+
"rpc": "size",
|
|
94
|
+
"type": "object",
|
|
95
|
+
"properties": {
|
|
96
|
+
"id": {
|
|
97
|
+
"type": "string"
|
|
98
|
+
},
|
|
99
|
+
"size": {
|
|
100
|
+
"type": "integer"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"required": [
|
|
104
|
+
"id",
|
|
105
|
+
"size"
|
|
106
|
+
],
|
|
107
|
+
"additionalProperties": false
|
|
108
|
+
},
|
|
109
|
+
"color": {
|
|
110
|
+
"$id": "opengeodeweb_viewer.mesh.edges.color",
|
|
111
|
+
"rpc": "color",
|
|
112
|
+
"type": "object",
|
|
113
|
+
"properties": {
|
|
114
|
+
"id": {
|
|
115
|
+
"type": "string"
|
|
116
|
+
},
|
|
117
|
+
"color": {
|
|
118
|
+
"type": "object",
|
|
119
|
+
"properties": {
|
|
120
|
+
"r": {
|
|
121
|
+
"type": "integer",
|
|
122
|
+
"minimum": 0,
|
|
123
|
+
"maximum": 255
|
|
124
|
+
},
|
|
125
|
+
"g": {
|
|
126
|
+
"type": "integer",
|
|
127
|
+
"minimum": 0,
|
|
128
|
+
"maximum": 255
|
|
129
|
+
},
|
|
130
|
+
"b": {
|
|
131
|
+
"type": "integer",
|
|
132
|
+
"minimum": 0,
|
|
133
|
+
"maximum": 255
|
|
134
|
+
},
|
|
135
|
+
"a": {
|
|
136
|
+
"type": "number",
|
|
137
|
+
"minimum": 0,
|
|
138
|
+
"maximum": 1,
|
|
139
|
+
"default": 1
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"required": [
|
|
143
|
+
"r",
|
|
144
|
+
"g",
|
|
145
|
+
"b"
|
|
146
|
+
],
|
|
147
|
+
"additionalProperties": false
|
|
148
|
+
}
|
|
149
|
+
},
|
|
150
|
+
"required": [
|
|
151
|
+
"id",
|
|
152
|
+
"color"
|
|
153
|
+
],
|
|
154
|
+
"additionalProperties": false
|
|
155
|
+
}
|
|
89
156
|
},
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
"
|
|
96
|
-
"
|
|
157
|
+
"points": {
|
|
158
|
+
"visibility": {
|
|
159
|
+
"$id": "opengeodeweb_viewer.mesh.points.visibility",
|
|
160
|
+
"rpc": "visibility",
|
|
161
|
+
"type": "object",
|
|
162
|
+
"properties": {
|
|
163
|
+
"id": {
|
|
164
|
+
"type": "string"
|
|
165
|
+
},
|
|
166
|
+
"visibility": {
|
|
167
|
+
"type": "boolean"
|
|
168
|
+
}
|
|
97
169
|
},
|
|
98
|
-
"
|
|
99
|
-
"
|
|
100
|
-
|
|
170
|
+
"required": [
|
|
171
|
+
"id",
|
|
172
|
+
"visibility"
|
|
173
|
+
],
|
|
174
|
+
"additionalProperties": false
|
|
101
175
|
},
|
|
102
|
-
"
|
|
103
|
-
"id",
|
|
104
|
-
"
|
|
105
|
-
|
|
106
|
-
|
|
176
|
+
"vertex_attribute": {
|
|
177
|
+
"$id": "opengeodeweb_viewer.mesh.points.vertex_attribute",
|
|
178
|
+
"rpc": "vertex_attribute",
|
|
179
|
+
"type": "object",
|
|
180
|
+
"properties": {
|
|
181
|
+
"id": {
|
|
182
|
+
"type": "string"
|
|
183
|
+
},
|
|
184
|
+
"name": {
|
|
185
|
+
"type": "string"
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
"required": [
|
|
189
|
+
"id",
|
|
190
|
+
"name"
|
|
191
|
+
],
|
|
192
|
+
"additionalProperties": false
|
|
193
|
+
},
|
|
194
|
+
"size": {
|
|
195
|
+
"$id": "opengeodeweb_viewer.mesh.points.size",
|
|
196
|
+
"rpc": "size",
|
|
197
|
+
"type": "object",
|
|
198
|
+
"properties": {
|
|
199
|
+
"id": {
|
|
200
|
+
"type": "string"
|
|
201
|
+
},
|
|
202
|
+
"size": {
|
|
203
|
+
"type": "number"
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
"required": [
|
|
207
|
+
"id",
|
|
208
|
+
"size"
|
|
209
|
+
],
|
|
210
|
+
"additionalProperties": false
|
|
211
|
+
},
|
|
212
|
+
"color": {
|
|
213
|
+
"$id": "opengeodeweb_viewer.mesh.points.color",
|
|
214
|
+
"rpc": "color",
|
|
215
|
+
"type": "object",
|
|
216
|
+
"properties": {
|
|
217
|
+
"id": {
|
|
218
|
+
"type": "string"
|
|
219
|
+
},
|
|
220
|
+
"color": {
|
|
221
|
+
"type": "object",
|
|
222
|
+
"properties": {
|
|
223
|
+
"r": {
|
|
224
|
+
"type": "integer",
|
|
225
|
+
"minimum": 0,
|
|
226
|
+
"maximum": 255
|
|
227
|
+
},
|
|
228
|
+
"g": {
|
|
229
|
+
"type": "integer",
|
|
230
|
+
"minimum": 0,
|
|
231
|
+
"maximum": 255
|
|
232
|
+
},
|
|
233
|
+
"b": {
|
|
234
|
+
"type": "integer",
|
|
235
|
+
"minimum": 0,
|
|
236
|
+
"maximum": 255
|
|
237
|
+
},
|
|
238
|
+
"a": {
|
|
239
|
+
"type": "number",
|
|
240
|
+
"minimum": 0,
|
|
241
|
+
"maximum": 1,
|
|
242
|
+
"default": 1
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
"required": [
|
|
246
|
+
"r",
|
|
247
|
+
"g",
|
|
248
|
+
"b"
|
|
249
|
+
],
|
|
250
|
+
"additionalProperties": false
|
|
251
|
+
}
|
|
252
|
+
},
|
|
253
|
+
"required": [
|
|
254
|
+
"id",
|
|
255
|
+
"color"
|
|
256
|
+
],
|
|
257
|
+
"additionalProperties": false
|
|
258
|
+
}
|
|
107
259
|
},
|
|
108
|
-
"
|
|
109
|
-
"
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
"
|
|
114
|
-
"
|
|
260
|
+
"polygons": {
|
|
261
|
+
"visibility": {
|
|
262
|
+
"$id": "opengeodeweb_viewer.mesh.polygons.visibility",
|
|
263
|
+
"rpc": "visibility",
|
|
264
|
+
"type": "object",
|
|
265
|
+
"properties": {
|
|
266
|
+
"id": {
|
|
267
|
+
"type": "string"
|
|
268
|
+
},
|
|
269
|
+
"visibility": {
|
|
270
|
+
"type": "boolean"
|
|
271
|
+
}
|
|
115
272
|
},
|
|
116
|
-
"
|
|
117
|
-
"
|
|
118
|
-
"
|
|
119
|
-
|
|
120
|
-
|
|
273
|
+
"required": [
|
|
274
|
+
"id",
|
|
275
|
+
"visibility"
|
|
276
|
+
],
|
|
277
|
+
"additionalProperties": false
|
|
121
278
|
},
|
|
122
|
-
"
|
|
123
|
-
"id",
|
|
124
|
-
"
|
|
125
|
-
|
|
126
|
-
|
|
279
|
+
"vertex_attribute": {
|
|
280
|
+
"$id": "opengeodeweb_viewer.mesh.polygons.vertex_attribute",
|
|
281
|
+
"rpc": "vertex_attribute",
|
|
282
|
+
"type": "object",
|
|
283
|
+
"properties": {
|
|
284
|
+
"id": {
|
|
285
|
+
"type": "string"
|
|
286
|
+
},
|
|
287
|
+
"name": {
|
|
288
|
+
"type": "string"
|
|
289
|
+
}
|
|
290
|
+
},
|
|
291
|
+
"required": [
|
|
292
|
+
"id",
|
|
293
|
+
"name"
|
|
294
|
+
],
|
|
295
|
+
"additionalProperties": false
|
|
296
|
+
},
|
|
297
|
+
"polygon_attribute": {
|
|
298
|
+
"$id": "opengeodeweb_viewer.mesh.polygons.polygon_attribute",
|
|
299
|
+
"rpc": "polygon_attribute",
|
|
300
|
+
"type": "object",
|
|
301
|
+
"properties": {
|
|
302
|
+
"id": {
|
|
303
|
+
"type": "string"
|
|
304
|
+
},
|
|
305
|
+
"name": {
|
|
306
|
+
"type": "string"
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
"required": [
|
|
310
|
+
"id",
|
|
311
|
+
"name"
|
|
312
|
+
],
|
|
313
|
+
"additionalProperties": false
|
|
314
|
+
},
|
|
315
|
+
"color": {
|
|
316
|
+
"$id": "opengeodeweb_viewer.mesh.polygons.color",
|
|
317
|
+
"rpc": "color",
|
|
318
|
+
"type": "object",
|
|
319
|
+
"properties": {
|
|
320
|
+
"id": {
|
|
321
|
+
"type": "string"
|
|
322
|
+
},
|
|
323
|
+
"color": {
|
|
324
|
+
"type": "object",
|
|
325
|
+
"properties": {
|
|
326
|
+
"r": {
|
|
327
|
+
"type": "integer",
|
|
328
|
+
"minimum": 0,
|
|
329
|
+
"maximum": 255
|
|
330
|
+
},
|
|
331
|
+
"g": {
|
|
332
|
+
"type": "integer",
|
|
333
|
+
"minimum": 0,
|
|
334
|
+
"maximum": 255
|
|
335
|
+
},
|
|
336
|
+
"b": {
|
|
337
|
+
"type": "integer",
|
|
338
|
+
"minimum": 0,
|
|
339
|
+
"maximum": 255
|
|
340
|
+
},
|
|
341
|
+
"a": {
|
|
342
|
+
"type": "number",
|
|
343
|
+
"minimum": 0,
|
|
344
|
+
"maximum": 1,
|
|
345
|
+
"default": 1
|
|
346
|
+
}
|
|
347
|
+
},
|
|
348
|
+
"required": [
|
|
349
|
+
"r",
|
|
350
|
+
"g",
|
|
351
|
+
"b"
|
|
352
|
+
],
|
|
353
|
+
"additionalProperties": false
|
|
354
|
+
}
|
|
355
|
+
},
|
|
356
|
+
"required": [
|
|
357
|
+
"id",
|
|
358
|
+
"color"
|
|
359
|
+
],
|
|
360
|
+
"additionalProperties": false
|
|
361
|
+
}
|
|
127
362
|
},
|
|
128
|
-
"
|
|
129
|
-
"$id": "opengeodeweb_viewer.mesh.
|
|
130
|
-
"rpc": "
|
|
363
|
+
"visibility": {
|
|
364
|
+
"$id": "opengeodeweb_viewer.mesh.visibility",
|
|
365
|
+
"rpc": "visibility",
|
|
131
366
|
"type": "object",
|
|
132
367
|
"properties": {
|
|
133
368
|
"id": {
|
|
@@ -143,38 +378,6 @@
|
|
|
143
378
|
],
|
|
144
379
|
"additionalProperties": false
|
|
145
380
|
},
|
|
146
|
-
"set_color": {
|
|
147
|
-
"$id": "opengeodeweb_viewer.mesh.set_color",
|
|
148
|
-
"rpc": "set_color",
|
|
149
|
-
"type": "object",
|
|
150
|
-
"properties": {
|
|
151
|
-
"id": {
|
|
152
|
-
"type": "string"
|
|
153
|
-
},
|
|
154
|
-
"red": {
|
|
155
|
-
"type": "integer",
|
|
156
|
-
"minimum": 0,
|
|
157
|
-
"maximum": 255
|
|
158
|
-
},
|
|
159
|
-
"green": {
|
|
160
|
-
"type": "integer",
|
|
161
|
-
"minimum": 0,
|
|
162
|
-
"maximum": 255
|
|
163
|
-
},
|
|
164
|
-
"blue": {
|
|
165
|
-
"type": "integer",
|
|
166
|
-
"minimum": 0,
|
|
167
|
-
"maximum": 255
|
|
168
|
-
}
|
|
169
|
-
},
|
|
170
|
-
"required": [
|
|
171
|
-
"id",
|
|
172
|
-
"red",
|
|
173
|
-
"green",
|
|
174
|
-
"blue"
|
|
175
|
-
],
|
|
176
|
-
"additionalProperties": false
|
|
177
|
-
},
|
|
178
381
|
"register": {
|
|
179
382
|
"$id": "opengeodeweb_viewer.mesh.register",
|
|
180
383
|
"rpc": "register",
|
|
@@ -193,53 +396,78 @@
|
|
|
193
396
|
],
|
|
194
397
|
"additionalProperties": false
|
|
195
398
|
},
|
|
196
|
-
"
|
|
197
|
-
"$id": "opengeodeweb_viewer.mesh.
|
|
198
|
-
"rpc": "
|
|
399
|
+
"opacity": {
|
|
400
|
+
"$id": "opengeodeweb_viewer.mesh.opacity",
|
|
401
|
+
"rpc": "opacity",
|
|
199
402
|
"type": "object",
|
|
200
403
|
"properties": {
|
|
201
404
|
"id": {
|
|
202
405
|
"type": "string"
|
|
203
406
|
},
|
|
204
|
-
"
|
|
205
|
-
"type": "
|
|
407
|
+
"opacity": {
|
|
408
|
+
"type": "number",
|
|
409
|
+
"min": 0,
|
|
410
|
+
"max": 1
|
|
206
411
|
}
|
|
207
412
|
},
|
|
208
413
|
"required": [
|
|
209
414
|
"id",
|
|
210
|
-
"
|
|
415
|
+
"opacity"
|
|
211
416
|
],
|
|
212
417
|
"additionalProperties": false
|
|
213
418
|
},
|
|
214
|
-
"
|
|
215
|
-
"$id": "opengeodeweb_viewer.mesh.
|
|
216
|
-
"rpc": "
|
|
419
|
+
"deregister": {
|
|
420
|
+
"$id": "opengeodeweb_viewer.mesh.deregister",
|
|
421
|
+
"rpc": "deregister",
|
|
217
422
|
"type": "object",
|
|
218
423
|
"properties": {
|
|
219
424
|
"id": {
|
|
220
425
|
"type": "string"
|
|
221
|
-
},
|
|
222
|
-
"name": {
|
|
223
|
-
"type": "string"
|
|
224
426
|
}
|
|
225
427
|
},
|
|
226
428
|
"required": [
|
|
227
|
-
"id"
|
|
228
|
-
"name"
|
|
429
|
+
"id"
|
|
229
430
|
],
|
|
230
431
|
"additionalProperties": false
|
|
231
432
|
},
|
|
232
|
-
"
|
|
233
|
-
"$id": "opengeodeweb_viewer.mesh.
|
|
234
|
-
"rpc": "
|
|
433
|
+
"color": {
|
|
434
|
+
"$id": "opengeodeweb_viewer.mesh.color",
|
|
435
|
+
"rpc": "color",
|
|
235
436
|
"type": "object",
|
|
236
437
|
"properties": {
|
|
237
438
|
"id": {
|
|
238
439
|
"type": "string"
|
|
440
|
+
},
|
|
441
|
+
"color": {
|
|
442
|
+
"type": "object",
|
|
443
|
+
"properties": {
|
|
444
|
+
"r": {
|
|
445
|
+
"type": "integer",
|
|
446
|
+
"minimum": 0,
|
|
447
|
+
"maximum": 255
|
|
448
|
+
},
|
|
449
|
+
"g": {
|
|
450
|
+
"type": "integer",
|
|
451
|
+
"minimum": 0,
|
|
452
|
+
"maximum": 255
|
|
453
|
+
},
|
|
454
|
+
"b": {
|
|
455
|
+
"type": "integer",
|
|
456
|
+
"minimum": 0,
|
|
457
|
+
"maximum": 255
|
|
458
|
+
}
|
|
459
|
+
},
|
|
460
|
+
"required": [
|
|
461
|
+
"r",
|
|
462
|
+
"g",
|
|
463
|
+
"b"
|
|
464
|
+
],
|
|
465
|
+
"additionalProperties": false
|
|
239
466
|
}
|
|
240
467
|
},
|
|
241
468
|
"required": [
|
|
242
|
-
"id"
|
|
469
|
+
"id",
|
|
470
|
+
"color"
|
|
243
471
|
],
|
|
244
472
|
"additionalProperties": false
|
|
245
473
|
},
|
|
@@ -342,27 +570,36 @@
|
|
|
342
570
|
"id": {
|
|
343
571
|
"type": "string"
|
|
344
572
|
},
|
|
345
|
-
"
|
|
346
|
-
"type": "
|
|
347
|
-
"
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
573
|
+
"color": {
|
|
574
|
+
"type": "object",
|
|
575
|
+
"properties": {
|
|
576
|
+
"r": {
|
|
577
|
+
"type": "integer",
|
|
578
|
+
"minimum": 0,
|
|
579
|
+
"maximum": 255
|
|
580
|
+
},
|
|
581
|
+
"g": {
|
|
582
|
+
"type": "integer",
|
|
583
|
+
"minimum": 0,
|
|
584
|
+
"maximum": 255
|
|
585
|
+
},
|
|
586
|
+
"b": {
|
|
587
|
+
"type": "integer",
|
|
588
|
+
"minimum": 0,
|
|
589
|
+
"maximum": 255
|
|
590
|
+
}
|
|
591
|
+
},
|
|
592
|
+
"required": [
|
|
593
|
+
"r",
|
|
594
|
+
"g",
|
|
595
|
+
"b"
|
|
596
|
+
],
|
|
597
|
+
"additionalProperties": false
|
|
359
598
|
}
|
|
360
599
|
},
|
|
361
600
|
"required": [
|
|
362
601
|
"id",
|
|
363
|
-
"
|
|
364
|
-
"green",
|
|
365
|
-
"blue"
|
|
602
|
+
"color"
|
|
366
603
|
],
|
|
367
604
|
"additionalProperties": false
|
|
368
605
|
},
|
|
@@ -480,26 +717,35 @@
|
|
|
480
717
|
"rpc": "set_background_color",
|
|
481
718
|
"type": "object",
|
|
482
719
|
"properties": {
|
|
483
|
-
"
|
|
484
|
-
"type": "
|
|
485
|
-
"
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
720
|
+
"color": {
|
|
721
|
+
"type": "object",
|
|
722
|
+
"properties": {
|
|
723
|
+
"r": {
|
|
724
|
+
"type": "integer",
|
|
725
|
+
"minimum": 0,
|
|
726
|
+
"maximum": 255
|
|
727
|
+
},
|
|
728
|
+
"g": {
|
|
729
|
+
"type": "integer",
|
|
730
|
+
"minimum": 0,
|
|
731
|
+
"maximum": 255
|
|
732
|
+
},
|
|
733
|
+
"b": {
|
|
734
|
+
"type": "integer",
|
|
735
|
+
"minimum": 0,
|
|
736
|
+
"maximum": 255
|
|
737
|
+
}
|
|
738
|
+
},
|
|
739
|
+
"required": [
|
|
740
|
+
"r",
|
|
741
|
+
"g",
|
|
742
|
+
"b"
|
|
743
|
+
],
|
|
744
|
+
"additionalProperties": false
|
|
497
745
|
}
|
|
498
746
|
},
|
|
499
747
|
"required": [
|
|
500
|
-
"
|
|
501
|
-
"green",
|
|
502
|
-
"blue"
|
|
748
|
+
"color"
|
|
503
749
|
],
|
|
504
750
|
"additionalProperties": false
|
|
505
751
|
},
|