@@ -61,36 +61,30 @@ const StyleLayoutPanel = (props, {localize: _}) => (
61
61
< Numeric label = { _ ( 'Padding' ) } attr = "margin.pad" units = "px" />
62
62
</ PlotlyFold >
63
63
< PlotlyFold name = { _ ( 'Geo Style' ) } >
64
- < PlotlySection name = { _ ( 'Land' ) } attr = "geo.showland" >
65
- < Radio
66
- attr = "geo.showland"
67
- options = { [
68
- { label : _ ( 'Show' ) , value : true } ,
69
- { label : _ ( 'Hide' ) , value : false } ,
70
- ] }
71
- />
72
- < ColorPicker label = { _ ( 'Color' ) } attr = "geo.landcolor" />
73
- </ PlotlySection >
74
- < PlotlySection name = { _ ( 'Lakes' ) } attr = "geo.showlakes" >
64
+ < PlotlySection name = { _ ( 'Country Borders' ) } attr = "geo.showcountries" >
75
65
< Radio
76
- attr = "geo.showlakes "
66
+ attr = "geo.showcountries "
77
67
options = { [
78
68
{ label : _ ( 'Show' ) , value : true } ,
79
69
{ label : _ ( 'Hide' ) , value : false } ,
80
70
] }
81
71
/>
82
- < ColorPicker label = { _ ( 'Color' ) } attr = "geo.lakecolor" />
72
+ < Numeric label = { _ ( 'Border Width' ) } attr = "geo.countrywidth" units = "px" />
73
+ < ColorPicker label = { _ ( 'Border Color' ) } attr = "geo.countrycolor" />
83
74
</ PlotlySection >
84
- < PlotlySection name = { _ ( 'Rivers' ) } attr = "geo.showrivers" >
75
+ < PlotlySection
76
+ name = { _ ( 'Sub-Country Unit Borders' ) }
77
+ attr = "geo.showsubunits"
78
+ >
85
79
< Radio
86
- attr = "geo.showrivers "
80
+ attr = "geo.showsubunits "
87
81
options = { [
88
82
{ label : _ ( 'Show' ) , value : true } ,
89
83
{ label : _ ( 'Hide' ) , value : false } ,
90
84
] }
91
85
/>
92
- < Numeric label = { _ ( 'Width' ) } attr = "geo.riverwidth " units = "px" />
93
- < ColorPicker label = { _ ( 'Color' ) } attr = "geo.rivercolor " />
86
+ < Numeric label = { _ ( 'Border Width' ) } attr = "geo.subunitwidth " units = "px" />
87
+ < ColorPicker label = { _ ( 'Border Color' ) } attr = "geo.subunitcolor " />
94
88
</ PlotlySection >
95
89
< PlotlySection name = { _ ( 'Coastlines' ) } attr = "geo.showcoastlines" >
96
90
< Radio
@@ -113,18 +107,38 @@ const StyleLayoutPanel = (props, {localize: _}) => (
113
107
/>
114
108
< ColorPicker label = { _ ( 'Color' ) } attr = "geo.oceancolor" />
115
109
</ PlotlySection >
116
- < PlotlySection name = { _ ( 'Countries ' ) } attr = "geo.showcountries " >
110
+ < PlotlySection name = { _ ( 'Land ' ) } attr = "geo.showland " >
117
111
< Radio
118
- attr = "geo.showcountries "
112
+ attr = "geo.showland "
119
113
options = { [
120
114
{ label : _ ( 'Show' ) , value : true } ,
121
115
{ label : _ ( 'Hide' ) , value : false } ,
122
116
] }
123
117
/>
124
- < Numeric label = { _ ( 'Border Width' ) } attr = "geo.countrywidth" units = "px" />
125
- < ColorPicker label = { _ ( 'Border Color' ) } attr = "geo.countrycolor" />
118
+ < ColorPicker label = { _ ( 'Color' ) } attr = "geo.landcolor" />
119
+ </ PlotlySection >
120
+ < PlotlySection name = { _ ( 'Lakes' ) } attr = "geo.showlakes" >
121
+ < Radio
122
+ attr = "geo.showlakes"
123
+ options = { [
124
+ { label : _ ( 'Show' ) , value : true } ,
125
+ { label : _ ( 'Hide' ) , value : false } ,
126
+ ] }
127
+ />
128
+ < ColorPicker label = { _ ( 'Color' ) } attr = "geo.lakecolor" />
129
+ </ PlotlySection >
130
+ < PlotlySection name = { _ ( 'Rivers' ) } attr = "geo.showrivers" >
131
+ < Radio
132
+ attr = "geo.showrivers"
133
+ options = { [
134
+ { label : _ ( 'Show' ) , value : true } ,
135
+ { label : _ ( 'Hide' ) , value : false } ,
136
+ ] }
137
+ />
138
+ < Numeric label = { _ ( 'Width' ) } attr = "geo.riverwidth" units = "px" />
139
+ < ColorPicker label = { _ ( 'Color' ) } attr = "geo.rivercolor" />
126
140
</ PlotlySection >
127
- < PlotlySection name = { _ ( 'Frame' ) } attr = "geo.showframe" >
141
+ < PlotlySection name = { _ ( 'Map Frame' ) } attr = "geo.showframe" >
128
142
< Radio
129
143
attr = "geo.showframe"
130
144
options = { [
0 commit comments