1
- import * as React from 'react' ;
2
-
3
- import {
1
+ import React , {
4
2
useEffect ,
5
3
useState
6
4
} from 'react' ;
7
5
8
- import OlParser from 'geostyler-openlayers-parser' ;
9
-
10
6
import {
11
7
Style as GsStyle
12
8
} from 'geostyler-style' ;
@@ -15,94 +11,90 @@ import CardStyle, {
15
11
CardStyleProps
16
12
} from 'geostyler/dist/Component/CardStyle/CardStyle' ;
17
13
18
- import OlFeature from 'ol/Feature' ;
19
-
20
- import OlLayerVector from 'ol/layer/Vector' ;
21
-
22
- import VectorSource from 'ol/source/Vector' ;
23
-
24
14
import {
25
- StyleFunction ,
26
- StyleLike as OlStyleLike
15
+ StyleFunction as OlStyleFunction
27
16
} from 'ol/style/Style' ;
28
17
29
- import {
30
- MapUtil
31
- } from '@terrestris/ol-util' ;
32
-
33
18
import {
34
19
useMap
35
20
} from '@terrestris/react-geo/dist/Hook/useMap' ;
21
+ import {
22
+ DigitizeUtil
23
+ } from '@terrestris/react-geo/dist/Util/DigitizeUtil' ;
24
+
25
+ import {
26
+ parseStyle
27
+ } from '../../../../../utils/parseStyle' ;
28
+
29
+ const defaultStyle : GsStyle = {
30
+ name : 'Default Style' ,
31
+ rules : [ {
32
+ name : 'Area' ,
33
+ symbolizers : [ {
34
+ kind : 'Fill' ,
35
+ color : '#00b72b' ,
36
+ outlineOpacity : 0.8 ,
37
+ opacity : 0.5 ,
38
+ fillOpacity : 0.8 ,
39
+ outlineWidth : 2 ,
40
+ outlineColor : '#00b72b'
41
+ } ]
42
+ } , {
43
+ name : 'Line' ,
44
+ symbolizers : [ {
45
+ kind : 'Line' ,
46
+ color : '#00b72b' ,
47
+ width : 2 ,
48
+ opacity : 0.8
49
+ } ]
50
+ } , {
51
+ name : 'Point' ,
52
+ symbolizers : [ {
53
+ kind : 'Mark' ,
54
+ wellKnownName : 'circle' ,
55
+ color : '#00b72b' ,
56
+ strokeColor : '#00b72b' ,
57
+ strokeOpacity : 0.8 ,
58
+ opacity : 0.5 ,
59
+ radius : 7
60
+ } ] ,
61
+ filter : [
62
+ '==' ,
63
+ 'label' ,
64
+ 'undefined'
65
+ ]
66
+ } , {
67
+ name : 'Text' ,
68
+ symbolizers : [ {
69
+ kind : 'Text' ,
70
+ label : '{{label}}' ,
71
+ size : 12 ,
72
+ font : [
73
+ 'sans-serif'
74
+ ] ,
75
+ opacity : 0.8 ,
76
+ color : '#00b72b' ,
77
+ offset : [
78
+ 5 ,
79
+ 5
80
+ ] ,
81
+ haloColor : '#00b72b' ,
82
+ haloWidth : 1
83
+ } ] ,
84
+ filter : [
85
+ '!=' ,
86
+ 'label' ,
87
+ 'undefined'
88
+ ]
89
+ } ]
90
+ } ;
36
91
37
92
export type StylingComponentProps = CardStyleProps & { } ;
38
93
39
94
export const StylingComponent : React . FC < StylingComponentProps > = ( {
40
95
...passThroughProps
41
96
} ) : JSX . Element => {
42
97
43
- const defaultStyle : GsStyle = {
44
- name : 'Default Style' ,
45
- rules : [ {
46
- name : 'Area' ,
47
- symbolizers : [ {
48
- kind : 'Fill' ,
49
- color : '#00b72b' ,
50
- outlineOpacity : 0.8 ,
51
- opacity : 0.5 ,
52
- fillOpacity : 0.8 ,
53
- outlineWidth : 2 ,
54
- outlineColor : '#00b72b'
55
- } ]
56
- } , {
57
- name : 'Line' ,
58
- symbolizers : [ {
59
- kind : 'Line' ,
60
- color : '#00b72b' ,
61
- width : 2 ,
62
- opacity : 0.8
63
- } ]
64
- } , {
65
- name : 'Point' ,
66
- symbolizers : [ {
67
- kind : 'Mark' ,
68
- wellKnownName : 'circle' ,
69
- color : '#00b72b' ,
70
- strokeColor : '#00b72b' ,
71
- strokeOpacity : 0.8 ,
72
- opacity : 0.5 ,
73
- radius : 7
74
- } ] ,
75
- filter : [
76
- '==' ,
77
- 'label' ,
78
- 'undefined'
79
- ]
80
- } , {
81
- name : 'Text' ,
82
- symbolizers : [ {
83
- kind : 'Text' ,
84
- label : '{{label}}' ,
85
- size : 12 ,
86
- font : [
87
- 'sans-serif'
88
- ] ,
89
- opacity : 0.8 ,
90
- color : '#00b72b' ,
91
- offset : [
92
- 5 ,
93
- 5
94
- ] ,
95
- haloColor : '#00b72b' ,
96
- haloWidth : 1
97
- } ] ,
98
- filter : [
99
- '!=' ,
100
- 'label' ,
101
- 'undefined'
102
- ]
103
- } ]
104
- } ;
105
-
106
98
const [ style , setStyle ] = useState < GsStyle > ( defaultStyle ) ;
107
99
108
100
const map = useMap ( ) ;
@@ -112,73 +104,17 @@ export const StylingComponent: React.FC<StylingComponentProps> = ({
112
104
return ;
113
105
}
114
106
115
- const olParser = new OlParser ( ) ;
116
-
117
- let drawVectorLayer = MapUtil . getLayerByName ( map , 'react-geo_digitize' ) as OlLayerVector < VectorSource > ;
118
-
119
- const parseStyles = async ( ) => {
120
- let olStylePolygon : OlStyleLike ;
121
- let olStyleLineString : OlStyleLike ;
122
- let olStylePoint : OlStyleLike ;
123
- let olStyleText : OlStyleLike ;
124
-
125
- for ( const rule of style . rules ) {
126
- const newStyle : GsStyle = {
127
- name : '' ,
128
- rules : [ rule ]
129
- } ;
130
-
131
- const olStyle = await olParser . writeStyle ( newStyle ) ;
132
-
133
- if ( ! olStyle . output ) {
134
- return ;
135
- }
136
-
137
- if ( rule . symbolizers [ 0 ] . kind === 'Fill' ) {
138
- olStylePolygon = olStyle . output ;
139
- }
140
-
141
- if ( rule . symbolizers [ 0 ] . kind === 'Text' ) {
142
- olStyleText = olStyle . output ;
143
- }
144
-
145
- if ( rule . symbolizers [ 0 ] . kind === 'Line' ) {
146
- olStyleLineString = olStyle . output ;
147
- }
148
-
149
- if ( rule . symbolizers [ 0 ] . kind === 'Mark' ) {
150
- olStylePoint = olStyle . output ;
151
- }
152
- }
153
-
154
- const drawLayerStyleFunction = ( feature : OlFeature , resolution : number ) => {
155
- const geometryType = feature . getGeometry ( ) ?. getType ( ) ;
156
-
157
- if ( ! geometryType ) {
158
- return ;
159
- }
160
-
161
- if ( [ 'MultiPolygon' , 'Polygon' , 'Circle' ] . includes ( geometryType ) ) {
162
- return typeof olStylePolygon === 'function' ? olStylePolygon ( feature , resolution ) : olStylePolygon ;
163
- }
164
-
165
- if ( [ 'MultiLineString' , 'LineString' ] . includes ( geometryType ) ) {
166
- return typeof olStyleLineString === 'function' ? olStyleLineString ( feature , resolution ) : olStyleLineString ;
167
- }
107
+ const setStyleToLayer = async ( ) => {
108
+ const drawVectorLayer = DigitizeUtil . getDigitizeLayer ( map ) ;
168
109
169
- if ( [ 'MultiPoint' , 'Point' ] . includes ( geometryType ) ) {
170
- if ( feature . get ( 'label' ) ) {
171
- return typeof olStyleText === 'function' ? olStyleText ( feature , resolution ) : olStyleText ;
172
- }
110
+ const drawLayerStyleFunction = await parseStyle ( style ) ;
173
111
174
- return typeof olStylePoint === 'function' ? olStylePoint ( feature , resolution ) : olStylePoint ;
175
- }
176
- } ;
112
+ drawVectorLayer . set ( 'gsStyle' , style ) ;
177
113
178
- drawVectorLayer . setStyle ( drawLayerStyleFunction as StyleFunction ) ;
114
+ drawVectorLayer . setStyle ( drawLayerStyleFunction as OlStyleFunction ) ;
179
115
} ;
180
116
181
- parseStyles ( ) ;
117
+ setStyleToLayer ( ) ;
182
118
} , [ style , map ] ) ;
183
119
184
120
return (
0 commit comments