@masterportal/masterportalapi 2.44.0 → 2.46.0
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/CHANGELOG.md +29 -0
- package/example/config/portal.json +10 -0
- package/example/config/services.json +1 -0
- package/example/index.js +21 -1
- package/package.json +3 -3
- package/src/layer/oaf.js +2 -1
- package/src/renderer/webgl.js +1 -1
- package/src/vectorStyle/createStyle.js +8 -6
- package/src/vectorStyle/lib/getRuleForIndex.js +1 -1
- package/src/vectorStyle/lib/valueOperations.js +1 -1
- package/src/vectorStyle/styles/styleCesium.js +2 -2
- package/test/layer/oaf.test.js +16 -0
- package/test/renderer/webgl.test.js +1 -1
- package/test/vectorStyle/createStyle.test.js +15 -0
- package/test/vectorStyle/lib/getRuleForIndex.test.js +4 -0
- package/test/vectorStyle/lib/valueOperations.test.js +2 -2
- package/test/vectorStyle/styles/styleCesium.test.js +120 -0
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
The [Semantic Versioning](https://semver.org/spec/v2.0.0.html) is used.
|
|
5
5
|
|
|
6
6
|
## Unreleased - in development
|
|
7
|
+
|
|
7
8
|
### __Breaking Changes__
|
|
8
9
|
|
|
9
10
|
### Added
|
|
@@ -16,6 +17,34 @@
|
|
|
16
17
|
|
|
17
18
|
### Fixed
|
|
18
19
|
|
|
20
|
+
---
|
|
21
|
+
## 2.46.0 - 2025-03-10
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
- The following packages have been updated:
|
|
25
|
+
- dependencies:
|
|
26
|
+
- ol: 10.2.1 to 10.4.0
|
|
27
|
+
- ol-mapbox-style: 12.3.5 to 12.4.0
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
- Issue #1339: oaf: Fix the pathname if the url ends with a slash.
|
|
31
|
+
|
|
32
|
+
---
|
|
33
|
+
|
|
34
|
+
## 2.45.0 - 2025-01-28
|
|
35
|
+
|
|
36
|
+
### Added
|
|
37
|
+
- vectorStyle:
|
|
38
|
+
- extended 3d example by tileset styling
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
- vectorStyle:
|
|
42
|
+
- renamed configured style type="Cesium" to type="cesium"
|
|
43
|
+
|
|
44
|
+
### Fixed
|
|
45
|
+
- vectorStyle:
|
|
46
|
+
- fixed styling for type "cesium"
|
|
47
|
+
|
|
19
48
|
---
|
|
20
49
|
|
|
21
50
|
## 2.44.0 - 2025-01-22
|
|
@@ -62,6 +62,16 @@
|
|
|
62
62
|
"circle-rotate-with-view": true,
|
|
63
63
|
"circle-opacity": 0.8
|
|
64
64
|
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"id": "4002",
|
|
68
|
+
"name": "Gebäude LoD2",
|
|
69
|
+
"url": "https://daten-hamburg.de/gdi3d/datasource-data/LoD2",
|
|
70
|
+
"typ": "TileSet3D",
|
|
71
|
+
"styleId": "3DTileSetStyle",
|
|
72
|
+
"cesium3DTilesetOptions": {
|
|
73
|
+
"maximumScreenSpaceError": 6
|
|
74
|
+
}
|
|
65
75
|
}
|
|
66
76
|
],
|
|
67
77
|
"cesiumLib":"https://geoportal-hamburg.de/mastercode/cesium/latest/Cesium.js",
|
package/example/index.js
CHANGED
|
@@ -235,6 +235,23 @@ window.mpapi.search("Mümmelmannsberg 72", {
|
|
|
235
235
|
|
|
236
236
|
|
|
237
237
|
// Add 3D functionality to the example:
|
|
238
|
+
// ---------------------------------------
|
|
239
|
+
// example style tileset by vectorstyling using style_v3.json
|
|
240
|
+
function getTilesetStyle (styleId) {
|
|
241
|
+
const styleObject = styleList.returnStyleObject(styleId);
|
|
242
|
+
|
|
243
|
+
if (styleObject !== undefined) {
|
|
244
|
+
const createdStyle = createStyle.createStyle(styleObject, undefined, false, config.wfsImgPath),
|
|
245
|
+
options = {
|
|
246
|
+
color: {
|
|
247
|
+
conditions: createdStyle
|
|
248
|
+
}
|
|
249
|
+
};
|
|
250
|
+
|
|
251
|
+
return new Cesium.Cesium3DTileStyle(options);
|
|
252
|
+
}
|
|
253
|
+
return undefined;
|
|
254
|
+
}
|
|
238
255
|
|
|
239
256
|
// add a click-listener to button, that creates a 3D-map on click
|
|
240
257
|
document.getElementById("enable").addEventListener("click", function () {
|
|
@@ -275,11 +292,14 @@ document.getElementById("enable").addEventListener("click", function () {
|
|
|
275
292
|
|
|
276
293
|
window.mpapi.map = map3D;
|
|
277
294
|
tilesetLayer = new mpapi.Tileset(rawLayerTileset, window.mpapi.map);
|
|
295
|
+
tilesetLayer.tileset?.then(tileset => {
|
|
296
|
+
tileset.style = getTilesetStyle(rawLayerTileset.styleId);
|
|
297
|
+
});
|
|
278
298
|
tilesetLayer.setVisible(true, window.mpapi.map);
|
|
279
299
|
|
|
280
300
|
// entities are 2 simple buildings in the park 'planten und blomen' near Tiergartenstraße
|
|
281
301
|
mpapi.entities.createLayer(rawLayerEntities, window.mpapi.map);
|
|
282
|
-
|
|
302
|
+
mpapi.entities.setVisible(true, rawLayerEntities, window.mpapi.map);
|
|
283
303
|
|
|
284
304
|
mpapi.terrain.createLayer(rawLayerTerrain, window.mpapi.map);
|
|
285
305
|
mpapi.terrain.setVisible(true, rawLayerTerrain, window.mpapi.map);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@masterportal/masterportalapi",
|
|
3
3
|
"author": "Implementierungspartnerschaft Masterportal <info@masterportal.org> (https://www.masterportal.org)",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.46.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Basic functions of the Masterportal as api",
|
|
7
7
|
"repository": {
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"core-js": "^3.33.1",
|
|
23
23
|
"dayjs": "^1.11.10",
|
|
24
|
-
"ol": "^10.
|
|
25
|
-
"ol-mapbox-style": "
|
|
24
|
+
"ol": "^10.4.0",
|
|
25
|
+
"ol-mapbox-style": "12.4.0",
|
|
26
26
|
"olcs": "^2.22.1",
|
|
27
27
|
"proj4": "^2.10.0",
|
|
28
28
|
"xml2js": "^0.6.2"
|
package/src/layer/oaf.js
CHANGED
|
@@ -128,10 +128,11 @@ export function createUrl (rawLayer, loadingParams) {
|
|
|
128
128
|
url.pathname += "/collections/" + rawLayer.collection + "/items";
|
|
129
129
|
}
|
|
130
130
|
else {
|
|
131
|
-
url.pathname
|
|
131
|
+
url.pathname += "collections/" + rawLayer.collection + "/items";
|
|
132
132
|
}
|
|
133
133
|
|
|
134
134
|
}
|
|
135
|
+
|
|
135
136
|
if (typeof rawLayer.limit === "number") {
|
|
136
137
|
url.searchParams.set("limit", rawLayer.limit);
|
|
137
138
|
}
|
package/src/renderer/webgl.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import WebGLPointsLayer from "ol/layer/
|
|
1
|
+
import WebGLPointsLayer from "ol/layer/WebGLVector";
|
|
2
2
|
import WebGLVectorLayerRenderer from "ol/renderer/webgl/VectorLayer";
|
|
3
3
|
import WebGLVectorTileLayerRenderer from "ol/renderer/webgl/VectorTileLayer.js";
|
|
4
4
|
import VectorTile from "ol/layer/VectorTile.js";
|
|
@@ -16,7 +16,7 @@ let legendInformationLength = 0;
|
|
|
16
16
|
* @returns {Boolean} is geometrytype a multiGeometry
|
|
17
17
|
*/
|
|
18
18
|
function isMultiGeometry (geometryType) {
|
|
19
|
-
return geometryType === "MultiPoint" || geometryType === "MultiLineString" || geometryType === "MultiPolygon" || geometryType === "GeometryCollection" || geometryType === "
|
|
19
|
+
return geometryType === "MultiPoint" || geometryType === "MultiLineString" || geometryType === "MultiPolygon" || geometryType === "GeometryCollection" || geometryType === "cesium";
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
/**
|
|
@@ -34,7 +34,9 @@ function getSimpleGeometryStyle (geometryType, feature, rule, isClustered, wfsIm
|
|
|
34
34
|
let styleObject,
|
|
35
35
|
styleObjectForLegend = null;
|
|
36
36
|
|
|
37
|
-
feature
|
|
37
|
+
if (feature) {
|
|
38
|
+
feature.legendValue = legendValue ? legendValue : null;
|
|
39
|
+
}
|
|
38
40
|
|
|
39
41
|
if (geometryType === "Point") {
|
|
40
42
|
styleObject = new PointStyle(feature, style, isClustered);
|
|
@@ -54,10 +56,10 @@ function getSimpleGeometryStyle (geometryType, feature, rule, isClustered, wfsIm
|
|
|
54
56
|
styleObjectForLegend = new PolygonStyle(feature, style, false);
|
|
55
57
|
}
|
|
56
58
|
}
|
|
57
|
-
else if (geometryType === "
|
|
59
|
+
else if (geometryType === "cesium") {
|
|
58
60
|
styleObject = new CesiumStyle(rule);
|
|
59
61
|
styleObject.initialize(rule);
|
|
60
|
-
styleObject.addLegendInfo("
|
|
62
|
+
styleObject.addLegendInfo("cesium", styleObject, rule);
|
|
61
63
|
styleObject.legendValue = legendValue;
|
|
62
64
|
return styleObject;
|
|
63
65
|
}
|
|
@@ -128,7 +130,7 @@ function getMultiGeometryStyle (geometryType, feature, rules, isClustered, wfsIm
|
|
|
128
130
|
}
|
|
129
131
|
});
|
|
130
132
|
}
|
|
131
|
-
else if (geometryType === "
|
|
133
|
+
else if (geometryType === "cesium") {
|
|
132
134
|
rules.forEach(rule => {
|
|
133
135
|
const simpleStyle = getSimpleGeometryStyle(geometryType, feature, rule, isClustered, wfsImgPathFromConfig);
|
|
134
136
|
|
|
@@ -153,7 +155,7 @@ function getMultiGeometryStyle (geometryType, feature, rules, isClustered, wfsIm
|
|
|
153
155
|
* @returns {ol/style/Style} style is always returned
|
|
154
156
|
*/
|
|
155
157
|
function getGeometryStyle (feature, rules, isClustered, wfsImgPathFromConfig) {
|
|
156
|
-
const geometryType = feature ? feature.getGeometry().getType() : "
|
|
158
|
+
const geometryType = feature ? feature.getGeometry().getType() : "cesium";
|
|
157
159
|
|
|
158
160
|
// For simple geometries the first styling rule is used.
|
|
159
161
|
// That algorithm implements an OR statement between multiple valid conditions giving precedence to its order in the style.json.
|
|
@@ -7,7 +7,7 @@ import {checkProperties} from "../lib/valueOperations";
|
|
|
7
7
|
*/
|
|
8
8
|
export function getRulesForFeature (styleObject, feature) {
|
|
9
9
|
styleObject.rules.forEach(rule => {
|
|
10
|
-
if (typeof feature
|
|
10
|
+
if (typeof feature?.get("rotation") !== "undefined") {
|
|
11
11
|
rule.style.rotation = feature.get("rotation");
|
|
12
12
|
}
|
|
13
13
|
});
|
|
@@ -140,7 +140,7 @@ export function checkProperty (featureProperties, key, value) {
|
|
|
140
140
|
* @returns {Boolean} true if all properties are satisfied
|
|
141
141
|
*/
|
|
142
142
|
export function checkProperties (feature, rule) {
|
|
143
|
-
if (rule?.conditions?.properties) {
|
|
143
|
+
if (rule?.conditions?.properties && feature) {
|
|
144
144
|
const featureProperties = feature.getProperties(),
|
|
145
145
|
properties = rule.conditions.properties;
|
|
146
146
|
let key,
|
|
@@ -30,7 +30,7 @@ class CesiumStyle extends StyleClass {
|
|
|
30
30
|
* @returns {ol/style} - The created style.
|
|
31
31
|
*/
|
|
32
32
|
createStyle () {
|
|
33
|
-
return this.createCondition(this.
|
|
33
|
+
return this.createCondition(this.attributes.conditions, this.style);
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
/**
|
|
@@ -40,7 +40,7 @@ class CesiumStyle extends StyleClass {
|
|
|
40
40
|
* @returns {*} - Condition for cesium 3d tile style.
|
|
41
41
|
*/
|
|
42
42
|
createCondition (conditions, style) {
|
|
43
|
-
const
|
|
43
|
+
const color = style?.color || this.attributes.color,
|
|
44
44
|
condition = [];
|
|
45
45
|
let ruleCondition;
|
|
46
46
|
|
package/test/layer/oaf.test.js
CHANGED
|
@@ -396,5 +396,21 @@ describe("oaf.js", function () {
|
|
|
396
396
|
expect(createdUrl.searchParams.get("kapitelbezeichnung")).toEqual("Gymnasien");
|
|
397
397
|
expect(createdUrl.searchParams.get("anzahl_schueler")).toEqual(">1000");
|
|
398
398
|
});
|
|
399
|
+
it("should create the correct url, if the rawLayer url ends with /", () => {
|
|
400
|
+
const rawLayer = {
|
|
401
|
+
id: "id",
|
|
402
|
+
name: "Schulen",
|
|
403
|
+
url: "https://url.de/ogcapi/datasets/",
|
|
404
|
+
collection: "staatliche_schulen",
|
|
405
|
+
typ: "OAF",
|
|
406
|
+
bbox: "0,0,10,10",
|
|
407
|
+
bboxCrs: "EPSG:4326"
|
|
408
|
+
},
|
|
409
|
+
loadingParams = undefined,
|
|
410
|
+
createdUrl = oaf.createUrl(rawLayer, loadingParams);
|
|
411
|
+
|
|
412
|
+
expect(createdUrl.origin).toEqual("https://url.de");
|
|
413
|
+
expect(createdUrl.pathname).toEqual("/ogcapi/datasets/collections/" + rawLayer.collection + "/items");
|
|
414
|
+
});
|
|
399
415
|
});
|
|
400
416
|
});
|
|
@@ -5,7 +5,7 @@ import Feature from "ol/Feature";
|
|
|
5
5
|
import Polygon from "ol/geom/Polygon";
|
|
6
6
|
import MultiPoint from "ol/geom/MultiPoint";
|
|
7
7
|
import * as webgl from "../../src/renderer/webgl";
|
|
8
|
-
import WebGLPointsLayer from "ol/layer/
|
|
8
|
+
import WebGLPointsLayer from "ol/layer/WebGLVector";
|
|
9
9
|
import Layer from "ol/layer/Layer";
|
|
10
10
|
import {returnColor} from "../../src/vectorStyle/lib/colorConvertions";
|
|
11
11
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import createStyle from "../../src/vectorStyle/createStyle";
|
|
2
2
|
import PointStyle from "../../src/vectorStyle/styles/point/stylePoint";
|
|
3
3
|
import LineStringStyle from "../../src/vectorStyle/styles/styleLine";
|
|
4
|
+
import CesiumStyle from "../../src/vectorStyle/styles/styleCesium";
|
|
4
5
|
import PolygonStyle from "../../src/vectorStyle/styles/polygon/stylePolygon";
|
|
5
6
|
import {Style, Stroke, Fill} from "ol/style.js";
|
|
6
7
|
import {GeoJSON} from "ol/format.js";
|
|
@@ -9,6 +10,7 @@ let rules,
|
|
|
9
10
|
jsonObjects,
|
|
10
11
|
multiLineStringRules,
|
|
11
12
|
multiPolygonRules,
|
|
13
|
+
cesiumRules,
|
|
12
14
|
isClustered;
|
|
13
15
|
|
|
14
16
|
const wfsImgPathFromConfig = "/path/to/wfs/images",
|
|
@@ -238,6 +240,12 @@ beforeEach(() => {
|
|
|
238
240
|
polygonStrokeColor: [255, 0, 0, 1]
|
|
239
241
|
}
|
|
240
242
|
}];
|
|
243
|
+
cesiumRules = [{
|
|
244
|
+
style: {
|
|
245
|
+
type: "cesium",
|
|
246
|
+
color: "rgba(50, 154, 26, 0.8)"
|
|
247
|
+
}
|
|
248
|
+
}];
|
|
241
249
|
});
|
|
242
250
|
|
|
243
251
|
describe("createStyle", () => {
|
|
@@ -442,6 +450,13 @@ describe("getSimpleGeometryStyle", function () {
|
|
|
442
450
|
isClustered = true;
|
|
443
451
|
expect(createStyle.getSimpleGeometryStyle("not exist", jsonObjects[0], null, isClustered, wfsImgPathFromConfig)).toBeInstanceOf(Style);
|
|
444
452
|
});
|
|
453
|
+
it("should create Cesium style", function () {
|
|
454
|
+
isClustered = true;
|
|
455
|
+
const tilesetStyle = createStyle.getSimpleGeometryStyle("cesium", undefined, cesiumRules[0], false, wfsImgPathFromConfig);
|
|
456
|
+
|
|
457
|
+
expect(tilesetStyle).toBeInstanceOf(CesiumStyle);
|
|
458
|
+
expect(tilesetStyle.attributes.color).toEqual(cesiumRules[0].style.color);
|
|
459
|
+
});
|
|
445
460
|
});
|
|
446
461
|
|
|
447
462
|
describe("getMultiGeometryStyle", function () {
|
|
@@ -128,5 +128,9 @@ describe("getRuleForIndex", function () {
|
|
|
128
128
|
expect(Array.isArray(getRulesForFeature(styleObject, jsonObjects[1]))).toBe(true);
|
|
129
129
|
expect(getRulesForFeature(styleObject, jsonObjects[1]).length).toEqual(1);
|
|
130
130
|
});
|
|
131
|
+
it("should not fail if feature is undefined - is the case for type=Cesium", function () {
|
|
132
|
+
expect(Array.isArray(getRulesForFeature(styleObject, undefined))).toBe(true);
|
|
133
|
+
expect(getRulesForFeature(styleObject, jsonObjects[1]).length).toEqual(1);
|
|
134
|
+
});
|
|
131
135
|
});
|
|
132
136
|
});
|
|
@@ -185,7 +185,7 @@ describe("checkProperties", function () {
|
|
|
185
185
|
it("should return true for rule that has no properties", function () {
|
|
186
186
|
expect(checkProperties(jsonObjects[0], rules[2])).toBe(true);
|
|
187
187
|
});
|
|
188
|
-
it("should
|
|
189
|
-
expect(checkProperties(
|
|
188
|
+
it("should do nothing if feature is undefined", function () {
|
|
189
|
+
expect(checkProperties(undefined, rules[1])).toBe(true);
|
|
190
190
|
});
|
|
191
191
|
});
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import CesiumStyle from "../../../src/vectorStyle/styles/styleCesium";
|
|
2
|
+
import StyleClass from "../../../src/vectorStyle/styles/style";
|
|
3
|
+
|
|
4
|
+
describe("styleCesium", () => {
|
|
5
|
+
const expectedStyle = ["((${attributes.Dachform} === 'Flachdach'))", "rgba(50, 154, 26, 0.8)"];
|
|
6
|
+
let rule,
|
|
7
|
+
styleCesiumClass;
|
|
8
|
+
|
|
9
|
+
beforeEach(() => {
|
|
10
|
+
rule = {
|
|
11
|
+
conditions: {
|
|
12
|
+
"attributes.Dachform": "Flachdach"
|
|
13
|
+
},
|
|
14
|
+
style: {
|
|
15
|
+
type: "cesium",
|
|
16
|
+
color: "rgba(50, 154, 26, 0.8)"
|
|
17
|
+
}
|
|
18
|
+
};
|
|
19
|
+
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
describe("initialize", function () {
|
|
23
|
+
it("shall call 3 functions for initialization", () => {
|
|
24
|
+
const setConditionsSpy = jest.spyOn(CesiumStyle.prototype, "setConditions"),
|
|
25
|
+
overwriteStylingSpy = jest.spyOn(StyleClass.prototype, "overwriteStyling"),
|
|
26
|
+
setStyleSpy = jest.spyOn(StyleClass.prototype, "setStyle");
|
|
27
|
+
|
|
28
|
+
styleCesiumClass = new CesiumStyle();
|
|
29
|
+
styleCesiumClass.initialize(rule);
|
|
30
|
+
expect(setConditionsSpy).toHaveBeenCalledTimes(1);
|
|
31
|
+
expect(overwriteStylingSpy).toHaveBeenCalledTimes(1);
|
|
32
|
+
expect(setStyleSpy).toHaveBeenCalledTimes(1);
|
|
33
|
+
});
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
describe("createStyle", function () {
|
|
38
|
+
it("shall call createCondition and create expected style", () => {
|
|
39
|
+
const createConditionSpy = jest.spyOn(CesiumStyle.prototype, "createCondition"),
|
|
40
|
+
createdStyle = styleCesiumClass.createStyle();
|
|
41
|
+
|
|
42
|
+
styleCesiumClass = new CesiumStyle();
|
|
43
|
+
expect(createConditionSpy).toHaveBeenCalledTimes(1);
|
|
44
|
+
expect(createConditionSpy).toHaveBeenCalledWith(rule.conditions, expectedStyle);
|
|
45
|
+
expect(createdStyle).toEqual(expectedStyle);
|
|
46
|
+
});
|
|
47
|
+
});
|
|
48
|
+
|
|
49
|
+
describe("createCondition", function () {
|
|
50
|
+
it("createCondition with conditions and no style", () => {
|
|
51
|
+
let condition = null;
|
|
52
|
+
|
|
53
|
+
styleCesiumClass = new CesiumStyle();
|
|
54
|
+
styleCesiumClass.initialize(rule);
|
|
55
|
+
condition = styleCesiumClass.createCondition(rule.conditions);
|
|
56
|
+
|
|
57
|
+
expect(condition).toEqual(expectedStyle);
|
|
58
|
+
});
|
|
59
|
+
|
|
60
|
+
it("createCondition with no conditions and no style", () => {
|
|
61
|
+
let condition = null;
|
|
62
|
+
|
|
63
|
+
styleCesiumClass = new CesiumStyle();
|
|
64
|
+
delete rule.conditions;
|
|
65
|
+
styleCesiumClass.initialize(rule);
|
|
66
|
+
condition = styleCesiumClass.createCondition(undefined);
|
|
67
|
+
|
|
68
|
+
expect(condition).toEqual(["true", "rgba(50, 154, 26, 0.8)"]);
|
|
69
|
+
});
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
it("createCondition no conditions but with style", () => {
|
|
73
|
+
let condition = null;
|
|
74
|
+
const style = {
|
|
75
|
+
color: "rgba(150, 154, 26, 0.8)"
|
|
76
|
+
};
|
|
77
|
+
|
|
78
|
+
styleCesiumClass = new CesiumStyle();
|
|
79
|
+
delete rule.conditions;
|
|
80
|
+
styleCesiumClass.initialize(rule);
|
|
81
|
+
condition = styleCesiumClass.createCondition(undefined, style);
|
|
82
|
+
|
|
83
|
+
expect(condition).toEqual(["true", "rgba(150, 154, 26, 0.8)"]);
|
|
84
|
+
});
|
|
85
|
+
});
|
|
86
|
+
|
|
87
|
+
describe("createCesiumConditionForRule", function () {
|
|
88
|
+
it("createCesiumConditionForRule with an equals condition", () => {
|
|
89
|
+
let condition = null;
|
|
90
|
+
|
|
91
|
+
styleCesiumClass = new CesiumStyle();
|
|
92
|
+
styleCesiumClass.initialize(rule);
|
|
93
|
+
condition = styleCesiumClass.createCesiumConditionForRule([["attributes.Dachform", "Flachdach"]]);
|
|
94
|
+
|
|
95
|
+
expect(condition).toEqual("((${attributes.Dachform} === 'Flachdach'))");
|
|
96
|
+
});
|
|
97
|
+
|
|
98
|
+
it("createCesiumConditionForRule with 2 equals conditions", () => {
|
|
99
|
+
let condition = null;
|
|
100
|
+
|
|
101
|
+
styleCesiumClass = new CesiumStyle();
|
|
102
|
+
styleCesiumClass.initialize(rule);
|
|
103
|
+
condition = styleCesiumClass.createCesiumConditionForRule([["attributes.Dachform", "Flachdach"], ["foo", "bar"]]);
|
|
104
|
+
|
|
105
|
+
expect(condition).toEqual("((${attributes.Dachform} === 'Flachdach') && (${foo} === 'bar'))");
|
|
106
|
+
});
|
|
107
|
+
|
|
108
|
+
it("createCesiumConditionForRule with a >, <= condition", () => {
|
|
109
|
+
let condition = null;
|
|
110
|
+
|
|
111
|
+
styleCesiumClass = new CesiumStyle();
|
|
112
|
+
styleCesiumClass.initialize(rule);
|
|
113
|
+
condition = styleCesiumClass.createCesiumConditionForRule([["attributes.height", [10, 20]]]);
|
|
114
|
+
|
|
115
|
+
expect(condition).toEqual("((${attributes.height} > 10 && ${attributes.height} <= 20))");
|
|
116
|
+
});
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
});
|
|
120
|
+
});
|