@@ -70,36 +70,30 @@ const StyleLayoutPanel = (props, {localize: _}) => (
70
70
< Numeric label = { _ ( 'Padding' ) } attr = "margin.pad" units = "px" />
71
71
</ PlotlyFold >
72
72
< PlotlyFold name = { _ ( 'Geo Style' ) } >
73
- < PlotlySection name = { _ ( 'Land' ) } attr = "geo.showland" >
74
- < Radio
75
- attr = "geo.showland"
76
- options = { [
77
- { label : _ ( 'Show' ) , value : true } ,
78
- { label : _ ( 'Hide' ) , value : false } ,
79
- ] }
80
- />
81
- < ColorPicker label = { _ ( 'Color' ) } attr = "geo.landcolor" />
82
- </ PlotlySection >
83
- < PlotlySection name = { _ ( 'Lakes' ) } attr = "geo.showlakes" >
73
+ < PlotlySection name = { _ ( 'Country Borders' ) } attr = "geo.showcountries" >
84
74
< Radio
85
- attr = "geo.showlakes "
75
+ attr = "geo.showcountries "
86
76
options = { [
87
77
{ label : _ ( 'Show' ) , value : true } ,
88
78
{ label : _ ( 'Hide' ) , value : false } ,
89
79
] }
90
80
/>
91
- < ColorPicker label = { _ ( 'Color' ) } attr = "geo.lakecolor" />
81
+ < Numeric label = { _ ( 'Border Width' ) } attr = "geo.countrywidth" units = "px" />
82
+ < ColorPicker label = { _ ( 'Border Color' ) } attr = "geo.countrycolor" />
92
83
</ PlotlySection >
93
- < PlotlySection name = { _ ( 'Rivers' ) } attr = "geo.showrivers" >
84
+ < PlotlySection
85
+ name = { _ ( 'Sub-Country Unit Borders' ) }
86
+ attr = "geo.showsubunits"
87
+ >
94
88
< Radio
95
- attr = "geo.showrivers "
89
+ attr = "geo.showsubunits "
96
90
options = { [
97
91
{ label : _ ( 'Show' ) , value : true } ,
98
92
{ label : _ ( 'Hide' ) , value : false } ,
99
93
] }
100
94
/>
101
- < Numeric label = { _ ( 'Width' ) } attr = "geo.riverwidth " units = "px" />
102
- < ColorPicker label = { _ ( 'Color' ) } attr = "geo.rivercolor " />
95
+ < Numeric label = { _ ( 'Border Width' ) } attr = "geo.subunitwidth " units = "px" />
96
+ < ColorPicker label = { _ ( 'Border Color' ) } attr = "geo.subunitcolor " />
103
97
</ PlotlySection >
104
98
< PlotlySection name = { _ ( 'Coastlines' ) } attr = "geo.showcoastlines" >
105
99
< Radio
@@ -122,18 +116,38 @@ const StyleLayoutPanel = (props, {localize: _}) => (
122
116
/>
123
117
< ColorPicker label = { _ ( 'Color' ) } attr = "geo.oceancolor" />
124
118
</ PlotlySection >
125
- < PlotlySection name = { _ ( 'Countries ' ) } attr = "geo.showcountries " >
119
+ < PlotlySection name = { _ ( 'Land ' ) } attr = "geo.showland " >
126
120
< Radio
127
- attr = "geo.showcountries "
121
+ attr = "geo.showland "
128
122
options = { [
129
123
{ label : _ ( 'Show' ) , value : true } ,
130
124
{ label : _ ( 'Hide' ) , value : false } ,
131
125
] }
132
126
/>
133
- < Numeric label = { _ ( 'Border Width' ) } attr = "geo.countrywidth" units = "px" />
134
- < ColorPicker label = { _ ( 'Border Color' ) } attr = "geo.countrycolor" />
127
+ < ColorPicker label = { _ ( 'Color' ) } attr = "geo.landcolor" />
128
+ </ PlotlySection >
129
+ < PlotlySection name = { _ ( 'Lakes' ) } attr = "geo.showlakes" >
130
+ < Radio
131
+ attr = "geo.showlakes"
132
+ options = { [
133
+ { label : _ ( 'Show' ) , value : true } ,
134
+ { label : _ ( 'Hide' ) , value : false } ,
135
+ ] }
136
+ />
137
+ < ColorPicker label = { _ ( 'Color' ) } attr = "geo.lakecolor" />
138
+ </ PlotlySection >
139
+ < PlotlySection name = { _ ( 'Rivers' ) } attr = "geo.showrivers" >
140
+ < Radio
141
+ attr = "geo.showrivers"
142
+ options = { [
143
+ { label : _ ( 'Show' ) , value : true } ,
144
+ { label : _ ( 'Hide' ) , value : false } ,
145
+ ] }
146
+ />
147
+ < Numeric label = { _ ( 'Width' ) } attr = "geo.riverwidth" units = "px" />
148
+ < ColorPicker label = { _ ( 'Color' ) } attr = "geo.rivercolor" />
135
149
</ PlotlySection >
136
- < PlotlySection name = { _ ( 'Frame' ) } attr = "geo.showframe" >
150
+ < PlotlySection name = { _ ( 'Map Frame' ) } attr = "geo.showframe" >
137
151
< Radio
138
152
attr = "geo.showframe"
139
153
options = { [
0 commit comments