-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathlayout_attributes.js
330 lines (319 loc) · 10.2 KB
/
layout_attributes.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
'use strict';
var colorAttrs = require('../../components/color/attributes');
var domainAttrs = require('../domain').attributes;
var dash = require('../../components/drawing/attributes').dash;
var constants = require('./constants');
var overrideAll = require('../../plot_api/edit_types').overrideAll;
var sortObjectKeys = require('../../lib/sort_object_keys');
var geoAxesAttrs = {
range: {
valType: 'info_array',
items: [
{valType: 'number'},
{valType: 'number'}
],
description: [
'Sets the range of this axis (in degrees),',
'sets the map\'s clipped coordinates.'
].join(' ')
},
showgrid: {
valType: 'boolean',
dflt: false,
description: 'Sets whether or not graticule are shown on the map.'
},
tick0: {
valType: 'number',
dflt: 0,
description: [
'Sets the graticule\'s starting tick longitude/latitude.'
].join(' ')
},
dtick: {
valType: 'number',
description: [
'Sets the graticule\'s longitude/latitude tick step.'
].join(' ')
},
gridcolor: {
valType: 'color',
dflt: colorAttrs.lightLine,
description: [
'Sets the graticule\'s stroke color.'
].join(' ')
},
gridwidth: {
valType: 'number',
min: 0,
dflt: 1,
description: [
'Sets the graticule\'s stroke width (in px).'
].join(' ')
},
griddash: dash
};
var attrs = module.exports = overrideAll({
domain: domainAttrs({name: 'geo'}, {
description: [
'Note that geo subplots are constrained by domain.',
'In general, when `projection.scale` is set to 1.',
'a map will fit either its x or y domain, but not both.'
].join(' ')
}),
fitbounds: {
valType: 'enumerated',
values: [false, 'locations', 'geojson'],
dflt: false,
editType: 'plot',
description: [
'Determines if this subplot\'s view settings are auto-computed to fit trace data.',
'On scoped maps, setting `fitbounds` leads to `center.lon` and `center.lat` getting auto-filled.',
'On maps with a non-clipped projection, setting `fitbounds` leads to `center.lon`, `center.lat`,',
'and `projection.rotation.lon` getting auto-filled.',
'On maps with a clipped projection, setting `fitbounds` leads to `center.lon`, `center.lat`,',
'`projection.rotation.lon`, `projection.rotation.lat`, `lonaxis.range` and `lataxis.range`',
'getting auto-filled.',
// TODO we should auto-fill `projection.parallels` for maps
// with conic projection, but how?
'If *locations*, only the trace\'s visible locations are considered in the `fitbounds` computations.',
'If *geojson*, the entire trace input `geojson` (if provided) is considered in the `fitbounds` computations,',
'Defaults to *false*.'
].join(' ')
},
resolution: {
valType: 'enumerated',
values: [110, 50],
dflt: 110,
coerceNumber: true,
description: [
'Sets the resolution of the base layers.',
'The values have units of km/mm',
'e.g. 110 corresponds to a scale ratio of 1:110,000,000.'
].join(' ')
},
scope: {
valType: 'enumerated',
values: sortObjectKeys(constants.scopeDefaults),
dflt: 'un',
description: 'Set the scope of the map.'
},
projection: {
type: {
valType: 'enumerated',
values: sortObjectKeys(constants.projNames),
description: 'Sets the projection type.'
},
rotation: {
lon: {
valType: 'number',
description: [
'Rotates the map along parallels',
'(in degrees East).',
'Defaults to the center of the `lonaxis.range` values.'
].join(' ')
},
lat: {
valType: 'number',
description: [
'Rotates the map along meridians',
'(in degrees North).'
].join(' ')
},
roll: {
valType: 'number',
description: [
'Roll the map (in degrees)',
'For example, a roll of *180* makes the map appear upside down.'
].join(' ')
}
},
tilt: {
valType: 'number',
dflt: 0,
description: [
'For satellite projection type only.',
'Sets the tilt angle of perspective projection.'
].join(' ')
},
distance: {
valType: 'number',
min: 1.001,
dflt: 2,
description: [
'For satellite projection type only.',
'Sets the distance from the center of the sphere to the point of view',
'as a proportion of the sphere’s radius.'
].join(' ')
},
parallels: {
valType: 'info_array',
items: [
{valType: 'number'},
{valType: 'number'}
],
description: [
'For conic projection types only.',
'Sets the parallels (tangent, secant)',
'where the cone intersects the sphere.'
].join(' ')
},
scale: {
valType: 'number',
min: 0,
dflt: 1,
description: [
'Zooms in or out on the map view.',
'A scale of *1* corresponds to the largest zoom level',
'that fits the map\'s lon and lat ranges. '
].join(' ')
},
},
center: {
lon: {
valType: 'number',
description: [
'Sets the longitude of the map\'s center.',
'By default, the map\'s longitude center lies at the middle of the longitude range',
'for scoped projection and above `projection.rotation.lon` otherwise.'
].join(' ')
},
lat: {
valType: 'number',
description: [
'Sets the latitude of the map\'s center.',
'For all projection types, the map\'s latitude center lies',
'at the middle of the latitude range by default.'
].join(' ')
}
},
visible: {
valType: 'boolean',
dflt: true,
description: 'Sets the default visibility of the base layers.'
},
showcoastlines: {
valType: 'boolean',
description: 'Sets whether or not the coastlines are drawn.'
},
coastlinecolor: {
valType: 'color',
dflt: colorAttrs.defaultLine,
description: 'Sets the coastline color.'
},
coastlinewidth: {
valType: 'number',
min: 0,
dflt: 1,
description: 'Sets the coastline stroke width (in px).'
},
showland: {
valType: 'boolean',
dflt: false,
description: 'Sets whether or not land masses are filled in color.'
},
landcolor: {
valType: 'color',
dflt: constants.landColor,
description: 'Sets the land mass color.'
},
showocean: {
valType: 'boolean',
dflt: false,
description: 'Sets whether or not oceans are filled in color.'
},
oceancolor: {
valType: 'color',
dflt: constants.waterColor,
description: 'Sets the ocean color'
},
showlakes: {
valType: 'boolean',
dflt: false,
description: 'Sets whether or not lakes are drawn.'
},
lakecolor: {
valType: 'color',
dflt: constants.waterColor,
description: 'Sets the color of the lakes.'
},
showrivers: {
valType: 'boolean',
dflt: false,
description: 'Sets whether or not rivers are drawn.'
},
rivercolor: {
valType: 'color',
dflt: constants.waterColor,
description: 'Sets color of the rivers.'
},
riverwidth: {
valType: 'number',
min: 0,
dflt: 1,
description: 'Sets the stroke width (in px) of the rivers.'
},
showcountries: {
valType: 'boolean',
description: 'Sets whether or not country boundaries are drawn.'
},
countrycolor: {
valType: 'color',
dflt: colorAttrs.defaultLine,
description: 'Sets line color of the country boundaries.'
},
countrywidth: {
valType: 'number',
min: 0,
dflt: 1,
description: 'Sets line width (in px) of the country boundaries.'
},
showsubunits: {
valType: 'boolean',
description: [
'Sets whether or not boundaries of subunits within countries',
'(e.g. states, provinces) are drawn.'
].join(' ')
},
subunitcolor: {
valType: 'color',
dflt: colorAttrs.defaultLine,
description: 'Sets the color of the subunits boundaries.'
},
subunitwidth: {
valType: 'number',
min: 0,
dflt: 1,
description: 'Sets the stroke width (in px) of the subunits boundaries.'
},
showframe: {
valType: 'boolean',
description: 'Sets whether or not a frame is drawn around the map.'
},
framecolor: {
valType: 'color',
dflt: colorAttrs.defaultLine,
description: 'Sets the color the frame.'
},
framewidth: {
valType: 'number',
min: 0,
dflt: 1,
description: 'Sets the stroke width (in px) of the frame.'
},
bgcolor: {
valType: 'color',
dflt: colorAttrs.background,
description: 'Set the background color of the map'
},
lonaxis: geoAxesAttrs,
lataxis: geoAxesAttrs
}, 'plot', 'from-root');
// set uirevision outside of overrideAll so it can be `editType: 'none'`
attrs.uirevision = {
valType: 'any',
editType: 'none',
description: [
'Controls persistence of user-driven changes in the view',
'(projection and center). Defaults to `layout.uirevision`.'
].join(' ')
};