You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Sets the map style for the given chart (will only work with traces supporting geo, e.g. choropleth, scattergeo)
387
+
///
388
+
/// Parameters :
389
+
///
390
+
/// FitBounds : Determines if and how this subplot's view settings are auto-computed to fit trace data
391
+
///
392
+
/// Resolution : Sets the resolution of the base layers
393
+
///
394
+
/// Scope : Set the scope of the map.
395
+
///
396
+
/// Projection : Determines the type of projection used to display the map
397
+
///
398
+
/// Center : Sets the (lon,lat) coordinates 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. For all projection types, the map's latitude center lies at the middle of the latitude range by default.
399
+
///
400
+
/// Visible : Wether or not the base layers are visible
401
+
///
402
+
/// Domain : The domain of this geo subplot
403
+
///
404
+
/// ShowCoastLine : Sets whether or not the coastlines are drawn.
405
+
///
406
+
/// CoastLineColor : Sets the coastline color.
407
+
///
408
+
/// CoastLineWidth : Sets the coastline stroke width (in px).
409
+
///
410
+
/// ShowLand : Sets whether or not land masses are filled in color.
411
+
///
412
+
/// LandColor : Sets the land mass color.
413
+
///
414
+
/// ShowOcean : Sets whether or not oceans are filled in color.
415
+
///
416
+
/// OceanColor : Sets the ocean color
417
+
///
418
+
/// ShowLakes : Sets whether or not lakes are drawn.
419
+
///
420
+
/// LakeColor : Sets the color of the lakes.
421
+
///
422
+
/// ShowRivers : Sets whether or not rivers are drawn.
423
+
///
424
+
/// RiverColor : Sets color of the rivers.
425
+
///
426
+
/// RiverWidth : Sets the stroke width (in px) of the rivers.
427
+
///
428
+
/// ShowCountries : Sets whether or not country boundaries are drawn.
429
+
///
430
+
/// CountryColor : Sets line color of the country boundaries.
431
+
///
432
+
/// CountryWidth : Sets line width (in px) of the country boundaries.
433
+
///
434
+
/// ShowSubunits : Sets whether or not boundaries of subunits within countries (e.g. states, provinces) are drawn.
435
+
///
436
+
/// SubunitColor : Sets the color of the subunits boundaries.
437
+
///
438
+
/// SubunitWidth : Sets the stroke width (in px) of the subunits boundaries.
439
+
///
440
+
/// ShowFrame : Sets whether or not a frame is drawn around the map.
441
+
///
442
+
/// FrameColor : Sets the color the frame.
443
+
///
444
+
/// FrameWidth : Sets the stroke width (in px) of the frame.
445
+
///
446
+
/// BgColor : Set the background color of the map
447
+
///
448
+
/// LatAxis : Sets the latitudinal axis for this geo trace
449
+
///
450
+
/// LonAxis : Sets the longitudinal axis for this geo trace
0 commit comments