cd-mapgis 1.0.30 → 1.0.31
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/src/StyleUtil.js +4 -4
package/package.json
CHANGED
package/src/StyleUtil.js
CHANGED
|
@@ -30,17 +30,17 @@ export default class StyleUtil {
|
|
|
30
30
|
fill: new Fill({
|
|
31
31
|
color: 'rgba(255, 255, 255, 0.2)'
|
|
32
32
|
}),
|
|
33
|
-
stroke: Stroke({
|
|
33
|
+
stroke: new Stroke({
|
|
34
34
|
color: 'rgba(0, 0, 255, 1)',
|
|
35
35
|
lineDash: [10, 10],
|
|
36
36
|
width: 2
|
|
37
37
|
}),
|
|
38
|
-
image: Circle({
|
|
38
|
+
image: new Circle({
|
|
39
39
|
radius: 5,
|
|
40
|
-
stroke: Stroke({
|
|
40
|
+
stroke: new Stroke({
|
|
41
41
|
color: 'rgba(0, 0, 0, 0.7)'
|
|
42
42
|
}),
|
|
43
|
-
fill: Fill({
|
|
43
|
+
fill: new Fill({
|
|
44
44
|
color: 'rgba(255, 255, 255, 0.2)'
|
|
45
45
|
})
|
|
46
46
|
})
|