File tree Expand file tree Collapse file tree 5 files changed +20
-3
lines changed
packages/base/src/dialogs/symbology/vector_layer/types Expand file tree Collapse file tree 5 files changed +20
-3
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,12 @@ const Canonical = ({
94
94
}
95
95
} ) ( ) ;
96
96
97
- return < div className = "jp-gis-layer-symbology-container" > { body } </ div > ;
97
+ return (
98
+ < div className = "jp-gis-layer-symbology-container" >
99
+ < p > Color features based on an attribute containing a hex color code.</ p >
100
+ { body }
101
+ </ div >
102
+ ) ;
98
103
} ;
99
104
100
105
export default Canonical ;
Original file line number Diff line number Diff line change @@ -271,7 +271,12 @@ const Categorized = ({
271
271
}
272
272
} ) ( ) ;
273
273
274
- return < div className = "jp-gis-layer-symbology-container" > { body } </ div > ;
274
+ return (
275
+ < div className = "jp-gis-layer-symbology-container" >
276
+ < p > Color features based on an attribute containing unique values.</ p >
277
+ { body }
278
+ </ div >
279
+ ) ;
275
280
} ;
276
281
277
282
export default Categorized ;
Original file line number Diff line number Diff line change @@ -328,7 +328,12 @@ const Graduated: React.FC<ISymbologyTabbedDialogWithAttributesProps> = ({
328
328
}
329
329
} ) ( ) ;
330
330
331
- return < div className = "jp-gis-layer-symbology-container" > { body } </ div > ;
331
+ return (
332
+ < div className = "jp-gis-layer-symbology-container" >
333
+ < p > Color features based on an attribute containing scalar values.</ p >
334
+ { body }
335
+ </ div >
336
+ ) ;
332
337
} ;
333
338
334
339
export default Graduated ;
Original file line number Diff line number Diff line change @@ -87,6 +87,7 @@ const Heatmap = ({
87
87
88
88
return (
89
89
< div className = "jp-gis-layer-symbology-container" >
90
+ < p > Represent features based on their density using a heatmap.</ p >
90
91
< div className = "jp-gis-symbology-row jp-gis-heatmap" >
91
92
< label htmlFor = "color-ramp-select" > Color Ramp:</ label >
92
93
< CanvasSelectComponent
Original file line number Diff line number Diff line change @@ -210,6 +210,7 @@ const SimpleSymbol = ({
210
210
211
211
return (
212
212
< div className = "jp-gis-layer-symbology-container" >
213
+ < p > Color all features the same way.</ p >
213
214
{ symbologyTab === 'color' ? renderColorTab ( ) : renderRadiusTab ( ) }
214
215
</ div >
215
216
) ;
You can’t perform that action at this time.
0 commit comments