@mapcomponents/react-maplibre 0.1.75 → 0.1.77

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.esm.js CHANGED
@@ -3469,27 +3469,32 @@ function useLayer(props) {
3469
3469
  return;
3470
3470
  }
3471
3471
  initializedRef.current = true;
3472
- mapHook.map.addLayer(__assign(__assign(__assign(__assign({}, props.options), (props.geojson &&
3473
- (!((_a = props.options) === null || _a === void 0 ? void 0 : _a.source) ||
3474
- (((_c = (_b = props.options) === null || _b === void 0 ? void 0 : _b.source) === null || _c === void 0 ? void 0 : _c.attribution) && !((_e = (_d = props.options) === null || _d === void 0 ? void 0 : _d.source) === null || _e === void 0 ? void 0 : _e.type))) // if either options.source isn't defined or only options.source.attribution is defined
3475
- ? {
3476
- source: {
3477
- type: 'geojson',
3478
- data: props.geojson,
3479
- attribution: ((_f = props.options.source) === null || _f === void 0 ? void 0 : _f.attribution)
3480
- ? (_g = props.options.source) === null || _g === void 0 ? void 0 : _g.attribution
3481
- : '',
3482
- },
3483
- }
3484
- : {})), (typeof ((_h = props.options) === null || _h === void 0 ? void 0 : _h.source) === 'string'
3485
- ? {
3486
- source: props.options.source,
3487
- }
3488
- : {})), { id: layerId.current }), props.insertBeforeLayer
3489
- ? props.insertBeforeLayer
3490
- : props.insertBeforeFirstSymbolLayer
3491
- ? mapHook.map.firstSymbolLayer
3492
- : undefined, mapHook.componentId);
3472
+ try {
3473
+ mapHook.map.addLayer(__assign(__assign(__assign(__assign({}, props.options), (props.geojson &&
3474
+ (!((_a = props.options) === null || _a === void 0 ? void 0 : _a.source) ||
3475
+ (((_c = (_b = props.options) === null || _b === void 0 ? void 0 : _b.source) === null || _c === void 0 ? void 0 : _c.attribution) && !((_e = (_d = props.options) === null || _d === void 0 ? void 0 : _d.source) === null || _e === void 0 ? void 0 : _e.type))) // if either options.source isn't defined or only options.source.attribution is defined
3476
+ ? {
3477
+ source: {
3478
+ type: 'geojson',
3479
+ data: props.geojson,
3480
+ attribution: ((_f = props.options.source) === null || _f === void 0 ? void 0 : _f.attribution)
3481
+ ? (_g = props.options.source) === null || _g === void 0 ? void 0 : _g.attribution
3482
+ : '',
3483
+ },
3484
+ }
3485
+ : {})), (typeof ((_h = props.options) === null || _h === void 0 ? void 0 : _h.source) === 'string'
3486
+ ? {
3487
+ source: props.options.source,
3488
+ }
3489
+ : {})), { id: layerId.current }), props.insertBeforeLayer
3490
+ ? props.insertBeforeLayer
3491
+ : props.insertBeforeFirstSymbolLayer
3492
+ ? mapHook.map.firstSymbolLayer
3493
+ : undefined, mapHook.componentId);
3494
+ }
3495
+ catch (e) {
3496
+ console.log(e);
3497
+ }
3493
3498
  setLayer(function () { var _a; return (_a = mapHook.map) === null || _a === void 0 ? void 0 : _a.map.getLayer(layerId.current); });
3494
3499
  if (typeof props.onHover !== 'undefined') {
3495
3500
  mapHook.map.on('mousemove', layerId.current, props.onHover, mapHook.componentId);
@@ -3638,7 +3643,6 @@ var getDefaultPaintPropsByType = function (type, defaultPaintOverrides) {
3638
3643
  'line-blur': 0,
3639
3644
  };
3640
3645
  case 'circle':
3641
- default:
3642
3646
  if (defaultPaintOverrides === null || defaultPaintOverrides === void 0 ? void 0 : defaultPaintOverrides.circle) {
3643
3647
  return defaultPaintOverrides.circle;
3644
3648
  }
@@ -3648,6 +3652,8 @@ var getDefaultPaintPropsByType = function (type, defaultPaintOverrides) {
3648
3652
  'circle-stroke-width': 2,
3649
3653
  'circle-radius': 4,
3650
3654
  };
3655
+ default:
3656
+ return {};
3651
3657
  }
3652
3658
  };
3653
3659
 
@@ -3683,13 +3689,14 @@ var getDefaulLayerTypeByGeometry = function (geojson) {
3683
3689
  * @component
3684
3690
  */
3685
3691
  var MlGeoJsonLayer = function (props) {
3692
+ var _a, _b;
3686
3693
  var layerType = props.type || getDefaulLayerTypeByGeometry(props.geojson);
3687
3694
  // Use a useRef hook to reference the layer object to be able to access it later inside useEffect hooks
3688
3695
  useLayer({
3689
3696
  mapId: props.mapId,
3690
3697
  layerId: props.layerId || 'MlGeoJsonLayer-' + uuid.v4(),
3691
3698
  geojson: props.geojson,
3692
- options: __assign(__assign({ paint: props.paint || getDefaultPaintPropsByType(layerType, props.defaultPaintOverrides), layout: props.layout || {} }, props.options), { type: layerType }),
3699
+ options: __assign(__assign({}, props.options), { paint: __assign(__assign({}, (props.paint || getDefaultPaintPropsByType(layerType, props.defaultPaintOverrides))), (_a = props === null || props === void 0 ? void 0 : props.options) === null || _a === void 0 ? void 0 : _a.paint), layout: __assign(__assign({}, ((props === null || props === void 0 ? void 0 : props.layout) || {})), (_b = props === null || props === void 0 ? void 0 : props.options) === null || _b === void 0 ? void 0 : _b.layout), type: layerType }),
3693
3700
  insertBeforeLayer: props.insertBeforeLayer,
3694
3701
  onHover: props.onHover,
3695
3702
  onClick: props.onClick,
@@ -6388,8 +6395,8 @@ var MlWmsLoader = function (props) {
6388
6395
  }, [_capabilities]);
6389
6396
  var name = React.useMemo(function () {
6390
6397
  var _a, _b;
6391
- return ((_a = props === null || props === void 0 ? void 0 : props.config) === null || _a === void 0 ? void 0 : _a.name) || ((_b = capabilities === null || capabilities === void 0 ? void 0 : capabilities.Service) === null || _b === void 0 ? void 0 : _b.Title);
6392
- }, [(_f = props === null || props === void 0 ? void 0 : props.config) === null || _f === void 0 ? void 0 : _f.name, (_g = capabilities === null || capabilities === void 0 ? void 0 : capabilities.Service) === null || _g === void 0 ? void 0 : _g.Title]);
6398
+ return (props === null || props === void 0 ? void 0 : props.name) || ((_a = props === null || props === void 0 ? void 0 : props.config) === null || _a === void 0 ? void 0 : _a.name) || ((_b = capabilities === null || capabilities === void 0 ? void 0 : capabilities.Service) === null || _b === void 0 ? void 0 : _b.Title);
6399
+ }, [props === null || props === void 0 ? void 0 : props.name, (_f = props === null || props === void 0 ? void 0 : props.config) === null || _f === void 0 ? void 0 : _f.name, (_g = capabilities === null || capabilities === void 0 ? void 0 : capabilities.Service) === null || _g === void 0 ? void 0 : _g.Title]);
6393
6400
  var layers = React.useMemo(function () {
6394
6401
  var _a;
6395
6402
  if (!(props === null || props === void 0 ? void 0 : props.setLayers))
@@ -6483,10 +6490,11 @@ var MlWmsLoader = function (props) {
6483
6490
  .catch(function (error) { return console.log(error); });
6484
6491
  }, [capabilities, getFeatureInfoUrl, props, mapHook, layers]);
6485
6492
  var _featureInfoEventsEnabled = React.useMemo(function () {
6486
- return (featureInfoEventsEnabled &&
6493
+ return (((typeof (props === null || props === void 0 ? void 0 : props.featureInfoActive) !== 'undefined' && props.featureInfoActive) ||
6494
+ featureInfoEventsEnabled) &&
6487
6495
  (layers === null || layers === void 0 ? void 0 : layers.some(function (layer) { return layer.visible && layer.queryable; })) &&
6488
6496
  !!mapHook.map);
6489
- }, [featureInfoEventsEnabled, layers, mapHook.map]);
6497
+ }, [props === null || props === void 0 ? void 0 : props.featureInfoActive, featureInfoEventsEnabled, layers, mapHook.map]);
6490
6498
  React.useEffect(function () {
6491
6499
  if (!_featureInfoEventsEnabled) {
6492
6500
  resetFeatureInfo();
@@ -6565,7 +6573,14 @@ var MlWmsLoader = function (props) {
6565
6573
  return theme.palette.info.light;
6566
6574
  return theme.palette.grey[300];
6567
6575
  },
6568
- }, "aria-label": "featureinfo", onClick: function () { return setFeatureInfoEventsEnabled(function (current) { return !current; }); }, disabled: !(layers === null || layers === void 0 ? void 0 : layers.some(function (layer) { return layer.visible && layer.queryable; })) },
6576
+ }, "aria-label": "featureinfo", onClick: function () {
6577
+ if (typeof (props === null || props === void 0 ? void 0 : props.setFeatureInfoActive) === 'function') {
6578
+ props.setFeatureInfoActive(function (current) { return !current; });
6579
+ }
6580
+ else {
6581
+ setFeatureInfoEventsEnabled(function (current) { return !current; });
6582
+ }
6583
+ }, disabled: !(layers === null || layers === void 0 ? void 0 : layers.some(function (layer) { return layer.visible && layer.queryable; })) },
6569
6584
  React__default["default"].createElement(InfoIcon__default["default"], null))),
6570
6585
  React__default["default"].createElement(IconButton__default["default"], { edge: props.showDeleteButton ? false : 'end', sx: __assign({ padding: '4px', marginTop: '-3px' }, (props.showDeleteButton ? { marginRight: '4px' } : {})), "aria-label": "open", onClick: function () { return setOpen(function (current) { return !current; }); } }, open ? React__default["default"].createElement(iconsMaterial.ExpandLess, null) : React__default["default"].createElement(iconsMaterial.ExpandMore, null)),
6571
6586
  props.showDeleteButton && (React__default["default"].createElement(React__default["default"].Fragment, null,
@@ -7540,7 +7555,8 @@ function LayerPropertyForm(_a) {
7540
7555
  var key = React.useRef(Math.round(Math.random() * 10000000000));
7541
7556
  //const onChange = (event) => {};
7542
7557
  var getFormInputByType = React.useCallback(function (key) {
7543
- if (mapPropKeyToFormInputTypeKeys.indexOf(key) !== -1) {
7558
+ if (mapPropKeyToFormInputTypeKeys.indexOf(key) !== -1 &&
7559
+ (typeof paintProps[key] === 'number' || typeof paintProps[key] === 'string')) {
7544
7560
  var label = (React__default["default"].createElement(material.Typography, { id: key + '_label', gutterBottom: true }, key));
7545
7561
  switch (mapPropKeyToFormInputType[key]) {
7546
7562
  case 'slider':
@@ -7689,16 +7705,16 @@ LayerListItemVectorLayer.defaultProps = {
7689
7705
  };
7690
7706
 
7691
7707
  function LayerListItem(_a) {
7692
- var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
7708
+ var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
7693
7709
  var layerComponent = _a.layerComponent, visible = _a.visible, type = _a.type, name = _a.name, description = _a.description, configurable = _a.configurable, setLayerState = _a.setLayerState, props = __rest(_a, ["layerComponent", "visible", "type", "name", "description", "configurable", "setLayerState"]);
7694
- var _m = React.useState(true), localVisible = _m[0], setLocalVisible = _m[1];
7695
- var _o = React.useState(false), paintPropsFormVisible = _o[0], setPaintPropsFormVisible = _o[1];
7696
- var _p = React.useState(false), showDeletionConfirmationDialog = _p[0], setShowDeletionConfirmationDialog = _p[1];
7710
+ var _o = React.useState(true), localVisible = _o[0], setLocalVisible = _o[1];
7711
+ var _p = React.useState(false), paintPropsFormVisible = _p[0], setPaintPropsFormVisible = _p[1];
7712
+ var _q = React.useState(false), showDeletionConfirmationDialog = _q[0], setShowDeletionConfirmationDialog = _q[1];
7697
7713
  var deletedRef = React.useRef(false);
7698
7714
  var visibleRef = React.useRef(visible);
7699
7715
  // this state variable is used for layer components that provide a paint attribute
7700
- var _q = React.useState(((_b = layerComponent === null || layerComponent === void 0 ? void 0 : layerComponent.props) === null || _b === void 0 ? void 0 : _b.paint) ||
7701
- getDefaultPaintPropsByType(((_c = layerComponent === null || layerComponent === void 0 ? void 0 : layerComponent.props) === null || _c === void 0 ? void 0 : _c.type) || getDefaulLayerTypeByGeometry(layerComponent.props.geojson))), paintProps = _q[0], setPaintProps = _q[1];
7716
+ var _r = React.useState(((_b = layerComponent === null || layerComponent === void 0 ? void 0 : layerComponent.props) === null || _b === void 0 ? void 0 : _b.paint) ||
7717
+ getDefaultPaintPropsByType(((_c = layerComponent === null || layerComponent === void 0 ? void 0 : layerComponent.props) === null || _c === void 0 ? void 0 : _c.type) || getDefaulLayerTypeByGeometry(layerComponent.props.geojson))), paintProps = _r[0], setPaintProps = _r[1];
7702
7718
  var _visible = React.useMemo(function () {
7703
7719
  if (!visible) {
7704
7720
  return false;
@@ -7772,7 +7788,7 @@ function LayerListItem(_a) {
7772
7788
  paddingLeft: 0,
7773
7789
  paddingTop: 0,
7774
7790
  paddingBottom: '4px',
7775
- }, secondaryAction: configurable ? (React__default["default"].createElement(React__default["default"].Fragment, null,
7791
+ }, secondaryAction: configurable && ((_g = Object.keys(paintProps)) === null || _g === void 0 ? void 0 : _g.length) > 0 ? (React__default["default"].createElement(React__default["default"].Fragment, null,
7776
7792
  React__default["default"].createElement(material.IconButton, { edge: props.showDeleteButton ? false : 'end', "aria-label": "visibility", onClick: function () {
7777
7793
  setPaintPropsFormVisible(function (current) {
7778
7794
  return !current;
@@ -7804,8 +7820,11 @@ function LayerListItem(_a) {
7804
7820
  } })),
7805
7821
  React__default["default"].createElement(material.ListItemText, { variant: "layerlist", primary: name, secondary: description }))),
7806
7822
  _layerComponent,
7807
- !((_g = layerComponent === null || layerComponent === void 0 ? void 0 : layerComponent.props) === null || _g === void 0 ? void 0 : _g.layers) && configurable && paintPropsFormVisible && (React__default["default"].createElement(LayerPropertyForm, { paintProps: paintProps, setPaintProps: setPaintProps, layerType: layerType })),
7808
- ((_h = layerComponent === null || layerComponent === void 0 ? void 0 : layerComponent.props) === null || _h === void 0 ? void 0 : _h.layers) && (React__default["default"].createElement(LayerListFolder, { visible: localVisible, setVisible: setLocalVisible, name: name }, (_l = (_k = (_j = layerComponent === null || layerComponent === void 0 ? void 0 : layerComponent.props) === null || _j === void 0 ? void 0 : _j.layers) === null || _k === void 0 ? void 0 : _k.map) === null || _l === void 0 ? void 0 : _l.call(_k, function (_el, idx) { return (React__default["default"].createElement(LayerListItemVectorLayer, { vtProps: layerComponent === null || layerComponent === void 0 ? void 0 : layerComponent.props, setVtProps: setLayerState, id: '' + idx, key: '' + idx, visibleMaster: _visible })); })))));
7823
+ !((_h = layerComponent === null || layerComponent === void 0 ? void 0 : layerComponent.props) === null || _h === void 0 ? void 0 : _h.layers) &&
7824
+ Object.keys(paintProps).length > 0 &&
7825
+ configurable &&
7826
+ paintPropsFormVisible && (React__default["default"].createElement(LayerPropertyForm, { paintProps: paintProps, setPaintProps: setPaintProps, layerType: layerType })),
7827
+ ((_j = layerComponent === null || layerComponent === void 0 ? void 0 : layerComponent.props) === null || _j === void 0 ? void 0 : _j.layers) && (React__default["default"].createElement(LayerListFolder, { visible: localVisible, setVisible: setLocalVisible, name: name }, (_m = (_l = (_k = layerComponent === null || layerComponent === void 0 ? void 0 : layerComponent.props) === null || _k === void 0 ? void 0 : _k.layers) === null || _l === void 0 ? void 0 : _l.map) === null || _m === void 0 ? void 0 : _m.call(_l, function (_el, idx) { return (React__default["default"].createElement(LayerListItemVectorLayer, { vtProps: layerComponent === null || layerComponent === void 0 ? void 0 : layerComponent.props, setVtProps: setLayerState, id: '' + idx, key: '' + idx, visibleMaster: _visible })); })))));
7809
7828
  }
7810
7829
  LayerListItem.defaultProps = {
7811
7830
  type: 'layer',
@@ -7822,7 +7841,7 @@ function LayerListItemFactory(props) {
7822
7841
  layerContext.setBackgroundLayers(state === null || state === void 0 ? void 0 : state.layers);
7823
7842
  }, visible: true, configurable: true, type: "layer", name: "Background" })),
7824
7843
  props.layers.map(function (layer, idx) {
7825
- var _a;
7844
+ var _a, _b;
7826
7845
  if (!(layer === null || layer === void 0 ? void 0 : layer.id))
7827
7846
  return null;
7828
7847
  switch (layer.type) {
@@ -7855,6 +7874,16 @@ function LayerListItemFactory(props) {
7855
7874
  }
7856
7875
  return _layers;
7857
7876
  });
7877
+ }, featureInfoActive: ((_b = layer === null || layer === void 0 ? void 0 : layer.config) === null || _b === void 0 ? void 0 : _b.featureInfoActive) || false, setFeatureInfoActive: function (updateFunction) {
7878
+ var _a;
7879
+ (_a = props === null || props === void 0 ? void 0 : props.setLayers) === null || _a === void 0 ? void 0 : _a.call(props, function (current) {
7880
+ var _a;
7881
+ var _layers = __spreadArray([], current, true);
7882
+ if (typeof updateFunction === 'function') {
7883
+ _layers[idx].config.featureInfoActive = updateFunction(((_a = _layers[idx].config) === null || _a === void 0 ? void 0 : _a.featureInfoActive) || false);
7884
+ }
7885
+ return _layers;
7886
+ });
7858
7887
  }, showDeleteButton: true }))));
7859
7888
  default:
7860
7889
  return null;
@@ -7866,6 +7895,7 @@ function LayerListItemFactory(props) {
7866
7895
  }
7867
7896
  LayerListItemFactory.defaultProps = {
7868
7897
  mapId: undefined,
7898
+ layers: [],
7869
7899
  };
7870
7900
 
7871
7901
  var types = [
@@ -7935,7 +7965,7 @@ function WmsLayerForm(props) {
7935
7965
  }
7936
7966
 
7937
7967
  var AddLayerPopup = function (props) {
7938
- var _a = React.useState(), layerConfig = _a[0], setLayerConfig = _a[1];
7968
+ var _a = React.useState(props === null || props === void 0 ? void 0 : props.config), layerConfig = _a[0], setLayerConfig = _a[1];
7939
7969
  var updateLayerType = function (type) {
7940
7970
  setLayerConfig({ type: type, config: {} });
7941
7971
  };
@@ -8149,13 +8179,25 @@ var SelectStylePopup = function (props) {
8149
8179
  var handleCancel = function () {
8150
8180
  props.setOpen(false);
8151
8181
  };
8152
- return (React__default["default"].createElement(material.Dialog, { open: props.open, onClose: handleCancel, PaperProps: { sx: { padding: '20px' } } }, (_a = props === null || props === void 0 ? void 0 : props.styles) === null || _a === void 0 ? void 0 : _a.map(function (style) {
8153
- return (React__default["default"].createElement(material.Button, { key: style.name, onClick: function () { var _a; return (_a = props === null || props === void 0 ? void 0 : props.onSelect) === null || _a === void 0 ? void 0 : _a.call(props, style); } }, style.name));
8154
- })));
8182
+ return (React__default["default"].createElement(material.Dialog, { open: props.open, onClose: handleCancel, PaperProps: { sx: { padding: '20px' } } },
8183
+ React__default["default"].createElement(material.DialogTitle, null, "Select a style"),
8184
+ React__default["default"].createElement(material.List, null, (_a = props === null || props === void 0 ? void 0 : props.styles) === null || _a === void 0 ? void 0 : _a.map(function (style) {
8185
+ var _a;
8186
+ return (React__default["default"].createElement(material.ListItem, { disableGutters: true, key: style.name },
8187
+ React__default["default"].createElement(material.ListItemButton, { autoFocus: true, onClick: function () {
8188
+ var _a;
8189
+ (_a = props === null || props === void 0 ? void 0 : props.onSelect) === null || _a === void 0 ? void 0 : _a.call(props, style);
8190
+ } },
8191
+ React__default["default"].createElement(material.ListItemAvatar, null,
8192
+ React__default["default"].createElement(material.Avatar, { sx: { width: '50px', height: '50px' }, alt: style.name, src: (style === null || style === void 0 ? void 0 : style.name) && ((_a = props === null || props === void 0 ? void 0 : props.styleThumbnailPaths) === null || _a === void 0 ? void 0 : _a[style.name]) })),
8193
+ React__default["default"].createElement(material.ListItemText, { primary: style.name }))));
8194
+ }))));
8155
8195
  };
8156
- SelectStylePopup.defaultProps = {};
8196
+ SelectStylePopup.defaultProps = {
8197
+ styleThumbnailPaths: {},
8198
+ };
8157
8199
 
8158
- var GruvboxStyle = {
8200
+ var MonokaiStyle = {
8159
8201
  version: 8,
8160
8202
  name: 'Monokai',
8161
8203
  center: [8.542, 47.372],
@@ -10707,31 +10749,9 @@ var GruvboxStyle = {
10707
10749
  ],
10708
10750
  };
10709
10751
 
10710
- var SelectStyleButton = function (props) {
10711
- var layerContext = React__default["default"].useContext(LayerContext);
10712
- var _a = React__default["default"].useState(false), popupOpen = _a[0], setPopupOpen = _a[1];
10713
- return (React__default["default"].createElement(React__default["default"].Fragment, null,
10714
- React__default["default"].createElement(material.Button, { variant: "contained", sx: __assign({ marginTop: '10px' }, props.sx), onClick: function () { return setPopupOpen(true); } },
10715
- React__default["default"].createElement(WallpaperIcon__default["default"], null)),
10716
- React__default["default"].createElement(SelectStylePopup, { styles: __spreadArray(__spreadArray([], (props.defaultStyles
10717
- ? [GruvboxStyle, GruvboxStyle, GruvboxStyle, GruvboxStyle, GruvboxStyle]
10718
- : []), true), (props.styles || []), true), open: popupOpen, setOpen: setPopupOpen, onSelect: function (style) {
10719
- // Todo: should be possible without clearing bg layers first & setTimeout
10720
- layerContext.setBackgroundLayers([]);
10721
- setTimeout(function () {
10722
- layerContext.updateStyle(style);
10723
- }, 100);
10724
- setPopupOpen(false);
10725
- } })));
10726
- };
10727
- SelectStyleButton.defaultProps = {
10728
- style: [],
10729
- defaultStyles: true,
10730
- };
10731
-
10732
- var gruvbox = {
10752
+ var SolarizedStyle = {
10733
10753
  version: 8,
10734
- name: 'Gruvbox',
10754
+ name: 'Solarized',
10735
10755
  center: [8.542, 47.372],
10736
10756
  zoom: 11.6,
10737
10757
  bearing: 0,
@@ -10745,7 +10765,7 @@ var gruvbox = {
10745
10765
  sprite: config.sprite,
10746
10766
  glyphs: config.glyphs,
10747
10767
  layers: [
10748
- { id: 'background', type: 'background', paint: { 'background-color': '#282822' } },
10768
+ { id: 'background', type: 'background', paint: { 'background-color': '#073642' } },
10749
10769
  {
10750
10770
  id: 'landcover-glacier',
10751
10771
  type: 'fill',
@@ -10755,7 +10775,7 @@ var gruvbox = {
10755
10775
  filter: ['==', 'subclass', 'glacier'],
10756
10776
  layout: { visibility: 'visible' },
10757
10777
  paint: {
10758
- 'fill-color': '#83a598',
10778
+ 'fill-color': '#2aa198',
10759
10779
  'fill-opacity': {
10760
10780
  base: 1,
10761
10781
  stops: [
@@ -10772,7 +10792,7 @@ var gruvbox = {
10772
10792
  source: 'openmaptiles',
10773
10793
  'source-layer': 'landuse',
10774
10794
  filter: ['==', 'class', 'residential'],
10775
- paint: { 'fill-color': '#b8bb26' },
10795
+ paint: { 'fill-color': '#657b83' },
10776
10796
  },
10777
10797
  {
10778
10798
  id: 'landuse-commercial',
@@ -10781,7 +10801,7 @@ var gruvbox = {
10781
10801
  source: 'openmaptiles',
10782
10802
  'source-layer': 'landuse',
10783
10803
  filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'commercial']],
10784
- paint: { 'fill-color': '#bfc23c' },
10804
+ paint: { 'fill-color': '#74888f' },
10785
10805
  },
10786
10806
  {
10787
10807
  id: 'landuse-industrial',
@@ -10790,7 +10810,7 @@ var gruvbox = {
10790
10810
  source: 'openmaptiles',
10791
10811
  'source-layer': 'landuse',
10792
10812
  filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'industrial']],
10793
- paint: { 'fill-color': '#c6c951' },
10813
+ paint: { 'fill-color': '#84959c' },
10794
10814
  },
10795
10815
  {
10796
10816
  id: 'park',
@@ -10800,7 +10820,7 @@ var gruvbox = {
10800
10820
  'source-layer': 'park',
10801
10821
  filter: ['==', '$type', 'Polygon'],
10802
10822
  paint: {
10803
- 'fill-color': '#b8bb26',
10823
+ 'fill-color': '#859900',
10804
10824
  'fill-opacity': {
10805
10825
  base: 1.8,
10806
10826
  stops: [
@@ -10818,7 +10838,7 @@ var gruvbox = {
10818
10838
  'source-layer': 'park',
10819
10839
  filter: ['==', '$type', 'Polygon'],
10820
10840
  layout: {},
10821
- paint: { 'line-color': 'rgba(184,187,38,0.6)', 'line-dasharray': [3, 3] },
10841
+ paint: { 'line-color': 'rgba(133,153,0,0.6)', 'line-dasharray': [3, 3] },
10822
10842
  },
10823
10843
  {
10824
10844
  id: 'landuse-cemetery',
@@ -10827,7 +10847,7 @@ var gruvbox = {
10827
10847
  source: 'openmaptiles',
10828
10848
  'source-layer': 'landuse',
10829
10849
  filter: ['==', 'class', 'cemetery'],
10830
- paint: { 'fill-color': '#eceeaa' },
10850
+ paint: { 'fill-color': '#f2ff99' },
10831
10851
  },
10832
10852
  {
10833
10853
  id: 'landuse-hospital',
@@ -10836,7 +10856,7 @@ var gruvbox = {
10836
10856
  source: 'openmaptiles',
10837
10857
  'source-layer': 'landuse',
10838
10858
  filter: ['==', 'class', 'hospital'],
10839
- paint: { 'fill-color': '#fe8019' },
10859
+ paint: { 'fill-color': '#d30102' },
10840
10860
  },
10841
10861
  {
10842
10862
  id: 'landuse-school',
@@ -10845,7 +10865,7 @@ var gruvbox = {
10845
10865
  source: 'openmaptiles',
10846
10866
  'source-layer': 'landuse',
10847
10867
  filter: ['==', 'class', 'school'],
10848
- paint: { 'fill-color': 'rgba(254,128,25,0.8)' },
10868
+ paint: { 'fill-color': 'rgba(211,1,2,0.8)' },
10849
10869
  },
10850
10870
  {
10851
10871
  id: 'landuse-railway',
@@ -10854,7 +10874,7 @@ var gruvbox = {
10854
10874
  source: 'openmaptiles',
10855
10875
  'source-layer': 'landuse',
10856
10876
  filter: ['==', 'class', 'railway'],
10857
- paint: { 'fill-color': 'rgba(118,51,8,0.4)' },
10877
+ paint: { 'fill-color': 'rgba(58,63,144,0.4)' },
10858
10878
  },
10859
10879
  {
10860
10880
  id: 'landcover-wood',
@@ -10864,7 +10884,7 @@ var gruvbox = {
10864
10884
  'source-layer': 'landcover',
10865
10885
  filter: ['==', 'class', 'wood'],
10866
10886
  paint: {
10867
- 'fill-color': '#83a598',
10887
+ 'fill-color': '#2aa198',
10868
10888
  'fill-opacity': 0.1,
10869
10889
  'fill-outline-color': 'hsla(0, 0%, 0%, 0.03)',
10870
10890
  'fill-antialias': {
@@ -10883,7 +10903,7 @@ var gruvbox = {
10883
10903
  source: 'openmaptiles',
10884
10904
  'source-layer': 'landcover',
10885
10905
  filter: ['==', 'class', 'grass'],
10886
- paint: { 'fill-color': '#b8bb26', 'fill-opacity': 1 },
10906
+ paint: { 'fill-color': '#859900', 'fill-opacity': 1 },
10887
10907
  },
10888
10908
  {
10889
10909
  id: 'landcover-grass-park',
@@ -10892,7 +10912,7 @@ var gruvbox = {
10892
10912
  source: 'openmaptiles',
10893
10913
  'source-layer': 'park',
10894
10914
  filter: ['==', 'class', 'public_park'],
10895
- paint: { 'fill-color': '#b8bb26', 'fill-opacity': 0.8 },
10915
+ paint: { 'fill-color': '#859900', 'fill-opacity': 0.8 },
10896
10916
  },
10897
10917
  {
10898
10918
  id: 'waterway-other',
@@ -10903,7 +10923,7 @@ var gruvbox = {
10903
10923
  filter: ['!in', 'class', 'canal', 'river', 'stream'],
10904
10924
  layout: { 'line-cap': 'round' },
10905
10925
  paint: {
10906
- 'line-color': '#83a598',
10926
+ 'line-color': '#268bd2',
10907
10927
  'line-width': {
10908
10928
  base: 1.3,
10909
10929
  stops: [
@@ -10922,7 +10942,7 @@ var gruvbox = {
10922
10942
  filter: ['in', 'class', 'canal', 'stream'],
10923
10943
  layout: { 'line-cap': 'round' },
10924
10944
  paint: {
10925
- 'line-color': '#83a598',
10945
+ 'line-color': '#268bd2',
10926
10946
  'line-width': {
10927
10947
  base: 1.3,
10928
10948
  stops: [
@@ -10941,7 +10961,7 @@ var gruvbox = {
10941
10961
  filter: ['==', 'class', 'river'],
10942
10962
  layout: { 'line-cap': 'round' },
10943
10963
  paint: {
10944
- 'line-color': '#83a598',
10964
+ 'line-color': '#268bd2',
10945
10965
  'line-width': {
10946
10966
  base: 1.2,
10947
10967
  stops: [
@@ -10962,7 +10982,7 @@ var gruvbox = {
10962
10982
  layout: { visibility: 'visible' },
10963
10983
  paint: {
10964
10984
  'fill-opacity': 1,
10965
- 'fill-color': '#83a598',
10985
+ 'fill-color': '#268bd2',
10966
10986
  'fill-translate': {
10967
10987
  base: 1,
10968
10988
  stops: [
@@ -10979,7 +10999,7 @@ var gruvbox = {
10979
10999
  source: 'openmaptiles',
10980
11000
  'source-layer': 'water',
10981
11001
  layout: { visibility: 'visible' },
10982
- paint: { 'fill-color': '#5c7f72' },
11002
+ paint: { 'fill-color': '#1a6091' },
10983
11003
  },
10984
11004
  {
10985
11005
  id: 'water-pattern',
@@ -10999,7 +11019,7 @@ var gruvbox = {
10999
11019
  filter: ['==', 'subclass', 'ice_shelf'],
11000
11020
  layout: { visibility: 'visible' },
11001
11021
  paint: {
11002
- 'fill-color': '#83a598',
11022
+ 'fill-color': '#2aa198',
11003
11023
  'fill-opacity': {
11004
11024
  base: 1,
11005
11025
  stops: [
@@ -11015,7 +11035,7 @@ var gruvbox = {
11015
11035
  metadata: { 'mapbox:group': '1444849364238.8171' },
11016
11036
  source: 'openmaptiles',
11017
11037
  'source-layer': 'building',
11018
- paint: { 'fill-color': '#928374', 'fill-antialias': true },
11038
+ paint: { 'fill-color': '#eee8d5', 'fill-antialias': true },
11019
11039
  },
11020
11040
  {
11021
11041
  id: 'building-top',
@@ -11033,7 +11053,7 @@ var gruvbox = {
11033
11053
  ],
11034
11054
  },
11035
11055
  'fill-outline-color': '#dfdbd7',
11036
- 'fill-color': '#a89c91',
11056
+ 'fill-color': '#fdfcf9',
11037
11057
  'fill-opacity': {
11038
11058
  base: 1,
11039
11059
  stops: [
@@ -11052,7 +11072,7 @@ var gruvbox = {
11052
11072
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
11053
11073
  layout: { 'line-join': 'round' },
11054
11074
  paint: {
11055
- 'line-color': '#d65d0e',
11075
+ 'line-color': '#6c71c4',
11056
11076
  'line-dasharray': [0.5, 0.25],
11057
11077
  'line-width': {
11058
11078
  base: 1.2,
@@ -11073,7 +11093,7 @@ var gruvbox = {
11073
11093
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor']],
11074
11094
  layout: { 'line-join': 'round' },
11075
11095
  paint: {
11076
- 'line-color': '#d65d0e',
11096
+ 'line-color': '#6c71c4',
11077
11097
  'line-opacity': {
11078
11098
  stops: [
11079
11099
  [12, 0],
@@ -11100,7 +11120,7 @@ var gruvbox = {
11100
11120
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
11101
11121
  layout: { 'line-join': 'round' },
11102
11122
  paint: {
11103
- 'line-color': '#d65d0e',
11123
+ 'line-color': '#d33682',
11104
11124
  'line-opacity': 1,
11105
11125
  'line-width': {
11106
11126
  base: 1.2,
@@ -11120,7 +11140,7 @@ var gruvbox = {
11120
11140
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
11121
11141
  layout: { 'line-join': 'round' },
11122
11142
  paint: {
11123
- 'line-color': '#d65d0e',
11143
+ 'line-color': '#d33682',
11124
11144
  'line-width': {
11125
11145
  base: 1.2,
11126
11146
  stops: [
@@ -11141,7 +11161,7 @@ var gruvbox = {
11141
11161
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
11142
11162
  layout: { 'line-join': 'round', visibility: 'visible' },
11143
11163
  paint: {
11144
- 'line-color': '#d65d0e',
11164
+ 'line-color': '#d33682',
11145
11165
  'line-dasharray': [0.5, 0.25],
11146
11166
  'line-width': {
11147
11167
  base: 1.2,
@@ -11166,7 +11186,7 @@ var gruvbox = {
11166
11186
  ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'path']],
11167
11187
  ],
11168
11188
  paint: {
11169
- 'line-color': '#f17626',
11189
+ 'line-color': '#9094d3',
11170
11190
  'line-dasharray': [1.5, 0.75],
11171
11191
  'line-width': {
11172
11192
  base: 1.2,
@@ -11186,7 +11206,7 @@ var gruvbox = {
11186
11206
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
11187
11207
  layout: { 'line-join': 'round' },
11188
11208
  paint: {
11189
- 'line-color': '#f17626',
11209
+ 'line-color': '#9094d3',
11190
11210
  'line-width': {
11191
11211
  base: 1.2,
11192
11212
  stops: [
@@ -11206,7 +11226,7 @@ var gruvbox = {
11206
11226
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor_road']],
11207
11227
  layout: { 'line-join': 'round' },
11208
11228
  paint: {
11209
- 'line-color': '#f17626',
11229
+ 'line-color': '#9094d3',
11210
11230
  'line-opacity': 1,
11211
11231
  'line-width': {
11212
11232
  base: 1.2,
@@ -11227,7 +11247,7 @@ var gruvbox = {
11227
11247
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
11228
11248
  layout: { 'line-join': 'round' },
11229
11249
  paint: {
11230
- 'line-color': '#f2853e',
11250
+ 'line-color': '#a3a6da',
11231
11251
  'line-width': {
11232
11252
  base: 1.2,
11233
11253
  stops: [
@@ -11247,7 +11267,7 @@ var gruvbox = {
11247
11267
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
11248
11268
  layout: { 'line-join': 'round' },
11249
11269
  paint: {
11250
- 'line-color': '#d65d0e',
11270
+ 'line-color': '#6c71c4',
11251
11271
  'line-width': {
11252
11272
  base: 1.2,
11253
11273
  stops: [
@@ -11267,7 +11287,7 @@ var gruvbox = {
11267
11287
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
11268
11288
  layout: { 'line-join': 'round', visibility: 'visible' },
11269
11289
  paint: {
11270
- 'line-color': 'rgba(235,219,178,0.8)',
11290
+ 'line-color': 'rgba(108,113,196,0.8)',
11271
11291
  'line-width': {
11272
11292
  base: 1.2,
11273
11293
  stops: [
@@ -11286,7 +11306,7 @@ var gruvbox = {
11286
11306
  'source-layer': 'transportation',
11287
11307
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'rail']],
11288
11308
  paint: {
11289
- 'line-color': '#763308',
11309
+ 'line-color': '#3a3f90',
11290
11310
  'line-width': {
11291
11311
  base: 1.4,
11292
11312
  stops: [
@@ -11308,7 +11328,7 @@ var gruvbox = {
11308
11328
  filter: ['all', ['in', 'class', 'taxiway']],
11309
11329
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11310
11330
  paint: {
11311
- 'line-color': '#763308',
11331
+ 'line-color': '#3a3f90',
11312
11332
  'line-width': {
11313
11333
  base: 1.5,
11314
11334
  stops: [
@@ -11329,7 +11349,7 @@ var gruvbox = {
11329
11349
  filter: ['all', ['in', 'class', 'runway']],
11330
11350
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11331
11351
  paint: {
11332
- 'line-color': '#763308',
11352
+ 'line-color': '#3a3f90',
11333
11353
  'line-width': {
11334
11354
  base: 1.5,
11335
11355
  stops: [
@@ -11357,7 +11377,7 @@ var gruvbox = {
11357
11377
  [14, 1],
11358
11378
  ],
11359
11379
  },
11360
- 'fill-color': 'rgba(214,93,14,0.5)',
11380
+ 'fill-color': 'rgba(108,113,196,0.5)',
11361
11381
  },
11362
11382
  },
11363
11383
  {
@@ -11370,7 +11390,7 @@ var gruvbox = {
11370
11390
  filter: ['all', ['in', 'class', 'taxiway'], ['==', '$type', 'LineString']],
11371
11391
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11372
11392
  paint: {
11373
- 'line-color': '#f2853e',
11393
+ 'line-color': '#a3a6da',
11374
11394
  'line-width': {
11375
11395
  base: 1.5,
11376
11396
  stops: [
@@ -11397,7 +11417,7 @@ var gruvbox = {
11397
11417
  filter: ['all', ['in', 'class', 'runway'], ['==', '$type', 'LineString']],
11398
11418
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11399
11419
  paint: {
11400
- 'line-color': '#f2853e',
11420
+ 'line-color': '#a3a6da',
11401
11421
  'line-width': {
11402
11422
  base: 1.5,
11403
11423
  stops: [
@@ -11423,7 +11443,7 @@ var gruvbox = {
11423
11443
  filter: ['==', '$type', 'Polygon'],
11424
11444
  layout: { visibility: 'visible' },
11425
11445
  paint: {
11426
- 'fill-color': '#a6480b',
11446
+ 'fill-color': '#484fb5',
11427
11447
  'fill-outline-color': '#cfcdca',
11428
11448
  'fill-opacity': 0.9,
11429
11449
  'fill-antialias': false,
@@ -11439,7 +11459,7 @@ var gruvbox = {
11439
11459
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
11440
11460
  layout: { 'line-cap': 'round', 'line-join': 'round' },
11441
11461
  paint: {
11442
- 'line-color': '#d65d0e',
11462
+ 'line-color': '#d33682',
11443
11463
  'line-opacity': 1,
11444
11464
  'line-width': {
11445
11465
  base: 1.2,
@@ -11466,7 +11486,7 @@ var gruvbox = {
11466
11486
  ],
11467
11487
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11468
11488
  paint: {
11469
- 'line-color': '#d65d0e',
11489
+ 'line-color': '#d33682',
11470
11490
  'line-opacity': 1,
11471
11491
  'line-width': {
11472
11492
  base: 1.2,
@@ -11492,7 +11512,7 @@ var gruvbox = {
11492
11512
  ],
11493
11513
  layout: { 'line-cap': 'round', 'line-join': 'round' },
11494
11514
  paint: {
11495
- 'line-color': 'rgba(214,93,14,0.8)',
11515
+ 'line-color': 'rgba(108,113,196,0.8)',
11496
11516
  'line-opacity': {
11497
11517
  stops: [
11498
11518
  [12, 0],
@@ -11523,7 +11543,7 @@ var gruvbox = {
11523
11543
  ],
11524
11544
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11525
11545
  paint: {
11526
- 'line-color': '#d65d0e',
11546
+ 'line-color': '#d33682',
11527
11547
  'line-opacity': 1,
11528
11548
  'line-width': {
11529
11549
  base: 1.2,
@@ -11544,7 +11564,7 @@ var gruvbox = {
11544
11564
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'primary']],
11545
11565
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11546
11566
  paint: {
11547
- 'line-color': '#d65d0e',
11567
+ 'line-color': '#d33682',
11548
11568
  'line-opacity': {
11549
11569
  stops: [
11550
11570
  [7, 0],
@@ -11572,7 +11592,7 @@ var gruvbox = {
11572
11592
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'trunk']],
11573
11593
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11574
11594
  paint: {
11575
- 'line-color': '#d65d0e',
11595
+ 'line-color': '#d33682',
11576
11596
  'line-opacity': {
11577
11597
  stops: [
11578
11598
  [5, 0],
@@ -11600,7 +11620,7 @@ var gruvbox = {
11600
11620
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway']],
11601
11621
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11602
11622
  paint: {
11603
- 'line-color': '#d65d0e',
11623
+ 'line-color': '#d33682',
11604
11624
  'line-width': {
11605
11625
  base: 1.2,
11606
11626
  stops: [
@@ -11631,7 +11651,7 @@ var gruvbox = {
11631
11651
  ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'path']],
11632
11652
  ],
11633
11653
  paint: {
11634
- 'line-color': '#fe8019',
11654
+ 'line-color': '#cb4b16',
11635
11655
  'line-dasharray': [1.5, 0.75],
11636
11656
  'line-width': {
11637
11657
  base: 1.2,
@@ -11652,7 +11672,7 @@ var gruvbox = {
11652
11672
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
11653
11673
  layout: { 'line-cap': 'round', 'line-join': 'round' },
11654
11674
  paint: {
11655
- 'line-color': '#ebdbb2',
11675
+ 'line-color': '#6c71c4',
11656
11676
  'line-width': {
11657
11677
  base: 1.2,
11658
11678
  stops: [
@@ -11678,7 +11698,7 @@ var gruvbox = {
11678
11698
  ],
11679
11699
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11680
11700
  paint: {
11681
- 'line-color': '#ebdbb2',
11701
+ 'line-color': '#6c71c4',
11682
11702
  'line-width': {
11683
11703
  base: 1.2,
11684
11704
  stops: [
@@ -11703,7 +11723,7 @@ var gruvbox = {
11703
11723
  ],
11704
11724
  layout: { 'line-cap': 'round', 'line-join': 'round' },
11705
11725
  paint: {
11706
- 'line-color': '#f49456',
11726
+ 'line-color': '#e58ab6',
11707
11727
  'line-opacity': 1,
11708
11728
  'line-width': {
11709
11729
  base: 1.2,
@@ -11728,7 +11748,7 @@ var gruvbox = {
11728
11748
  ],
11729
11749
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11730
11750
  paint: {
11731
- 'line-color': '#ebdbb2',
11751
+ 'line-color': '#6c71c4',
11732
11752
  'line-width': {
11733
11753
  base: 1.2,
11734
11754
  stops: [
@@ -11752,7 +11772,7 @@ var gruvbox = {
11752
11772
  ],
11753
11773
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11754
11774
  paint: {
11755
- 'line-color': '#ebdbb2',
11775
+ 'line-color': '#6c71c4',
11756
11776
  'line-width': {
11757
11777
  base: 1.2,
11758
11778
  stops: [
@@ -11776,7 +11796,7 @@ var gruvbox = {
11776
11796
  ],
11777
11797
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11778
11798
  paint: {
11779
- 'line-color': '#ebdbb2',
11799
+ 'line-color': '#6c71c4',
11780
11800
  'line-width': {
11781
11801
  base: 1.2,
11782
11802
  stops: [
@@ -11801,7 +11821,7 @@ var gruvbox = {
11801
11821
  ],
11802
11822
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11803
11823
  paint: {
11804
- 'line-color': '#ebdbb2',
11824
+ 'line-color': '#6c71c4',
11805
11825
  'line-width': {
11806
11826
  base: 1.2,
11807
11827
  stops: [
@@ -11824,7 +11844,7 @@ var gruvbox = {
11824
11844
  ['all', ['==', 'class', 'rail'], ['has', 'service']],
11825
11845
  ],
11826
11846
  paint: {
11827
- 'line-color': 'rgba(118,51,8,0.7)',
11847
+ 'line-color': 'rgba(58,63,144,0.7)',
11828
11848
  'line-width': {
11829
11849
  base: 1.4,
11830
11850
  stops: [
@@ -11847,7 +11867,7 @@ var gruvbox = {
11847
11867
  ],
11848
11868
  layout: { visibility: 'visible' },
11849
11869
  paint: {
11850
- 'line-color': 'rgba(118,51,8,0.7)',
11870
+ 'line-color': 'rgba(58,63,144,0.7)',
11851
11871
  'line-dasharray': [0.2, 8],
11852
11872
  'line-width': {
11853
11873
  base: 1.4,
@@ -11876,7 +11896,7 @@ var gruvbox = {
11876
11896
  ],
11877
11897
  ],
11878
11898
  paint: {
11879
- 'line-color': '#763308',
11899
+ 'line-color': '#3a3f90',
11880
11900
  'line-width': {
11881
11901
  base: 1.4,
11882
11902
  stops: [
@@ -11904,7 +11924,7 @@ var gruvbox = {
11904
11924
  ],
11905
11925
  ],
11906
11926
  paint: {
11907
- 'line-color': '#763308',
11927
+ 'line-color': '#3a3f90',
11908
11928
  'line-dasharray': [0.2, 8],
11909
11929
  'line-width': {
11910
11930
  base: 1.4,
@@ -11925,7 +11945,7 @@ var gruvbox = {
11925
11945
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
11926
11946
  layout: { 'line-join': 'round' },
11927
11947
  paint: {
11928
- 'line-color': '#d65d0e',
11948
+ 'line-color': '#d33682',
11929
11949
  'line-opacity': 1,
11930
11950
  'line-width': {
11931
11951
  base: 1.2,
@@ -11951,7 +11971,7 @@ var gruvbox = {
11951
11971
  ],
11952
11972
  layout: { 'line-join': 'round' },
11953
11973
  paint: {
11954
- 'line-color': '#d65d0e',
11974
+ 'line-color': '#d33682',
11955
11975
  'line-opacity': 1,
11956
11976
  'line-width': {
11957
11977
  base: 1.2,
@@ -11973,7 +11993,7 @@ var gruvbox = {
11973
11993
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
11974
11994
  layout: { 'line-join': 'round' },
11975
11995
  paint: {
11976
- 'line-color': '#d65d0e',
11996
+ 'line-color': '#d33682',
11977
11997
  'line-opacity': 1,
11978
11998
  'line-width': {
11979
11999
  base: 1.2,
@@ -11993,7 +12013,7 @@ var gruvbox = {
11993
12013
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
11994
12014
  layout: { 'line-join': 'round' },
11995
12015
  paint: {
11996
- 'line-color': '#d65d0e',
12016
+ 'line-color': '#d33682',
11997
12017
  'line-width': {
11998
12018
  base: 1.2,
11999
12019
  stops: [
@@ -12014,7 +12034,7 @@ var gruvbox = {
12014
12034
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
12015
12035
  layout: { 'line-join': 'round' },
12016
12036
  paint: {
12017
- 'line-color': '#d65d0e',
12037
+ 'line-color': '#d33682',
12018
12038
  'line-width': {
12019
12039
  base: 1.2,
12020
12040
  stops: [
@@ -12038,7 +12058,7 @@ var gruvbox = {
12038
12058
  ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
12039
12059
  ],
12040
12060
  paint: {
12041
- 'line-color': '#f17626',
12061
+ 'line-color': '#9094d3',
12042
12062
  'line-width': {
12043
12063
  base: 1.2,
12044
12064
  stops: [
@@ -12060,7 +12080,7 @@ var gruvbox = {
12060
12080
  ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
12061
12081
  ],
12062
12082
  paint: {
12063
- 'line-color': '#fe8019',
12083
+ 'line-color': '#cb4b16',
12064
12084
  'line-width': {
12065
12085
  base: 1.2,
12066
12086
  stops: [
@@ -12080,7 +12100,7 @@ var gruvbox = {
12080
12100
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
12081
12101
  layout: { 'line-join': 'round' },
12082
12102
  paint: {
12083
- 'line-color': '#ebdbb2',
12103
+ 'line-color': '#6c71c4',
12084
12104
  'line-width': {
12085
12105
  base: 1.2,
12086
12106
  stops: [
@@ -12105,7 +12125,7 @@ var gruvbox = {
12105
12125
  ],
12106
12126
  layout: { 'line-join': 'round' },
12107
12127
  paint: {
12108
- 'line-color': '#ebdbb2',
12128
+ 'line-color': '#6c71c4',
12109
12129
  'line-width': {
12110
12130
  base: 1.2,
12111
12131
  stops: [
@@ -12126,7 +12146,7 @@ var gruvbox = {
12126
12146
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
12127
12147
  layout: { 'line-join': 'round' },
12128
12148
  paint: {
12129
- 'line-color': '#ebdbb2',
12149
+ 'line-color': '#6c71c4',
12130
12150
  'line-width': {
12131
12151
  base: 1.2,
12132
12152
  stops: [
@@ -12146,7 +12166,7 @@ var gruvbox = {
12146
12166
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
12147
12167
  layout: { 'line-join': 'round' },
12148
12168
  paint: {
12149
- 'line-color': '#ebdbb2',
12169
+ 'line-color': '#6c71c4',
12150
12170
  'line-width': {
12151
12171
  base: 1.2,
12152
12172
  stops: [
@@ -12166,7 +12186,7 @@ var gruvbox = {
12166
12186
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
12167
12187
  layout: { 'line-join': 'round' },
12168
12188
  paint: {
12169
- 'line-color': '#ebdbb2',
12189
+ 'line-color': '#6c71c4',
12170
12190
  'line-width': {
12171
12191
  base: 1.2,
12172
12192
  stops: [
@@ -12185,7 +12205,7 @@ var gruvbox = {
12185
12205
  'source-layer': 'transportation',
12186
12206
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
12187
12207
  paint: {
12188
- 'line-color': '#763308',
12208
+ 'line-color': '#3a3f90',
12189
12209
  'line-width': {
12190
12210
  base: 1.4,
12191
12211
  stops: [
@@ -12204,7 +12224,7 @@ var gruvbox = {
12204
12224
  'source-layer': 'transportation',
12205
12225
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
12206
12226
  paint: {
12207
- 'line-color': '#763308',
12227
+ 'line-color': '#3a3f90',
12208
12228
  'line-dasharray': [0.2, 8],
12209
12229
  'line-width': {
12210
12230
  base: 1.4,
@@ -12224,7 +12244,7 @@ var gruvbox = {
12224
12244
  filter: ['all', ['in', 'admin_level', 4, 6, 8], ['!=', 'maritime', 1]],
12225
12245
  layout: { 'line-join': 'round' },
12226
12246
  paint: {
12227
- 'line-color': '#fb4934',
12247
+ 'line-color': '#268bd2',
12228
12248
  'line-dasharray': [3, 1, 1, 1],
12229
12249
  'line-width': {
12230
12250
  base: 1.4,
@@ -12244,7 +12264,7 @@ var gruvbox = {
12244
12264
  filter: ['all', ['==', 'admin_level', 2], ['!=', 'maritime', 1]],
12245
12265
  layout: { 'line-cap': 'round', 'line-join': 'round' },
12246
12266
  paint: {
12247
- 'line-color': '#fb4934',
12267
+ 'line-color': '#268bd2',
12248
12268
  'line-width': {
12249
12269
  base: 1,
12250
12270
  stops: [
@@ -12264,7 +12284,7 @@ var gruvbox = {
12264
12284
  filter: ['all', ['in', 'admin_level', 2, 4], ['==', 'maritime', 1]],
12265
12285
  layout: { 'line-cap': 'round', 'line-join': 'round' },
12266
12286
  paint: {
12267
- 'line-color': '#83a598',
12287
+ 'line-color': '#268bd2',
12268
12288
  'line-width': {
12269
12289
  base: 1,
12270
12290
  stops: [
@@ -13281,9 +13301,9 @@ var gruvbox = {
13281
13301
  ],
13282
13302
  };
13283
13303
 
13284
- var medieval_kingdom = {
13304
+ var OceanicNextStyle = {
13285
13305
  version: 8,
13286
- name: 'Medieval Kingdom',
13306
+ name: 'Oceanic Next',
13287
13307
  center: [8.542, 47.372],
13288
13308
  zoom: 11.6,
13289
13309
  bearing: 0,
@@ -13297,7 +13317,7 @@ var medieval_kingdom = {
13297
13317
  sprite: config.sprite,
13298
13318
  glyphs: config.glyphs,
13299
13319
  layers: [
13300
- { id: 'background', type: 'background', paint: { 'background-color': '#ffd1a8' } },
13320
+ { id: 'background', type: 'background', paint: { 'background-color': '#282822' } },
13301
13321
  {
13302
13322
  id: 'landcover-glacier',
13303
13323
  type: 'fill',
@@ -13307,7 +13327,7 @@ var medieval_kingdom = {
13307
13327
  filter: ['==', 'subclass', 'glacier'],
13308
13328
  layout: { visibility: 'visible' },
13309
13329
  paint: {
13310
- 'fill-color': '#228B22',
13330
+ 'fill-color': '#81a1c1',
13311
13331
  'fill-opacity': {
13312
13332
  base: 1,
13313
13333
  stops: [
@@ -13324,7 +13344,7 @@ var medieval_kingdom = {
13324
13344
  source: 'openmaptiles',
13325
13345
  'source-layer': 'landuse',
13326
13346
  filter: ['==', 'class', 'residential'],
13327
- paint: { 'fill-color': '#bfa677' },
13347
+ paint: { 'fill-color': '#a3be8c' },
13328
13348
  },
13329
13349
  {
13330
13350
  id: 'landuse-commercial',
@@ -13333,7 +13353,7 @@ var medieval_kingdom = {
13333
13353
  source: 'openmaptiles',
13334
13354
  'source-layer': 'landuse',
13335
13355
  filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'commercial']],
13336
- paint: { 'fill-color': '#c5af85' },
13356
+ paint: { 'fill-color': '#acc598' },
13337
13357
  },
13338
13358
  {
13339
13359
  id: 'landuse-industrial',
@@ -13342,7 +13362,7 @@ var medieval_kingdom = {
13342
13362
  source: 'openmaptiles',
13343
13363
  'source-layer': 'landuse',
13344
13364
  filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'industrial']],
13345
- paint: { 'fill-color': '#ccb892' },
13365
+ paint: { 'fill-color': '#b5cba3' },
13346
13366
  },
13347
13367
  {
13348
13368
  id: 'park',
@@ -13352,7 +13372,7 @@ var medieval_kingdom = {
13352
13372
  'source-layer': 'park',
13353
13373
  filter: ['==', '$type', 'Polygon'],
13354
13374
  paint: {
13355
- 'fill-color': '#556B2F',
13375
+ 'fill-color': '#a3be8c',
13356
13376
  'fill-opacity': {
13357
13377
  base: 1.8,
13358
13378
  stops: [
@@ -13370,7 +13390,7 @@ var medieval_kingdom = {
13370
13390
  'source-layer': 'park',
13371
13391
  filter: ['==', '$type', 'Polygon'],
13372
13392
  layout: {},
13373
- paint: { 'line-color': 'rgba(85,107,47,0.6)', 'line-dasharray': [3, 3] },
13393
+ paint: { 'line-color': 'rgba(163,19,14,0.6)', 'line-dasharray': [3, 3] },
13374
13394
  },
13375
13395
  {
13376
13396
  id: 'landuse-cemetery',
@@ -13379,7 +13399,7 @@ var medieval_kingdom = {
13379
13399
  source: 'openmaptiles',
13380
13400
  'source-layer': 'landuse',
13381
13401
  filter: ['==', 'class', 'cemetery'],
13382
- paint: { 'fill-color': '#d1e0b8' },
13402
+ paint: { 'fill-color': '#cbdabe' },
13383
13403
  },
13384
13404
  {
13385
13405
  id: 'landuse-hospital',
@@ -13388,7 +13408,7 @@ var medieval_kingdom = {
13388
13408
  source: 'openmaptiles',
13389
13409
  'source-layer': 'landuse',
13390
13410
  filter: ['==', 'class', 'hospital'],
13391
- paint: { 'fill-color': '#FFC0CB' },
13411
+ paint: { 'fill-color': '#b48ead' },
13392
13412
  },
13393
13413
  {
13394
13414
  id: 'landuse-school',
@@ -13397,7 +13417,7 @@ var medieval_kingdom = {
13397
13417
  source: 'openmaptiles',
13398
13418
  'source-layer': 'landuse',
13399
13419
  filter: ['==', 'class', 'school'],
13400
- paint: { 'fill-color': 'rgba(255,192,203,0.8)' },
13420
+ paint: { 'fill-color': 'rgba(18,142,173,0.8)' },
13401
13421
  },
13402
13422
  {
13403
13423
  id: 'landuse-railway',
@@ -13406,7 +13426,7 @@ var medieval_kingdom = {
13406
13426
  source: 'openmaptiles',
13407
13427
  'source-layer': 'landuse',
13408
13428
  filter: ['==', 'class', 'railway'],
13409
- paint: { 'fill-color': 'rgba(149,46,46,0.4)' },
13429
+ paint: { 'fill-color': 'rgba(118,51,8,0.4)' },
13410
13430
  },
13411
13431
  {
13412
13432
  id: 'landcover-wood',
@@ -13416,7 +13436,7 @@ var medieval_kingdom = {
13416
13436
  'source-layer': 'landcover',
13417
13437
  filter: ['==', 'class', 'wood'],
13418
13438
  paint: {
13419
- 'fill-color': '#228B22',
13439
+ 'fill-color': '#81a1c1',
13420
13440
  'fill-opacity': 0.1,
13421
13441
  'fill-outline-color': 'hsla(0, 0%, 0%, 0.03)',
13422
13442
  'fill-antialias': {
@@ -13435,7 +13455,7 @@ var medieval_kingdom = {
13435
13455
  source: 'openmaptiles',
13436
13456
  'source-layer': 'landcover',
13437
13457
  filter: ['==', 'class', 'grass'],
13438
- paint: { 'fill-color': '#556B2F', 'fill-opacity': 1 },
13458
+ paint: { 'fill-color': '#a3be8c', 'fill-opacity': 1 },
13439
13459
  },
13440
13460
  {
13441
13461
  id: 'landcover-grass-park',
@@ -13444,7 +13464,7 @@ var medieval_kingdom = {
13444
13464
  source: 'openmaptiles',
13445
13465
  'source-layer': 'park',
13446
13466
  filter: ['==', 'class', 'public_park'],
13447
- paint: { 'fill-color': '#556B2F', 'fill-opacity': 0.8 },
13467
+ paint: { 'fill-color': '#a3be8c', 'fill-opacity': 0.8 },
13448
13468
  },
13449
13469
  {
13450
13470
  id: 'waterway-other',
@@ -13455,7 +13475,7 @@ var medieval_kingdom = {
13455
13475
  filter: ['!in', 'class', 'canal', 'river', 'stream'],
13456
13476
  layout: { 'line-cap': 'round' },
13457
13477
  paint: {
13458
- 'line-color': '#1E90FF',
13478
+ 'line-color': '#8fbcbb',
13459
13479
  'line-width': {
13460
13480
  base: 1.3,
13461
13481
  stops: [
@@ -13474,7 +13494,7 @@ var medieval_kingdom = {
13474
13494
  filter: ['in', 'class', 'canal', 'stream'],
13475
13495
  layout: { 'line-cap': 'round' },
13476
13496
  paint: {
13477
- 'line-color': '#1E90FF',
13497
+ 'line-color': '#8fbcbb',
13478
13498
  'line-width': {
13479
13499
  base: 1.3,
13480
13500
  stops: [
@@ -13493,7 +13513,7 @@ var medieval_kingdom = {
13493
13513
  filter: ['==', 'class', 'river'],
13494
13514
  layout: { 'line-cap': 'round' },
13495
13515
  paint: {
13496
- 'line-color': '#1E90FF',
13516
+ 'line-color': '#8fbcbb',
13497
13517
  'line-width': {
13498
13518
  base: 1.2,
13499
13519
  stops: [
@@ -13514,7 +13534,7 @@ var medieval_kingdom = {
13514
13534
  layout: { visibility: 'visible' },
13515
13535
  paint: {
13516
13536
  'fill-opacity': 1,
13517
- 'fill-color': '#1E90FF',
13537
+ 'fill-color': '#8fbcbb',
13518
13538
  'fill-translate': {
13519
13539
  base: 1,
13520
13540
  stops: [
@@ -13531,7 +13551,7 @@ var medieval_kingdom = {
13531
13551
  source: 'openmaptiles',
13532
13552
  'source-layer': 'water',
13533
13553
  layout: { visibility: 'visible' },
13534
- paint: { 'fill-color': '#006ad1' },
13554
+ paint: { 'fill-color': '#5f9f9e' },
13535
13555
  },
13536
13556
  {
13537
13557
  id: 'water-pattern',
@@ -13551,7 +13571,7 @@ var medieval_kingdom = {
13551
13571
  filter: ['==', 'subclass', 'ice_shelf'],
13552
13572
  layout: { visibility: 'visible' },
13553
13573
  paint: {
13554
- 'fill-color': '#228B22',
13574
+ 'fill-color': '#81a1c1',
13555
13575
  'fill-opacity': {
13556
13576
  base: 1,
13557
13577
  stops: [
@@ -13567,7 +13587,7 @@ var medieval_kingdom = {
13567
13587
  metadata: { 'mapbox:group': '1444849364238.8171' },
13568
13588
  source: 'openmaptiles',
13569
13589
  'source-layer': 'building',
13570
- paint: { 'fill-color': '#f9e9cb', 'fill-antialias': true },
13590
+ paint: { 'fill-color': '#65737e', 'fill-antialias': true },
13571
13591
  },
13572
13592
  {
13573
13593
  id: 'building-top',
@@ -13585,7 +13605,7 @@ var medieval_kingdom = {
13585
13605
  ],
13586
13606
  },
13587
13607
  'fill-outline-color': '#dfdbd7',
13588
- 'fill-color': '#fefcf9',
13608
+ 'fill-color': '#7e8d98',
13589
13609
  'fill-opacity': {
13590
13610
  base: 1,
13591
13611
  stops: [
@@ -13604,7 +13624,7 @@ var medieval_kingdom = {
13604
13624
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
13605
13625
  layout: { 'line-join': 'round' },
13606
13626
  paint: {
13607
- 'line-color': '#CD5C5C',
13627
+ 'line-color': '#d65d0e',
13608
13628
  'line-dasharray': [0.5, 0.25],
13609
13629
  'line-width': {
13610
13630
  base: 1.2,
@@ -13625,7 +13645,7 @@ var medieval_kingdom = {
13625
13645
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor']],
13626
13646
  layout: { 'line-join': 'round' },
13627
13647
  paint: {
13628
- 'line-color': '#CD5C5C',
13648
+ 'line-color': '#d65d0e',
13629
13649
  'line-opacity': {
13630
13650
  stops: [
13631
13651
  [12, 0],
@@ -13652,7 +13672,7 @@ var medieval_kingdom = {
13652
13672
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
13653
13673
  layout: { 'line-join': 'round' },
13654
13674
  paint: {
13655
- 'line-color': '#CD5C5C',
13675
+ 'line-color': '#d65d0e',
13656
13676
  'line-opacity': 1,
13657
13677
  'line-width': {
13658
13678
  base: 1.2,
@@ -13672,7 +13692,7 @@ var medieval_kingdom = {
13672
13692
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
13673
13693
  layout: { 'line-join': 'round' },
13674
13694
  paint: {
13675
- 'line-color': '#CD5C5C',
13695
+ 'line-color': '#d65d0e',
13676
13696
  'line-width': {
13677
13697
  base: 1.2,
13678
13698
  stops: [
@@ -13693,7 +13713,7 @@ var medieval_kingdom = {
13693
13713
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
13694
13714
  layout: { 'line-join': 'round', visibility: 'visible' },
13695
13715
  paint: {
13696
- 'line-color': '#CD5C5C',
13716
+ 'line-color': '#d65d0e',
13697
13717
  'line-dasharray': [0.5, 0.25],
13698
13718
  'line-width': {
13699
13719
  base: 1.2,
@@ -13718,7 +13738,7 @@ var medieval_kingdom = {
13718
13738
  ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'path']],
13719
13739
  ],
13720
13740
  paint: {
13721
- 'line-color': '#d98383',
13741
+ 'line-color': '#f17626',
13722
13742
  'line-dasharray': [1.5, 0.75],
13723
13743
  'line-width': {
13724
13744
  base: 1.2,
@@ -13738,7 +13758,7 @@ var medieval_kingdom = {
13738
13758
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
13739
13759
  layout: { 'line-join': 'round' },
13740
13760
  paint: {
13741
- 'line-color': '#d98383',
13761
+ 'line-color': '#f17626',
13742
13762
  'line-width': {
13743
13763
  base: 1.2,
13744
13764
  stops: [
@@ -13758,7 +13778,7 @@ var medieval_kingdom = {
13758
13778
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor_road']],
13759
13779
  layout: { 'line-join': 'round' },
13760
13780
  paint: {
13761
- 'line-color': '#d98383',
13781
+ 'line-color': '#f17626',
13762
13782
  'line-opacity': 1,
13763
13783
  'line-width': {
13764
13784
  base: 1.2,
@@ -13779,7 +13799,7 @@ var medieval_kingdom = {
13779
13799
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
13780
13800
  layout: { 'line-join': 'round' },
13781
13801
  paint: {
13782
- 'line-color': '#df9797',
13802
+ 'line-color': '#f2853e',
13783
13803
  'line-width': {
13784
13804
  base: 1.2,
13785
13805
  stops: [
@@ -13799,7 +13819,7 @@ var medieval_kingdom = {
13799
13819
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
13800
13820
  layout: { 'line-join': 'round' },
13801
13821
  paint: {
13802
- 'line-color': '#CD5C5C',
13822
+ 'line-color': '#d65d0e',
13803
13823
  'line-width': {
13804
13824
  base: 1.2,
13805
13825
  stops: [
@@ -13819,7 +13839,7 @@ var medieval_kingdom = {
13819
13839
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
13820
13840
  layout: { 'line-join': 'round', visibility: 'visible' },
13821
13841
  paint: {
13822
- 'line-color': 'rgba(139,94,6,0.8)',
13842
+ 'line-color': 'rgba(235,219,178,0.8)',
13823
13843
  'line-width': {
13824
13844
  base: 1.2,
13825
13845
  stops: [
@@ -13838,7 +13858,7 @@ var medieval_kingdom = {
13838
13858
  'source-layer': 'transportation',
13839
13859
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'rail']],
13840
13860
  paint: {
13841
- 'line-color': '#952e2e',
13861
+ 'line-color': '#763308',
13842
13862
  'line-width': {
13843
13863
  base: 1.4,
13844
13864
  stops: [
@@ -13860,7 +13880,7 @@ var medieval_kingdom = {
13860
13880
  filter: ['all', ['in', 'class', 'taxiway']],
13861
13881
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
13862
13882
  paint: {
13863
- 'line-color': '#952e2e',
13883
+ 'line-color': '#763308',
13864
13884
  'line-width': {
13865
13885
  base: 1.5,
13866
13886
  stops: [
@@ -13881,7 +13901,7 @@ var medieval_kingdom = {
13881
13901
  filter: ['all', ['in', 'class', 'runway']],
13882
13902
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
13883
13903
  paint: {
13884
- 'line-color': '#952e2e',
13904
+ 'line-color': '#763308',
13885
13905
  'line-width': {
13886
13906
  base: 1.5,
13887
13907
  stops: [
@@ -13909,7 +13929,7 @@ var medieval_kingdom = {
13909
13929
  [14, 1],
13910
13930
  ],
13911
13931
  },
13912
- 'fill-color': 'rgba(205,92,92,0.5)',
13932
+ 'fill-color': 'rgba(214,93,14,0.5)',
13913
13933
  },
13914
13934
  },
13915
13935
  {
@@ -13922,7 +13942,7 @@ var medieval_kingdom = {
13922
13942
  filter: ['all', ['in', 'class', 'taxiway'], ['==', '$type', 'LineString']],
13923
13943
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
13924
13944
  paint: {
13925
- 'line-color': '#df9797',
13945
+ 'line-color': '#f2853e',
13926
13946
  'line-width': {
13927
13947
  base: 1.5,
13928
13948
  stops: [
@@ -13949,7 +13969,7 @@ var medieval_kingdom = {
13949
13969
  filter: ['all', ['in', 'class', 'runway'], ['==', '$type', 'LineString']],
13950
13970
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
13951
13971
  paint: {
13952
- 'line-color': '#df9797',
13972
+ 'line-color': '#f2853e',
13953
13973
  'line-width': {
13954
13974
  base: 1.5,
13955
13975
  stops: [
@@ -13975,7 +13995,7 @@ var medieval_kingdom = {
13975
13995
  filter: ['==', '$type', 'Polygon'],
13976
13996
  layout: { visibility: 'visible' },
13977
13997
  paint: {
13978
- 'fill-color': '#bc3a3a',
13998
+ 'fill-color': '#a6480b',
13979
13999
  'fill-outline-color': '#cfcdca',
13980
14000
  'fill-opacity': 0.9,
13981
14001
  'fill-antialias': false,
@@ -13991,7 +14011,7 @@ var medieval_kingdom = {
13991
14011
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
13992
14012
  layout: { 'line-cap': 'round', 'line-join': 'round' },
13993
14013
  paint: {
13994
- 'line-color': '#CD5C5C',
14014
+ 'line-color': '#d65d0e',
13995
14015
  'line-opacity': 1,
13996
14016
  'line-width': {
13997
14017
  base: 1.2,
@@ -14018,7 +14038,7 @@ var medieval_kingdom = {
14018
14038
  ],
14019
14039
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
14020
14040
  paint: {
14021
- 'line-color': '#CD5C5C',
14041
+ 'line-color': '#d65d0e',
14022
14042
  'line-opacity': 1,
14023
14043
  'line-width': {
14024
14044
  base: 1.2,
@@ -14044,7 +14064,7 @@ var medieval_kingdom = {
14044
14064
  ],
14045
14065
  layout: { 'line-cap': 'round', 'line-join': 'round' },
14046
14066
  paint: {
14047
- 'line-color': 'rgba(205,92,92,0.8)',
14067
+ 'line-color': 'rgba(214,93,14,0.8)',
14048
14068
  'line-opacity': {
14049
14069
  stops: [
14050
14070
  [12, 0],
@@ -14075,7 +14095,7 @@ var medieval_kingdom = {
14075
14095
  ],
14076
14096
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
14077
14097
  paint: {
14078
- 'line-color': '#CD5C5C',
14098
+ 'line-color': '#d65d0e',
14079
14099
  'line-opacity': 1,
14080
14100
  'line-width': {
14081
14101
  base: 1.2,
@@ -14096,7 +14116,7 @@ var medieval_kingdom = {
14096
14116
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'primary']],
14097
14117
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
14098
14118
  paint: {
14099
- 'line-color': '#CD5C5C',
14119
+ 'line-color': '#d65d0e',
14100
14120
  'line-opacity': {
14101
14121
  stops: [
14102
14122
  [7, 0],
@@ -14124,7 +14144,7 @@ var medieval_kingdom = {
14124
14144
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'trunk']],
14125
14145
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
14126
14146
  paint: {
14127
- 'line-color': '#CD5C5C',
14147
+ 'line-color': '#d65d0e',
14128
14148
  'line-opacity': {
14129
14149
  stops: [
14130
14150
  [5, 0],
@@ -14152,7 +14172,7 @@ var medieval_kingdom = {
14152
14172
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway']],
14153
14173
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
14154
14174
  paint: {
14155
- 'line-color': '#CD5C5C',
14175
+ 'line-color': '#d65d0e',
14156
14176
  'line-width': {
14157
14177
  base: 1.2,
14158
14178
  stops: [
@@ -14183,7 +14203,7 @@ var medieval_kingdom = {
14183
14203
  ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'path']],
14184
14204
  ],
14185
14205
  paint: {
14186
- 'line-color': '#FFC0CB',
14206
+ 'line-color': '#b48ead',
14187
14207
  'line-dasharray': [1.5, 0.75],
14188
14208
  'line-width': {
14189
14209
  base: 1.2,
@@ -14204,7 +14224,7 @@ var medieval_kingdom = {
14204
14224
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
14205
14225
  layout: { 'line-cap': 'round', 'line-join': 'round' },
14206
14226
  paint: {
14207
- 'line-color': '#8b5e3c',
14227
+ 'line-color': '#ebdbb2',
14208
14228
  'line-width': {
14209
14229
  base: 1.2,
14210
14230
  stops: [
@@ -14230,7 +14250,7 @@ var medieval_kingdom = {
14230
14250
  ],
14231
14251
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
14232
14252
  paint: {
14233
- 'line-color': '#8B5E3C',
14253
+ 'line-color': '#ebdbb2',
14234
14254
  'line-width': {
14235
14255
  base: 1.2,
14236
14256
  stops: [
@@ -14255,7 +14275,7 @@ var medieval_kingdom = {
14255
14275
  ],
14256
14276
  layout: { 'line-cap': 'round', 'line-join': 'round' },
14257
14277
  paint: {
14258
- 'line-color': '#e5aaaa',
14278
+ 'line-color': '#f49456',
14259
14279
  'line-opacity': 1,
14260
14280
  'line-width': {
14261
14281
  base: 1.2,
@@ -14280,7 +14300,7 @@ var medieval_kingdom = {
14280
14300
  ],
14281
14301
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
14282
14302
  paint: {
14283
- 'line-color': '#8B5E3C',
14303
+ 'line-color': '#ebdbb2',
14284
14304
  'line-width': {
14285
14305
  base: 1.2,
14286
14306
  stops: [
@@ -14304,7 +14324,7 @@ var medieval_kingdom = {
14304
14324
  ],
14305
14325
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
14306
14326
  paint: {
14307
- 'line-color': '#8B5E3C',
14327
+ 'line-color': '#ebdbb2',
14308
14328
  'line-width': {
14309
14329
  base: 1.2,
14310
14330
  stops: [
@@ -14328,7 +14348,7 @@ var medieval_kingdom = {
14328
14348
  ],
14329
14349
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
14330
14350
  paint: {
14331
- 'line-color': '#8B5E3C',
14351
+ 'line-color': '#ebdbb2',
14332
14352
  'line-width': {
14333
14353
  base: 1.2,
14334
14354
  stops: [
@@ -14353,7 +14373,7 @@ var medieval_kingdom = {
14353
14373
  ],
14354
14374
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
14355
14375
  paint: {
14356
- 'line-color': '#8b5e3c',
14376
+ 'line-color': '#ebdbb2',
14357
14377
  'line-width': {
14358
14378
  base: 1.2,
14359
14379
  stops: [
@@ -14376,7 +14396,7 @@ var medieval_kingdom = {
14376
14396
  ['all', ['==', 'class', 'rail'], ['has', 'service']],
14377
14397
  ],
14378
14398
  paint: {
14379
- 'line-color': 'rgba(149,46,46,0.7)',
14399
+ 'line-color': 'rgba(118,51,8,0.7)',
14380
14400
  'line-width': {
14381
14401
  base: 1.4,
14382
14402
  stops: [
@@ -14399,7 +14419,7 @@ var medieval_kingdom = {
14399
14419
  ],
14400
14420
  layout: { visibility: 'visible' },
14401
14421
  paint: {
14402
- 'line-color': 'rgba(149,46,46,0.7)',
14422
+ 'line-color': 'rgba(118,51,8,0.7)',
14403
14423
  'line-dasharray': [0.2, 8],
14404
14424
  'line-width': {
14405
14425
  base: 1.4,
@@ -14428,7 +14448,7 @@ var medieval_kingdom = {
14428
14448
  ],
14429
14449
  ],
14430
14450
  paint: {
14431
- 'line-color': '#952e2e',
14451
+ 'line-color': '#763308',
14432
14452
  'line-width': {
14433
14453
  base: 1.4,
14434
14454
  stops: [
@@ -14456,7 +14476,7 @@ var medieval_kingdom = {
14456
14476
  ],
14457
14477
  ],
14458
14478
  paint: {
14459
- 'line-color': '#952e2e',
14479
+ 'line-color': '#763308',
14460
14480
  'line-dasharray': [0.2, 8],
14461
14481
  'line-width': {
14462
14482
  base: 1.4,
@@ -14477,7 +14497,7 @@ var medieval_kingdom = {
14477
14497
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
14478
14498
  layout: { 'line-join': 'round' },
14479
14499
  paint: {
14480
- 'line-color': '#CD5C5C',
14500
+ 'line-color': '#d65d0e',
14481
14501
  'line-opacity': 1,
14482
14502
  'line-width': {
14483
14503
  base: 1.2,
@@ -14503,7 +14523,7 @@ var medieval_kingdom = {
14503
14523
  ],
14504
14524
  layout: { 'line-join': 'round' },
14505
14525
  paint: {
14506
- 'line-color': '#CD5C5C',
14526
+ 'line-color': '#d65d0e',
14507
14527
  'line-opacity': 1,
14508
14528
  'line-width': {
14509
14529
  base: 1.2,
@@ -14525,7 +14545,7 @@ var medieval_kingdom = {
14525
14545
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
14526
14546
  layout: { 'line-join': 'round' },
14527
14547
  paint: {
14528
- 'line-color': '#CD5C5C',
14548
+ 'line-color': '#d65d0e',
14529
14549
  'line-opacity': 1,
14530
14550
  'line-width': {
14531
14551
  base: 1.2,
@@ -14545,7 +14565,7 @@ var medieval_kingdom = {
14545
14565
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
14546
14566
  layout: { 'line-join': 'round' },
14547
14567
  paint: {
14548
- 'line-color': '#CD5C5C',
14568
+ 'line-color': '#d65d0e',
14549
14569
  'line-width': {
14550
14570
  base: 1.2,
14551
14571
  stops: [
@@ -14566,7 +14586,7 @@ var medieval_kingdom = {
14566
14586
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
14567
14587
  layout: { 'line-join': 'round' },
14568
14588
  paint: {
14569
- 'line-color': '#CD5C5C',
14589
+ 'line-color': '#d65d0e',
14570
14590
  'line-width': {
14571
14591
  base: 1.2,
14572
14592
  stops: [
@@ -14590,7 +14610,7 @@ var medieval_kingdom = {
14590
14610
  ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
14591
14611
  ],
14592
14612
  paint: {
14593
- 'line-color': '#d98383',
14613
+ 'line-color': '#f17626',
14594
14614
  'line-width': {
14595
14615
  base: 1.2,
14596
14616
  stops: [
@@ -14612,7 +14632,7 @@ var medieval_kingdom = {
14612
14632
  ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
14613
14633
  ],
14614
14634
  paint: {
14615
- 'line-color': '#FFC0CB',
14635
+ 'line-color': '#b48ead',
14616
14636
  'line-width': {
14617
14637
  base: 1.2,
14618
14638
  stops: [
@@ -14632,7 +14652,7 @@ var medieval_kingdom = {
14632
14652
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
14633
14653
  layout: { 'line-join': 'round' },
14634
14654
  paint: {
14635
- 'line-color': '#8b5e3c',
14655
+ 'line-color': '#ebdbb2',
14636
14656
  'line-width': {
14637
14657
  base: 1.2,
14638
14658
  stops: [
@@ -14657,7 +14677,7 @@ var medieval_kingdom = {
14657
14677
  ],
14658
14678
  layout: { 'line-join': 'round' },
14659
14679
  paint: {
14660
- 'line-color': '#8B5E3C',
14680
+ 'line-color': '#ebdbb2',
14661
14681
  'line-width': {
14662
14682
  base: 1.2,
14663
14683
  stops: [
@@ -14678,7 +14698,7 @@ var medieval_kingdom = {
14678
14698
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
14679
14699
  layout: { 'line-join': 'round' },
14680
14700
  paint: {
14681
- 'line-color': '#8B5E3C',
14701
+ 'line-color': '#ebdbb2',
14682
14702
  'line-width': {
14683
14703
  base: 1.2,
14684
14704
  stops: [
@@ -14698,7 +14718,7 @@ var medieval_kingdom = {
14698
14718
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
14699
14719
  layout: { 'line-join': 'round' },
14700
14720
  paint: {
14701
- 'line-color': '#8B5E3C',
14721
+ 'line-color': '#ebdbb2',
14702
14722
  'line-width': {
14703
14723
  base: 1.2,
14704
14724
  stops: [
@@ -14718,7 +14738,7 @@ var medieval_kingdom = {
14718
14738
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
14719
14739
  layout: { 'line-join': 'round' },
14720
14740
  paint: {
14721
- 'line-color': '#8b5e3c',
14741
+ 'line-color': '#ebdbb2',
14722
14742
  'line-width': {
14723
14743
  base: 1.2,
14724
14744
  stops: [
@@ -14737,7 +14757,7 @@ var medieval_kingdom = {
14737
14757
  'source-layer': 'transportation',
14738
14758
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
14739
14759
  paint: {
14740
- 'line-color': '#952e2e',
14760
+ 'line-color': '#763308',
14741
14761
  'line-width': {
14742
14762
  base: 1.4,
14743
14763
  stops: [
@@ -14756,7 +14776,7 @@ var medieval_kingdom = {
14756
14776
  'source-layer': 'transportation',
14757
14777
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
14758
14778
  paint: {
14759
- 'line-color': '#952e2e',
14779
+ 'line-color': '#763308',
14760
14780
  'line-dasharray': [0.2, 8],
14761
14781
  'line-width': {
14762
14782
  base: 1.4,
@@ -14776,7 +14796,7 @@ var medieval_kingdom = {
14776
14796
  filter: ['all', ['in', 'admin_level', 4, 6, 8], ['!=', 'maritime', 1]],
14777
14797
  layout: { 'line-join': 'round' },
14778
14798
  paint: {
14779
- 'line-color': '#A0522D',
14799
+ 'line-color': '#8fbcbb',
14780
14800
  'line-dasharray': [3, 1, 1, 1],
14781
14801
  'line-width': {
14782
14802
  base: 1.4,
@@ -14796,7 +14816,7 @@ var medieval_kingdom = {
14796
14816
  filter: ['all', ['==', 'admin_level', 2], ['!=', 'maritime', 1]],
14797
14817
  layout: { 'line-cap': 'round', 'line-join': 'round' },
14798
14818
  paint: {
14799
- 'line-color': '#A0522D',
14819
+ 'line-color': '#8fbcbb',
14800
14820
  'line-width': {
14801
14821
  base: 1,
14802
14822
  stops: [
@@ -14816,7 +14836,7 @@ var medieval_kingdom = {
14816
14836
  filter: ['all', ['in', 'admin_level', 2, 4], ['==', 'maritime', 1]],
14817
14837
  layout: { 'line-cap': 'round', 'line-join': 'round' },
14818
14838
  paint: {
14819
- 'line-color': '#1E90FF',
14839
+ 'line-color': '#8fbcbb',
14820
14840
  'line-width': {
14821
14841
  base: 1,
14822
14842
  stops: [
@@ -15833,9 +15853,9 @@ var medieval_kingdom = {
15833
15853
  ],
15834
15854
  };
15835
15855
 
15836
- var oceanic_next = {
15856
+ var MedievalKingdomStyle = {
15837
15857
  version: 8,
15838
- name: 'Oceanic Next',
15858
+ name: 'Medieval Kingdom',
15839
15859
  center: [8.542, 47.372],
15840
15860
  zoom: 11.6,
15841
15861
  bearing: 0,
@@ -15849,7 +15869,7 @@ var oceanic_next = {
15849
15869
  sprite: config.sprite,
15850
15870
  glyphs: config.glyphs,
15851
15871
  layers: [
15852
- { id: 'background', type: 'background', paint: { 'background-color': '#282822' } },
15872
+ { id: 'background', type: 'background', paint: { 'background-color': '#ffd1a8' } },
15853
15873
  {
15854
15874
  id: 'landcover-glacier',
15855
15875
  type: 'fill',
@@ -15859,7 +15879,7 @@ var oceanic_next = {
15859
15879
  filter: ['==', 'subclass', 'glacier'],
15860
15880
  layout: { visibility: 'visible' },
15861
15881
  paint: {
15862
- 'fill-color': '#81a1c1',
15882
+ 'fill-color': '#228B22',
15863
15883
  'fill-opacity': {
15864
15884
  base: 1,
15865
15885
  stops: [
@@ -15876,7 +15896,7 @@ var oceanic_next = {
15876
15896
  source: 'openmaptiles',
15877
15897
  'source-layer': 'landuse',
15878
15898
  filter: ['==', 'class', 'residential'],
15879
- paint: { 'fill-color': '#a3be8c' },
15899
+ paint: { 'fill-color': '#bfa677' },
15880
15900
  },
15881
15901
  {
15882
15902
  id: 'landuse-commercial',
@@ -15885,7 +15905,7 @@ var oceanic_next = {
15885
15905
  source: 'openmaptiles',
15886
15906
  'source-layer': 'landuse',
15887
15907
  filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'commercial']],
15888
- paint: { 'fill-color': '#acc598' },
15908
+ paint: { 'fill-color': '#c5af85' },
15889
15909
  },
15890
15910
  {
15891
15911
  id: 'landuse-industrial',
@@ -15894,7 +15914,7 @@ var oceanic_next = {
15894
15914
  source: 'openmaptiles',
15895
15915
  'source-layer': 'landuse',
15896
15916
  filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'industrial']],
15897
- paint: { 'fill-color': '#b5cba3' },
15917
+ paint: { 'fill-color': '#ccb892' },
15898
15918
  },
15899
15919
  {
15900
15920
  id: 'park',
@@ -15904,7 +15924,7 @@ var oceanic_next = {
15904
15924
  'source-layer': 'park',
15905
15925
  filter: ['==', '$type', 'Polygon'],
15906
15926
  paint: {
15907
- 'fill-color': '#a3be8c',
15927
+ 'fill-color': '#556B2F',
15908
15928
  'fill-opacity': {
15909
15929
  base: 1.8,
15910
15930
  stops: [
@@ -15922,7 +15942,7 @@ var oceanic_next = {
15922
15942
  'source-layer': 'park',
15923
15943
  filter: ['==', '$type', 'Polygon'],
15924
15944
  layout: {},
15925
- paint: { 'line-color': 'rgba(163,19,14,0.6)', 'line-dasharray': [3, 3] },
15945
+ paint: { 'line-color': 'rgba(85,107,47,0.6)', 'line-dasharray': [3, 3] },
15926
15946
  },
15927
15947
  {
15928
15948
  id: 'landuse-cemetery',
@@ -15931,7 +15951,7 @@ var oceanic_next = {
15931
15951
  source: 'openmaptiles',
15932
15952
  'source-layer': 'landuse',
15933
15953
  filter: ['==', 'class', 'cemetery'],
15934
- paint: { 'fill-color': '#cbdabe' },
15954
+ paint: { 'fill-color': '#d1e0b8' },
15935
15955
  },
15936
15956
  {
15937
15957
  id: 'landuse-hospital',
@@ -15940,7 +15960,7 @@ var oceanic_next = {
15940
15960
  source: 'openmaptiles',
15941
15961
  'source-layer': 'landuse',
15942
15962
  filter: ['==', 'class', 'hospital'],
15943
- paint: { 'fill-color': '#b48ead' },
15963
+ paint: { 'fill-color': '#FFC0CB' },
15944
15964
  },
15945
15965
  {
15946
15966
  id: 'landuse-school',
@@ -15949,7 +15969,7 @@ var oceanic_next = {
15949
15969
  source: 'openmaptiles',
15950
15970
  'source-layer': 'landuse',
15951
15971
  filter: ['==', 'class', 'school'],
15952
- paint: { 'fill-color': 'rgba(18,142,173,0.8)' },
15972
+ paint: { 'fill-color': 'rgba(255,192,203,0.8)' },
15953
15973
  },
15954
15974
  {
15955
15975
  id: 'landuse-railway',
@@ -15958,7 +15978,7 @@ var oceanic_next = {
15958
15978
  source: 'openmaptiles',
15959
15979
  'source-layer': 'landuse',
15960
15980
  filter: ['==', 'class', 'railway'],
15961
- paint: { 'fill-color': 'rgba(118,51,8,0.4)' },
15981
+ paint: { 'fill-color': 'rgba(149,46,46,0.4)' },
15962
15982
  },
15963
15983
  {
15964
15984
  id: 'landcover-wood',
@@ -15968,7 +15988,7 @@ var oceanic_next = {
15968
15988
  'source-layer': 'landcover',
15969
15989
  filter: ['==', 'class', 'wood'],
15970
15990
  paint: {
15971
- 'fill-color': '#81a1c1',
15991
+ 'fill-color': '#228B22',
15972
15992
  'fill-opacity': 0.1,
15973
15993
  'fill-outline-color': 'hsla(0, 0%, 0%, 0.03)',
15974
15994
  'fill-antialias': {
@@ -15987,7 +16007,7 @@ var oceanic_next = {
15987
16007
  source: 'openmaptiles',
15988
16008
  'source-layer': 'landcover',
15989
16009
  filter: ['==', 'class', 'grass'],
15990
- paint: { 'fill-color': '#a3be8c', 'fill-opacity': 1 },
16010
+ paint: { 'fill-color': '#556B2F', 'fill-opacity': 1 },
15991
16011
  },
15992
16012
  {
15993
16013
  id: 'landcover-grass-park',
@@ -15996,7 +16016,7 @@ var oceanic_next = {
15996
16016
  source: 'openmaptiles',
15997
16017
  'source-layer': 'park',
15998
16018
  filter: ['==', 'class', 'public_park'],
15999
- paint: { 'fill-color': '#a3be8c', 'fill-opacity': 0.8 },
16019
+ paint: { 'fill-color': '#556B2F', 'fill-opacity': 0.8 },
16000
16020
  },
16001
16021
  {
16002
16022
  id: 'waterway-other',
@@ -16007,7 +16027,7 @@ var oceanic_next = {
16007
16027
  filter: ['!in', 'class', 'canal', 'river', 'stream'],
16008
16028
  layout: { 'line-cap': 'round' },
16009
16029
  paint: {
16010
- 'line-color': '#8fbcbb',
16030
+ 'line-color': '#1E90FF',
16011
16031
  'line-width': {
16012
16032
  base: 1.3,
16013
16033
  stops: [
@@ -16026,7 +16046,7 @@ var oceanic_next = {
16026
16046
  filter: ['in', 'class', 'canal', 'stream'],
16027
16047
  layout: { 'line-cap': 'round' },
16028
16048
  paint: {
16029
- 'line-color': '#8fbcbb',
16049
+ 'line-color': '#1E90FF',
16030
16050
  'line-width': {
16031
16051
  base: 1.3,
16032
16052
  stops: [
@@ -16045,7 +16065,7 @@ var oceanic_next = {
16045
16065
  filter: ['==', 'class', 'river'],
16046
16066
  layout: { 'line-cap': 'round' },
16047
16067
  paint: {
16048
- 'line-color': '#8fbcbb',
16068
+ 'line-color': '#1E90FF',
16049
16069
  'line-width': {
16050
16070
  base: 1.2,
16051
16071
  stops: [
@@ -16066,7 +16086,7 @@ var oceanic_next = {
16066
16086
  layout: { visibility: 'visible' },
16067
16087
  paint: {
16068
16088
  'fill-opacity': 1,
16069
- 'fill-color': '#8fbcbb',
16089
+ 'fill-color': '#1E90FF',
16070
16090
  'fill-translate': {
16071
16091
  base: 1,
16072
16092
  stops: [
@@ -16083,7 +16103,7 @@ var oceanic_next = {
16083
16103
  source: 'openmaptiles',
16084
16104
  'source-layer': 'water',
16085
16105
  layout: { visibility: 'visible' },
16086
- paint: { 'fill-color': '#5f9f9e' },
16106
+ paint: { 'fill-color': '#006ad1' },
16087
16107
  },
16088
16108
  {
16089
16109
  id: 'water-pattern',
@@ -16103,7 +16123,7 @@ var oceanic_next = {
16103
16123
  filter: ['==', 'subclass', 'ice_shelf'],
16104
16124
  layout: { visibility: 'visible' },
16105
16125
  paint: {
16106
- 'fill-color': '#81a1c1',
16126
+ 'fill-color': '#228B22',
16107
16127
  'fill-opacity': {
16108
16128
  base: 1,
16109
16129
  stops: [
@@ -16119,7 +16139,7 @@ var oceanic_next = {
16119
16139
  metadata: { 'mapbox:group': '1444849364238.8171' },
16120
16140
  source: 'openmaptiles',
16121
16141
  'source-layer': 'building',
16122
- paint: { 'fill-color': '#65737e', 'fill-antialias': true },
16142
+ paint: { 'fill-color': '#f9e9cb', 'fill-antialias': true },
16123
16143
  },
16124
16144
  {
16125
16145
  id: 'building-top',
@@ -16137,7 +16157,7 @@ var oceanic_next = {
16137
16157
  ],
16138
16158
  },
16139
16159
  'fill-outline-color': '#dfdbd7',
16140
- 'fill-color': '#7e8d98',
16160
+ 'fill-color': '#fefcf9',
16141
16161
  'fill-opacity': {
16142
16162
  base: 1,
16143
16163
  stops: [
@@ -16156,7 +16176,7 @@ var oceanic_next = {
16156
16176
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
16157
16177
  layout: { 'line-join': 'round' },
16158
16178
  paint: {
16159
- 'line-color': '#d65d0e',
16179
+ 'line-color': '#CD5C5C',
16160
16180
  'line-dasharray': [0.5, 0.25],
16161
16181
  'line-width': {
16162
16182
  base: 1.2,
@@ -16177,7 +16197,7 @@ var oceanic_next = {
16177
16197
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor']],
16178
16198
  layout: { 'line-join': 'round' },
16179
16199
  paint: {
16180
- 'line-color': '#d65d0e',
16200
+ 'line-color': '#CD5C5C',
16181
16201
  'line-opacity': {
16182
16202
  stops: [
16183
16203
  [12, 0],
@@ -16204,7 +16224,7 @@ var oceanic_next = {
16204
16224
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
16205
16225
  layout: { 'line-join': 'round' },
16206
16226
  paint: {
16207
- 'line-color': '#d65d0e',
16227
+ 'line-color': '#CD5C5C',
16208
16228
  'line-opacity': 1,
16209
16229
  'line-width': {
16210
16230
  base: 1.2,
@@ -16224,7 +16244,7 @@ var oceanic_next = {
16224
16244
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
16225
16245
  layout: { 'line-join': 'round' },
16226
16246
  paint: {
16227
- 'line-color': '#d65d0e',
16247
+ 'line-color': '#CD5C5C',
16228
16248
  'line-width': {
16229
16249
  base: 1.2,
16230
16250
  stops: [
@@ -16245,7 +16265,7 @@ var oceanic_next = {
16245
16265
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
16246
16266
  layout: { 'line-join': 'round', visibility: 'visible' },
16247
16267
  paint: {
16248
- 'line-color': '#d65d0e',
16268
+ 'line-color': '#CD5C5C',
16249
16269
  'line-dasharray': [0.5, 0.25],
16250
16270
  'line-width': {
16251
16271
  base: 1.2,
@@ -16270,7 +16290,7 @@ var oceanic_next = {
16270
16290
  ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'path']],
16271
16291
  ],
16272
16292
  paint: {
16273
- 'line-color': '#f17626',
16293
+ 'line-color': '#d98383',
16274
16294
  'line-dasharray': [1.5, 0.75],
16275
16295
  'line-width': {
16276
16296
  base: 1.2,
@@ -16290,7 +16310,7 @@ var oceanic_next = {
16290
16310
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
16291
16311
  layout: { 'line-join': 'round' },
16292
16312
  paint: {
16293
- 'line-color': '#f17626',
16313
+ 'line-color': '#d98383',
16294
16314
  'line-width': {
16295
16315
  base: 1.2,
16296
16316
  stops: [
@@ -16310,7 +16330,7 @@ var oceanic_next = {
16310
16330
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor_road']],
16311
16331
  layout: { 'line-join': 'round' },
16312
16332
  paint: {
16313
- 'line-color': '#f17626',
16333
+ 'line-color': '#d98383',
16314
16334
  'line-opacity': 1,
16315
16335
  'line-width': {
16316
16336
  base: 1.2,
@@ -16331,7 +16351,7 @@ var oceanic_next = {
16331
16351
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
16332
16352
  layout: { 'line-join': 'round' },
16333
16353
  paint: {
16334
- 'line-color': '#f2853e',
16354
+ 'line-color': '#df9797',
16335
16355
  'line-width': {
16336
16356
  base: 1.2,
16337
16357
  stops: [
@@ -16351,7 +16371,7 @@ var oceanic_next = {
16351
16371
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
16352
16372
  layout: { 'line-join': 'round' },
16353
16373
  paint: {
16354
- 'line-color': '#d65d0e',
16374
+ 'line-color': '#CD5C5C',
16355
16375
  'line-width': {
16356
16376
  base: 1.2,
16357
16377
  stops: [
@@ -16371,7 +16391,7 @@ var oceanic_next = {
16371
16391
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
16372
16392
  layout: { 'line-join': 'round', visibility: 'visible' },
16373
16393
  paint: {
16374
- 'line-color': 'rgba(235,219,178,0.8)',
16394
+ 'line-color': 'rgba(139,94,6,0.8)',
16375
16395
  'line-width': {
16376
16396
  base: 1.2,
16377
16397
  stops: [
@@ -16390,7 +16410,7 @@ var oceanic_next = {
16390
16410
  'source-layer': 'transportation',
16391
16411
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'rail']],
16392
16412
  paint: {
16393
- 'line-color': '#763308',
16413
+ 'line-color': '#952e2e',
16394
16414
  'line-width': {
16395
16415
  base: 1.4,
16396
16416
  stops: [
@@ -16412,7 +16432,7 @@ var oceanic_next = {
16412
16432
  filter: ['all', ['in', 'class', 'taxiway']],
16413
16433
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16414
16434
  paint: {
16415
- 'line-color': '#763308',
16435
+ 'line-color': '#952e2e',
16416
16436
  'line-width': {
16417
16437
  base: 1.5,
16418
16438
  stops: [
@@ -16433,7 +16453,7 @@ var oceanic_next = {
16433
16453
  filter: ['all', ['in', 'class', 'runway']],
16434
16454
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16435
16455
  paint: {
16436
- 'line-color': '#763308',
16456
+ 'line-color': '#952e2e',
16437
16457
  'line-width': {
16438
16458
  base: 1.5,
16439
16459
  stops: [
@@ -16461,7 +16481,7 @@ var oceanic_next = {
16461
16481
  [14, 1],
16462
16482
  ],
16463
16483
  },
16464
- 'fill-color': 'rgba(214,93,14,0.5)',
16484
+ 'fill-color': 'rgba(205,92,92,0.5)',
16465
16485
  },
16466
16486
  },
16467
16487
  {
@@ -16474,7 +16494,7 @@ var oceanic_next = {
16474
16494
  filter: ['all', ['in', 'class', 'taxiway'], ['==', '$type', 'LineString']],
16475
16495
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16476
16496
  paint: {
16477
- 'line-color': '#f2853e',
16497
+ 'line-color': '#df9797',
16478
16498
  'line-width': {
16479
16499
  base: 1.5,
16480
16500
  stops: [
@@ -16501,7 +16521,7 @@ var oceanic_next = {
16501
16521
  filter: ['all', ['in', 'class', 'runway'], ['==', '$type', 'LineString']],
16502
16522
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16503
16523
  paint: {
16504
- 'line-color': '#f2853e',
16524
+ 'line-color': '#df9797',
16505
16525
  'line-width': {
16506
16526
  base: 1.5,
16507
16527
  stops: [
@@ -16527,7 +16547,7 @@ var oceanic_next = {
16527
16547
  filter: ['==', '$type', 'Polygon'],
16528
16548
  layout: { visibility: 'visible' },
16529
16549
  paint: {
16530
- 'fill-color': '#a6480b',
16550
+ 'fill-color': '#bc3a3a',
16531
16551
  'fill-outline-color': '#cfcdca',
16532
16552
  'fill-opacity': 0.9,
16533
16553
  'fill-antialias': false,
@@ -16543,7 +16563,7 @@ var oceanic_next = {
16543
16563
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
16544
16564
  layout: { 'line-cap': 'round', 'line-join': 'round' },
16545
16565
  paint: {
16546
- 'line-color': '#d65d0e',
16566
+ 'line-color': '#CD5C5C',
16547
16567
  'line-opacity': 1,
16548
16568
  'line-width': {
16549
16569
  base: 1.2,
@@ -16570,7 +16590,7 @@ var oceanic_next = {
16570
16590
  ],
16571
16591
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16572
16592
  paint: {
16573
- 'line-color': '#d65d0e',
16593
+ 'line-color': '#CD5C5C',
16574
16594
  'line-opacity': 1,
16575
16595
  'line-width': {
16576
16596
  base: 1.2,
@@ -16596,7 +16616,7 @@ var oceanic_next = {
16596
16616
  ],
16597
16617
  layout: { 'line-cap': 'round', 'line-join': 'round' },
16598
16618
  paint: {
16599
- 'line-color': 'rgba(214,93,14,0.8)',
16619
+ 'line-color': 'rgba(205,92,92,0.8)',
16600
16620
  'line-opacity': {
16601
16621
  stops: [
16602
16622
  [12, 0],
@@ -16627,7 +16647,7 @@ var oceanic_next = {
16627
16647
  ],
16628
16648
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16629
16649
  paint: {
16630
- 'line-color': '#d65d0e',
16650
+ 'line-color': '#CD5C5C',
16631
16651
  'line-opacity': 1,
16632
16652
  'line-width': {
16633
16653
  base: 1.2,
@@ -16648,7 +16668,7 @@ var oceanic_next = {
16648
16668
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'primary']],
16649
16669
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16650
16670
  paint: {
16651
- 'line-color': '#d65d0e',
16671
+ 'line-color': '#CD5C5C',
16652
16672
  'line-opacity': {
16653
16673
  stops: [
16654
16674
  [7, 0],
@@ -16676,7 +16696,7 @@ var oceanic_next = {
16676
16696
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'trunk']],
16677
16697
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16678
16698
  paint: {
16679
- 'line-color': '#d65d0e',
16699
+ 'line-color': '#CD5C5C',
16680
16700
  'line-opacity': {
16681
16701
  stops: [
16682
16702
  [5, 0],
@@ -16704,7 +16724,7 @@ var oceanic_next = {
16704
16724
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway']],
16705
16725
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16706
16726
  paint: {
16707
- 'line-color': '#d65d0e',
16727
+ 'line-color': '#CD5C5C',
16708
16728
  'line-width': {
16709
16729
  base: 1.2,
16710
16730
  stops: [
@@ -16735,7 +16755,7 @@ var oceanic_next = {
16735
16755
  ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'path']],
16736
16756
  ],
16737
16757
  paint: {
16738
- 'line-color': '#b48ead',
16758
+ 'line-color': '#FFC0CB',
16739
16759
  'line-dasharray': [1.5, 0.75],
16740
16760
  'line-width': {
16741
16761
  base: 1.2,
@@ -16756,7 +16776,7 @@ var oceanic_next = {
16756
16776
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
16757
16777
  layout: { 'line-cap': 'round', 'line-join': 'round' },
16758
16778
  paint: {
16759
- 'line-color': '#ebdbb2',
16779
+ 'line-color': '#8b5e3c',
16760
16780
  'line-width': {
16761
16781
  base: 1.2,
16762
16782
  stops: [
@@ -16782,7 +16802,7 @@ var oceanic_next = {
16782
16802
  ],
16783
16803
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16784
16804
  paint: {
16785
- 'line-color': '#ebdbb2',
16805
+ 'line-color': '#8B5E3C',
16786
16806
  'line-width': {
16787
16807
  base: 1.2,
16788
16808
  stops: [
@@ -16807,7 +16827,7 @@ var oceanic_next = {
16807
16827
  ],
16808
16828
  layout: { 'line-cap': 'round', 'line-join': 'round' },
16809
16829
  paint: {
16810
- 'line-color': '#f49456',
16830
+ 'line-color': '#e5aaaa',
16811
16831
  'line-opacity': 1,
16812
16832
  'line-width': {
16813
16833
  base: 1.2,
@@ -16832,7 +16852,7 @@ var oceanic_next = {
16832
16852
  ],
16833
16853
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16834
16854
  paint: {
16835
- 'line-color': '#ebdbb2',
16855
+ 'line-color': '#8B5E3C',
16836
16856
  'line-width': {
16837
16857
  base: 1.2,
16838
16858
  stops: [
@@ -16856,7 +16876,7 @@ var oceanic_next = {
16856
16876
  ],
16857
16877
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16858
16878
  paint: {
16859
- 'line-color': '#ebdbb2',
16879
+ 'line-color': '#8B5E3C',
16860
16880
  'line-width': {
16861
16881
  base: 1.2,
16862
16882
  stops: [
@@ -16880,7 +16900,7 @@ var oceanic_next = {
16880
16900
  ],
16881
16901
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16882
16902
  paint: {
16883
- 'line-color': '#ebdbb2',
16903
+ 'line-color': '#8B5E3C',
16884
16904
  'line-width': {
16885
16905
  base: 1.2,
16886
16906
  stops: [
@@ -16905,7 +16925,7 @@ var oceanic_next = {
16905
16925
  ],
16906
16926
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16907
16927
  paint: {
16908
- 'line-color': '#ebdbb2',
16928
+ 'line-color': '#8b5e3c',
16909
16929
  'line-width': {
16910
16930
  base: 1.2,
16911
16931
  stops: [
@@ -16928,7 +16948,7 @@ var oceanic_next = {
16928
16948
  ['all', ['==', 'class', 'rail'], ['has', 'service']],
16929
16949
  ],
16930
16950
  paint: {
16931
- 'line-color': 'rgba(118,51,8,0.7)',
16951
+ 'line-color': 'rgba(149,46,46,0.7)',
16932
16952
  'line-width': {
16933
16953
  base: 1.4,
16934
16954
  stops: [
@@ -16951,7 +16971,7 @@ var oceanic_next = {
16951
16971
  ],
16952
16972
  layout: { visibility: 'visible' },
16953
16973
  paint: {
16954
- 'line-color': 'rgba(118,51,8,0.7)',
16974
+ 'line-color': 'rgba(149,46,46,0.7)',
16955
16975
  'line-dasharray': [0.2, 8],
16956
16976
  'line-width': {
16957
16977
  base: 1.4,
@@ -16980,7 +17000,7 @@ var oceanic_next = {
16980
17000
  ],
16981
17001
  ],
16982
17002
  paint: {
16983
- 'line-color': '#763308',
17003
+ 'line-color': '#952e2e',
16984
17004
  'line-width': {
16985
17005
  base: 1.4,
16986
17006
  stops: [
@@ -17008,7 +17028,7 @@ var oceanic_next = {
17008
17028
  ],
17009
17029
  ],
17010
17030
  paint: {
17011
- 'line-color': '#763308',
17031
+ 'line-color': '#952e2e',
17012
17032
  'line-dasharray': [0.2, 8],
17013
17033
  'line-width': {
17014
17034
  base: 1.4,
@@ -17029,7 +17049,7 @@ var oceanic_next = {
17029
17049
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
17030
17050
  layout: { 'line-join': 'round' },
17031
17051
  paint: {
17032
- 'line-color': '#d65d0e',
17052
+ 'line-color': '#CD5C5C',
17033
17053
  'line-opacity': 1,
17034
17054
  'line-width': {
17035
17055
  base: 1.2,
@@ -17055,7 +17075,7 @@ var oceanic_next = {
17055
17075
  ],
17056
17076
  layout: { 'line-join': 'round' },
17057
17077
  paint: {
17058
- 'line-color': '#d65d0e',
17078
+ 'line-color': '#CD5C5C',
17059
17079
  'line-opacity': 1,
17060
17080
  'line-width': {
17061
17081
  base: 1.2,
@@ -17077,7 +17097,7 @@ var oceanic_next = {
17077
17097
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
17078
17098
  layout: { 'line-join': 'round' },
17079
17099
  paint: {
17080
- 'line-color': '#d65d0e',
17100
+ 'line-color': '#CD5C5C',
17081
17101
  'line-opacity': 1,
17082
17102
  'line-width': {
17083
17103
  base: 1.2,
@@ -17097,7 +17117,7 @@ var oceanic_next = {
17097
17117
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
17098
17118
  layout: { 'line-join': 'round' },
17099
17119
  paint: {
17100
- 'line-color': '#d65d0e',
17120
+ 'line-color': '#CD5C5C',
17101
17121
  'line-width': {
17102
17122
  base: 1.2,
17103
17123
  stops: [
@@ -17118,7 +17138,7 @@ var oceanic_next = {
17118
17138
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
17119
17139
  layout: { 'line-join': 'round' },
17120
17140
  paint: {
17121
- 'line-color': '#d65d0e',
17141
+ 'line-color': '#CD5C5C',
17122
17142
  'line-width': {
17123
17143
  base: 1.2,
17124
17144
  stops: [
@@ -17142,7 +17162,7 @@ var oceanic_next = {
17142
17162
  ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
17143
17163
  ],
17144
17164
  paint: {
17145
- 'line-color': '#f17626',
17165
+ 'line-color': '#d98383',
17146
17166
  'line-width': {
17147
17167
  base: 1.2,
17148
17168
  stops: [
@@ -17164,7 +17184,7 @@ var oceanic_next = {
17164
17184
  ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
17165
17185
  ],
17166
17186
  paint: {
17167
- 'line-color': '#b48ead',
17187
+ 'line-color': '#FFC0CB',
17168
17188
  'line-width': {
17169
17189
  base: 1.2,
17170
17190
  stops: [
@@ -17184,7 +17204,7 @@ var oceanic_next = {
17184
17204
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
17185
17205
  layout: { 'line-join': 'round' },
17186
17206
  paint: {
17187
- 'line-color': '#ebdbb2',
17207
+ 'line-color': '#8b5e3c',
17188
17208
  'line-width': {
17189
17209
  base: 1.2,
17190
17210
  stops: [
@@ -17209,7 +17229,7 @@ var oceanic_next = {
17209
17229
  ],
17210
17230
  layout: { 'line-join': 'round' },
17211
17231
  paint: {
17212
- 'line-color': '#ebdbb2',
17232
+ 'line-color': '#8B5E3C',
17213
17233
  'line-width': {
17214
17234
  base: 1.2,
17215
17235
  stops: [
@@ -17230,7 +17250,7 @@ var oceanic_next = {
17230
17250
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
17231
17251
  layout: { 'line-join': 'round' },
17232
17252
  paint: {
17233
- 'line-color': '#ebdbb2',
17253
+ 'line-color': '#8B5E3C',
17234
17254
  'line-width': {
17235
17255
  base: 1.2,
17236
17256
  stops: [
@@ -17250,7 +17270,7 @@ var oceanic_next = {
17250
17270
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
17251
17271
  layout: { 'line-join': 'round' },
17252
17272
  paint: {
17253
- 'line-color': '#ebdbb2',
17273
+ 'line-color': '#8B5E3C',
17254
17274
  'line-width': {
17255
17275
  base: 1.2,
17256
17276
  stops: [
@@ -17270,7 +17290,7 @@ var oceanic_next = {
17270
17290
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
17271
17291
  layout: { 'line-join': 'round' },
17272
17292
  paint: {
17273
- 'line-color': '#ebdbb2',
17293
+ 'line-color': '#8b5e3c',
17274
17294
  'line-width': {
17275
17295
  base: 1.2,
17276
17296
  stops: [
@@ -17289,7 +17309,7 @@ var oceanic_next = {
17289
17309
  'source-layer': 'transportation',
17290
17310
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
17291
17311
  paint: {
17292
- 'line-color': '#763308',
17312
+ 'line-color': '#952e2e',
17293
17313
  'line-width': {
17294
17314
  base: 1.4,
17295
17315
  stops: [
@@ -17308,7 +17328,7 @@ var oceanic_next = {
17308
17328
  'source-layer': 'transportation',
17309
17329
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
17310
17330
  paint: {
17311
- 'line-color': '#763308',
17331
+ 'line-color': '#952e2e',
17312
17332
  'line-dasharray': [0.2, 8],
17313
17333
  'line-width': {
17314
17334
  base: 1.4,
@@ -17328,7 +17348,7 @@ var oceanic_next = {
17328
17348
  filter: ['all', ['in', 'admin_level', 4, 6, 8], ['!=', 'maritime', 1]],
17329
17349
  layout: { 'line-join': 'round' },
17330
17350
  paint: {
17331
- 'line-color': '#8fbcbb',
17351
+ 'line-color': '#A0522D',
17332
17352
  'line-dasharray': [3, 1, 1, 1],
17333
17353
  'line-width': {
17334
17354
  base: 1.4,
@@ -17348,7 +17368,7 @@ var oceanic_next = {
17348
17368
  filter: ['all', ['==', 'admin_level', 2], ['!=', 'maritime', 1]],
17349
17369
  layout: { 'line-cap': 'round', 'line-join': 'round' },
17350
17370
  paint: {
17351
- 'line-color': '#8fbcbb',
17371
+ 'line-color': '#A0522D',
17352
17372
  'line-width': {
17353
17373
  base: 1,
17354
17374
  stops: [
@@ -17368,7 +17388,7 @@ var oceanic_next = {
17368
17388
  filter: ['all', ['in', 'admin_level', 2, 4], ['==', 'maritime', 1]],
17369
17389
  layout: { 'line-cap': 'round', 'line-join': 'round' },
17370
17390
  paint: {
17371
- 'line-color': '#8fbcbb',
17391
+ 'line-color': '#1E90FF',
17372
17392
  'line-width': {
17373
17393
  base: 1,
17374
17394
  stops: [
@@ -18385,9 +18405,9 @@ var oceanic_next = {
18385
18405
  ],
18386
18406
  };
18387
18407
 
18388
- var solarized = {
18408
+ var GruvboxStyle = {
18389
18409
  version: 8,
18390
- name: 'Solarized',
18410
+ name: 'Gruvbox',
18391
18411
  center: [8.542, 47.372],
18392
18412
  zoom: 11.6,
18393
18413
  bearing: 0,
@@ -18401,7 +18421,7 @@ var solarized = {
18401
18421
  sprite: config.sprite,
18402
18422
  glyphs: config.glyphs,
18403
18423
  layers: [
18404
- { id: 'background', type: 'background', paint: { 'background-color': '#073642' } },
18424
+ { id: 'background', type: 'background', paint: { 'background-color': '#282822' } },
18405
18425
  {
18406
18426
  id: 'landcover-glacier',
18407
18427
  type: 'fill',
@@ -18411,7 +18431,7 @@ var solarized = {
18411
18431
  filter: ['==', 'subclass', 'glacier'],
18412
18432
  layout: { visibility: 'visible' },
18413
18433
  paint: {
18414
- 'fill-color': '#2aa198',
18434
+ 'fill-color': '#83a598',
18415
18435
  'fill-opacity': {
18416
18436
  base: 1,
18417
18437
  stops: [
@@ -18428,7 +18448,7 @@ var solarized = {
18428
18448
  source: 'openmaptiles',
18429
18449
  'source-layer': 'landuse',
18430
18450
  filter: ['==', 'class', 'residential'],
18431
- paint: { 'fill-color': '#657b83' },
18451
+ paint: { 'fill-color': '#b8bb26' },
18432
18452
  },
18433
18453
  {
18434
18454
  id: 'landuse-commercial',
@@ -18437,7 +18457,7 @@ var solarized = {
18437
18457
  source: 'openmaptiles',
18438
18458
  'source-layer': 'landuse',
18439
18459
  filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'commercial']],
18440
- paint: { 'fill-color': '#74888f' },
18460
+ paint: { 'fill-color': '#bfc23c' },
18441
18461
  },
18442
18462
  {
18443
18463
  id: 'landuse-industrial',
@@ -18446,7 +18466,7 @@ var solarized = {
18446
18466
  source: 'openmaptiles',
18447
18467
  'source-layer': 'landuse',
18448
18468
  filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'industrial']],
18449
- paint: { 'fill-color': '#84959c' },
18469
+ paint: { 'fill-color': '#c6c951' },
18450
18470
  },
18451
18471
  {
18452
18472
  id: 'park',
@@ -18456,7 +18476,7 @@ var solarized = {
18456
18476
  'source-layer': 'park',
18457
18477
  filter: ['==', '$type', 'Polygon'],
18458
18478
  paint: {
18459
- 'fill-color': '#859900',
18479
+ 'fill-color': '#b8bb26',
18460
18480
  'fill-opacity': {
18461
18481
  base: 1.8,
18462
18482
  stops: [
@@ -18474,7 +18494,7 @@ var solarized = {
18474
18494
  'source-layer': 'park',
18475
18495
  filter: ['==', '$type', 'Polygon'],
18476
18496
  layout: {},
18477
- paint: { 'line-color': 'rgba(133,153,0,0.6)', 'line-dasharray': [3, 3] },
18497
+ paint: { 'line-color': 'rgba(184,187,38,0.6)', 'line-dasharray': [3, 3] },
18478
18498
  },
18479
18499
  {
18480
18500
  id: 'landuse-cemetery',
@@ -18483,7 +18503,7 @@ var solarized = {
18483
18503
  source: 'openmaptiles',
18484
18504
  'source-layer': 'landuse',
18485
18505
  filter: ['==', 'class', 'cemetery'],
18486
- paint: { 'fill-color': '#f2ff99' },
18506
+ paint: { 'fill-color': '#eceeaa' },
18487
18507
  },
18488
18508
  {
18489
18509
  id: 'landuse-hospital',
@@ -18492,7 +18512,7 @@ var solarized = {
18492
18512
  source: 'openmaptiles',
18493
18513
  'source-layer': 'landuse',
18494
18514
  filter: ['==', 'class', 'hospital'],
18495
- paint: { 'fill-color': '#d30102' },
18515
+ paint: { 'fill-color': '#fe8019' },
18496
18516
  },
18497
18517
  {
18498
18518
  id: 'landuse-school',
@@ -18501,7 +18521,7 @@ var solarized = {
18501
18521
  source: 'openmaptiles',
18502
18522
  'source-layer': 'landuse',
18503
18523
  filter: ['==', 'class', 'school'],
18504
- paint: { 'fill-color': 'rgba(211,1,2,0.8)' },
18524
+ paint: { 'fill-color': 'rgba(254,128,25,0.8)' },
18505
18525
  },
18506
18526
  {
18507
18527
  id: 'landuse-railway',
@@ -18510,7 +18530,7 @@ var solarized = {
18510
18530
  source: 'openmaptiles',
18511
18531
  'source-layer': 'landuse',
18512
18532
  filter: ['==', 'class', 'railway'],
18513
- paint: { 'fill-color': 'rgba(58,63,144,0.4)' },
18533
+ paint: { 'fill-color': 'rgba(118,51,8,0.4)' },
18514
18534
  },
18515
18535
  {
18516
18536
  id: 'landcover-wood',
@@ -18520,7 +18540,7 @@ var solarized = {
18520
18540
  'source-layer': 'landcover',
18521
18541
  filter: ['==', 'class', 'wood'],
18522
18542
  paint: {
18523
- 'fill-color': '#2aa198',
18543
+ 'fill-color': '#83a598',
18524
18544
  'fill-opacity': 0.1,
18525
18545
  'fill-outline-color': 'hsla(0, 0%, 0%, 0.03)',
18526
18546
  'fill-antialias': {
@@ -18539,7 +18559,7 @@ var solarized = {
18539
18559
  source: 'openmaptiles',
18540
18560
  'source-layer': 'landcover',
18541
18561
  filter: ['==', 'class', 'grass'],
18542
- paint: { 'fill-color': '#859900', 'fill-opacity': 1 },
18562
+ paint: { 'fill-color': '#b8bb26', 'fill-opacity': 1 },
18543
18563
  },
18544
18564
  {
18545
18565
  id: 'landcover-grass-park',
@@ -18548,7 +18568,7 @@ var solarized = {
18548
18568
  source: 'openmaptiles',
18549
18569
  'source-layer': 'park',
18550
18570
  filter: ['==', 'class', 'public_park'],
18551
- paint: { 'fill-color': '#859900', 'fill-opacity': 0.8 },
18571
+ paint: { 'fill-color': '#b8bb26', 'fill-opacity': 0.8 },
18552
18572
  },
18553
18573
  {
18554
18574
  id: 'waterway-other',
@@ -18559,7 +18579,7 @@ var solarized = {
18559
18579
  filter: ['!in', 'class', 'canal', 'river', 'stream'],
18560
18580
  layout: { 'line-cap': 'round' },
18561
18581
  paint: {
18562
- 'line-color': '#268bd2',
18582
+ 'line-color': '#83a598',
18563
18583
  'line-width': {
18564
18584
  base: 1.3,
18565
18585
  stops: [
@@ -18578,7 +18598,7 @@ var solarized = {
18578
18598
  filter: ['in', 'class', 'canal', 'stream'],
18579
18599
  layout: { 'line-cap': 'round' },
18580
18600
  paint: {
18581
- 'line-color': '#268bd2',
18601
+ 'line-color': '#83a598',
18582
18602
  'line-width': {
18583
18603
  base: 1.3,
18584
18604
  stops: [
@@ -18597,7 +18617,7 @@ var solarized = {
18597
18617
  filter: ['==', 'class', 'river'],
18598
18618
  layout: { 'line-cap': 'round' },
18599
18619
  paint: {
18600
- 'line-color': '#268bd2',
18620
+ 'line-color': '#83a598',
18601
18621
  'line-width': {
18602
18622
  base: 1.2,
18603
18623
  stops: [
@@ -18618,7 +18638,7 @@ var solarized = {
18618
18638
  layout: { visibility: 'visible' },
18619
18639
  paint: {
18620
18640
  'fill-opacity': 1,
18621
- 'fill-color': '#268bd2',
18641
+ 'fill-color': '#83a598',
18622
18642
  'fill-translate': {
18623
18643
  base: 1,
18624
18644
  stops: [
@@ -18635,7 +18655,7 @@ var solarized = {
18635
18655
  source: 'openmaptiles',
18636
18656
  'source-layer': 'water',
18637
18657
  layout: { visibility: 'visible' },
18638
- paint: { 'fill-color': '#1a6091' },
18658
+ paint: { 'fill-color': '#5c7f72' },
18639
18659
  },
18640
18660
  {
18641
18661
  id: 'water-pattern',
@@ -18655,7 +18675,7 @@ var solarized = {
18655
18675
  filter: ['==', 'subclass', 'ice_shelf'],
18656
18676
  layout: { visibility: 'visible' },
18657
18677
  paint: {
18658
- 'fill-color': '#2aa198',
18678
+ 'fill-color': '#83a598',
18659
18679
  'fill-opacity': {
18660
18680
  base: 1,
18661
18681
  stops: [
@@ -18671,7 +18691,7 @@ var solarized = {
18671
18691
  metadata: { 'mapbox:group': '1444849364238.8171' },
18672
18692
  source: 'openmaptiles',
18673
18693
  'source-layer': 'building',
18674
- paint: { 'fill-color': '#eee8d5', 'fill-antialias': true },
18694
+ paint: { 'fill-color': '#928374', 'fill-antialias': true },
18675
18695
  },
18676
18696
  {
18677
18697
  id: 'building-top',
@@ -18689,7 +18709,7 @@ var solarized = {
18689
18709
  ],
18690
18710
  },
18691
18711
  'fill-outline-color': '#dfdbd7',
18692
- 'fill-color': '#fdfcf9',
18712
+ 'fill-color': '#a89c91',
18693
18713
  'fill-opacity': {
18694
18714
  base: 1,
18695
18715
  stops: [
@@ -18708,7 +18728,7 @@ var solarized = {
18708
18728
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
18709
18729
  layout: { 'line-join': 'round' },
18710
18730
  paint: {
18711
- 'line-color': '#6c71c4',
18731
+ 'line-color': '#d65d0e',
18712
18732
  'line-dasharray': [0.5, 0.25],
18713
18733
  'line-width': {
18714
18734
  base: 1.2,
@@ -18729,7 +18749,7 @@ var solarized = {
18729
18749
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor']],
18730
18750
  layout: { 'line-join': 'round' },
18731
18751
  paint: {
18732
- 'line-color': '#6c71c4',
18752
+ 'line-color': '#d65d0e',
18733
18753
  'line-opacity': {
18734
18754
  stops: [
18735
18755
  [12, 0],
@@ -18756,7 +18776,7 @@ var solarized = {
18756
18776
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
18757
18777
  layout: { 'line-join': 'round' },
18758
18778
  paint: {
18759
- 'line-color': '#d33682',
18779
+ 'line-color': '#d65d0e',
18760
18780
  'line-opacity': 1,
18761
18781
  'line-width': {
18762
18782
  base: 1.2,
@@ -18776,7 +18796,7 @@ var solarized = {
18776
18796
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
18777
18797
  layout: { 'line-join': 'round' },
18778
18798
  paint: {
18779
- 'line-color': '#d33682',
18799
+ 'line-color': '#d65d0e',
18780
18800
  'line-width': {
18781
18801
  base: 1.2,
18782
18802
  stops: [
@@ -18797,7 +18817,7 @@ var solarized = {
18797
18817
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
18798
18818
  layout: { 'line-join': 'round', visibility: 'visible' },
18799
18819
  paint: {
18800
- 'line-color': '#d33682',
18820
+ 'line-color': '#d65d0e',
18801
18821
  'line-dasharray': [0.5, 0.25],
18802
18822
  'line-width': {
18803
18823
  base: 1.2,
@@ -18822,7 +18842,7 @@ var solarized = {
18822
18842
  ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'path']],
18823
18843
  ],
18824
18844
  paint: {
18825
- 'line-color': '#9094d3',
18845
+ 'line-color': '#f17626',
18826
18846
  'line-dasharray': [1.5, 0.75],
18827
18847
  'line-width': {
18828
18848
  base: 1.2,
@@ -18842,7 +18862,7 @@ var solarized = {
18842
18862
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
18843
18863
  layout: { 'line-join': 'round' },
18844
18864
  paint: {
18845
- 'line-color': '#9094d3',
18865
+ 'line-color': '#f17626',
18846
18866
  'line-width': {
18847
18867
  base: 1.2,
18848
18868
  stops: [
@@ -18862,7 +18882,7 @@ var solarized = {
18862
18882
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor_road']],
18863
18883
  layout: { 'line-join': 'round' },
18864
18884
  paint: {
18865
- 'line-color': '#9094d3',
18885
+ 'line-color': '#f17626',
18866
18886
  'line-opacity': 1,
18867
18887
  'line-width': {
18868
18888
  base: 1.2,
@@ -18883,7 +18903,7 @@ var solarized = {
18883
18903
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
18884
18904
  layout: { 'line-join': 'round' },
18885
18905
  paint: {
18886
- 'line-color': '#a3a6da',
18906
+ 'line-color': '#f2853e',
18887
18907
  'line-width': {
18888
18908
  base: 1.2,
18889
18909
  stops: [
@@ -18903,7 +18923,7 @@ var solarized = {
18903
18923
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
18904
18924
  layout: { 'line-join': 'round' },
18905
18925
  paint: {
18906
- 'line-color': '#6c71c4',
18926
+ 'line-color': '#d65d0e',
18907
18927
  'line-width': {
18908
18928
  base: 1.2,
18909
18929
  stops: [
@@ -18923,7 +18943,7 @@ var solarized = {
18923
18943
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
18924
18944
  layout: { 'line-join': 'round', visibility: 'visible' },
18925
18945
  paint: {
18926
- 'line-color': 'rgba(108,113,196,0.8)',
18946
+ 'line-color': 'rgba(235,219,178,0.8)',
18927
18947
  'line-width': {
18928
18948
  base: 1.2,
18929
18949
  stops: [
@@ -18942,7 +18962,7 @@ var solarized = {
18942
18962
  'source-layer': 'transportation',
18943
18963
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'rail']],
18944
18964
  paint: {
18945
- 'line-color': '#3a3f90',
18965
+ 'line-color': '#763308',
18946
18966
  'line-width': {
18947
18967
  base: 1.4,
18948
18968
  stops: [
@@ -18964,7 +18984,7 @@ var solarized = {
18964
18984
  filter: ['all', ['in', 'class', 'taxiway']],
18965
18985
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
18966
18986
  paint: {
18967
- 'line-color': '#3a3f90',
18987
+ 'line-color': '#763308',
18968
18988
  'line-width': {
18969
18989
  base: 1.5,
18970
18990
  stops: [
@@ -18985,7 +19005,7 @@ var solarized = {
18985
19005
  filter: ['all', ['in', 'class', 'runway']],
18986
19006
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
18987
19007
  paint: {
18988
- 'line-color': '#3a3f90',
19008
+ 'line-color': '#763308',
18989
19009
  'line-width': {
18990
19010
  base: 1.5,
18991
19011
  stops: [
@@ -19013,7 +19033,7 @@ var solarized = {
19013
19033
  [14, 1],
19014
19034
  ],
19015
19035
  },
19016
- 'fill-color': 'rgba(108,113,196,0.5)',
19036
+ 'fill-color': 'rgba(214,93,14,0.5)',
19017
19037
  },
19018
19038
  },
19019
19039
  {
@@ -19026,7 +19046,7 @@ var solarized = {
19026
19046
  filter: ['all', ['in', 'class', 'taxiway'], ['==', '$type', 'LineString']],
19027
19047
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19028
19048
  paint: {
19029
- 'line-color': '#a3a6da',
19049
+ 'line-color': '#f2853e',
19030
19050
  'line-width': {
19031
19051
  base: 1.5,
19032
19052
  stops: [
@@ -19053,7 +19073,7 @@ var solarized = {
19053
19073
  filter: ['all', ['in', 'class', 'runway'], ['==', '$type', 'LineString']],
19054
19074
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19055
19075
  paint: {
19056
- 'line-color': '#a3a6da',
19076
+ 'line-color': '#f2853e',
19057
19077
  'line-width': {
19058
19078
  base: 1.5,
19059
19079
  stops: [
@@ -19079,7 +19099,7 @@ var solarized = {
19079
19099
  filter: ['==', '$type', 'Polygon'],
19080
19100
  layout: { visibility: 'visible' },
19081
19101
  paint: {
19082
- 'fill-color': '#484fb5',
19102
+ 'fill-color': '#a6480b',
19083
19103
  'fill-outline-color': '#cfcdca',
19084
19104
  'fill-opacity': 0.9,
19085
19105
  'fill-antialias': false,
@@ -19095,7 +19115,7 @@ var solarized = {
19095
19115
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
19096
19116
  layout: { 'line-cap': 'round', 'line-join': 'round' },
19097
19117
  paint: {
19098
- 'line-color': '#d33682',
19118
+ 'line-color': '#d65d0e',
19099
19119
  'line-opacity': 1,
19100
19120
  'line-width': {
19101
19121
  base: 1.2,
@@ -19122,7 +19142,7 @@ var solarized = {
19122
19142
  ],
19123
19143
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19124
19144
  paint: {
19125
- 'line-color': '#d33682',
19145
+ 'line-color': '#d65d0e',
19126
19146
  'line-opacity': 1,
19127
19147
  'line-width': {
19128
19148
  base: 1.2,
@@ -19148,7 +19168,7 @@ var solarized = {
19148
19168
  ],
19149
19169
  layout: { 'line-cap': 'round', 'line-join': 'round' },
19150
19170
  paint: {
19151
- 'line-color': 'rgba(108,113,196,0.8)',
19171
+ 'line-color': 'rgba(214,93,14,0.8)',
19152
19172
  'line-opacity': {
19153
19173
  stops: [
19154
19174
  [12, 0],
@@ -19179,7 +19199,7 @@ var solarized = {
19179
19199
  ],
19180
19200
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19181
19201
  paint: {
19182
- 'line-color': '#d33682',
19202
+ 'line-color': '#d65d0e',
19183
19203
  'line-opacity': 1,
19184
19204
  'line-width': {
19185
19205
  base: 1.2,
@@ -19200,7 +19220,7 @@ var solarized = {
19200
19220
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'primary']],
19201
19221
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19202
19222
  paint: {
19203
- 'line-color': '#d33682',
19223
+ 'line-color': '#d65d0e',
19204
19224
  'line-opacity': {
19205
19225
  stops: [
19206
19226
  [7, 0],
@@ -19228,7 +19248,7 @@ var solarized = {
19228
19248
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'trunk']],
19229
19249
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19230
19250
  paint: {
19231
- 'line-color': '#d33682',
19251
+ 'line-color': '#d65d0e',
19232
19252
  'line-opacity': {
19233
19253
  stops: [
19234
19254
  [5, 0],
@@ -19256,7 +19276,7 @@ var solarized = {
19256
19276
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway']],
19257
19277
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19258
19278
  paint: {
19259
- 'line-color': '#d33682',
19279
+ 'line-color': '#d65d0e',
19260
19280
  'line-width': {
19261
19281
  base: 1.2,
19262
19282
  stops: [
@@ -19287,7 +19307,7 @@ var solarized = {
19287
19307
  ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'path']],
19288
19308
  ],
19289
19309
  paint: {
19290
- 'line-color': '#cb4b16',
19310
+ 'line-color': '#fe8019',
19291
19311
  'line-dasharray': [1.5, 0.75],
19292
19312
  'line-width': {
19293
19313
  base: 1.2,
@@ -19308,7 +19328,7 @@ var solarized = {
19308
19328
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
19309
19329
  layout: { 'line-cap': 'round', 'line-join': 'round' },
19310
19330
  paint: {
19311
- 'line-color': '#6c71c4',
19331
+ 'line-color': '#ebdbb2',
19312
19332
  'line-width': {
19313
19333
  base: 1.2,
19314
19334
  stops: [
@@ -19334,7 +19354,7 @@ var solarized = {
19334
19354
  ],
19335
19355
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19336
19356
  paint: {
19337
- 'line-color': '#6c71c4',
19357
+ 'line-color': '#ebdbb2',
19338
19358
  'line-width': {
19339
19359
  base: 1.2,
19340
19360
  stops: [
@@ -19359,7 +19379,7 @@ var solarized = {
19359
19379
  ],
19360
19380
  layout: { 'line-cap': 'round', 'line-join': 'round' },
19361
19381
  paint: {
19362
- 'line-color': '#e58ab6',
19382
+ 'line-color': '#f49456',
19363
19383
  'line-opacity': 1,
19364
19384
  'line-width': {
19365
19385
  base: 1.2,
@@ -19384,7 +19404,7 @@ var solarized = {
19384
19404
  ],
19385
19405
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19386
19406
  paint: {
19387
- 'line-color': '#6c71c4',
19407
+ 'line-color': '#ebdbb2',
19388
19408
  'line-width': {
19389
19409
  base: 1.2,
19390
19410
  stops: [
@@ -19408,7 +19428,7 @@ var solarized = {
19408
19428
  ],
19409
19429
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19410
19430
  paint: {
19411
- 'line-color': '#6c71c4',
19431
+ 'line-color': '#ebdbb2',
19412
19432
  'line-width': {
19413
19433
  base: 1.2,
19414
19434
  stops: [
@@ -19432,7 +19452,7 @@ var solarized = {
19432
19452
  ],
19433
19453
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19434
19454
  paint: {
19435
- 'line-color': '#6c71c4',
19455
+ 'line-color': '#ebdbb2',
19436
19456
  'line-width': {
19437
19457
  base: 1.2,
19438
19458
  stops: [
@@ -19457,7 +19477,7 @@ var solarized = {
19457
19477
  ],
19458
19478
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19459
19479
  paint: {
19460
- 'line-color': '#6c71c4',
19480
+ 'line-color': '#ebdbb2',
19461
19481
  'line-width': {
19462
19482
  base: 1.2,
19463
19483
  stops: [
@@ -19480,7 +19500,7 @@ var solarized = {
19480
19500
  ['all', ['==', 'class', 'rail'], ['has', 'service']],
19481
19501
  ],
19482
19502
  paint: {
19483
- 'line-color': 'rgba(58,63,144,0.7)',
19503
+ 'line-color': 'rgba(118,51,8,0.7)',
19484
19504
  'line-width': {
19485
19505
  base: 1.4,
19486
19506
  stops: [
@@ -19503,7 +19523,7 @@ var solarized = {
19503
19523
  ],
19504
19524
  layout: { visibility: 'visible' },
19505
19525
  paint: {
19506
- 'line-color': 'rgba(58,63,144,0.7)',
19526
+ 'line-color': 'rgba(118,51,8,0.7)',
19507
19527
  'line-dasharray': [0.2, 8],
19508
19528
  'line-width': {
19509
19529
  base: 1.4,
@@ -19532,7 +19552,7 @@ var solarized = {
19532
19552
  ],
19533
19553
  ],
19534
19554
  paint: {
19535
- 'line-color': '#3a3f90',
19555
+ 'line-color': '#763308',
19536
19556
  'line-width': {
19537
19557
  base: 1.4,
19538
19558
  stops: [
@@ -19560,7 +19580,7 @@ var solarized = {
19560
19580
  ],
19561
19581
  ],
19562
19582
  paint: {
19563
- 'line-color': '#3a3f90',
19583
+ 'line-color': '#763308',
19564
19584
  'line-dasharray': [0.2, 8],
19565
19585
  'line-width': {
19566
19586
  base: 1.4,
@@ -19581,7 +19601,7 @@ var solarized = {
19581
19601
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
19582
19602
  layout: { 'line-join': 'round' },
19583
19603
  paint: {
19584
- 'line-color': '#d33682',
19604
+ 'line-color': '#d65d0e',
19585
19605
  'line-opacity': 1,
19586
19606
  'line-width': {
19587
19607
  base: 1.2,
@@ -19607,7 +19627,7 @@ var solarized = {
19607
19627
  ],
19608
19628
  layout: { 'line-join': 'round' },
19609
19629
  paint: {
19610
- 'line-color': '#d33682',
19630
+ 'line-color': '#d65d0e',
19611
19631
  'line-opacity': 1,
19612
19632
  'line-width': {
19613
19633
  base: 1.2,
@@ -19629,7 +19649,7 @@ var solarized = {
19629
19649
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
19630
19650
  layout: { 'line-join': 'round' },
19631
19651
  paint: {
19632
- 'line-color': '#d33682',
19652
+ 'line-color': '#d65d0e',
19633
19653
  'line-opacity': 1,
19634
19654
  'line-width': {
19635
19655
  base: 1.2,
@@ -19649,7 +19669,7 @@ var solarized = {
19649
19669
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
19650
19670
  layout: { 'line-join': 'round' },
19651
19671
  paint: {
19652
- 'line-color': '#d33682',
19672
+ 'line-color': '#d65d0e',
19653
19673
  'line-width': {
19654
19674
  base: 1.2,
19655
19675
  stops: [
@@ -19670,7 +19690,7 @@ var solarized = {
19670
19690
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
19671
19691
  layout: { 'line-join': 'round' },
19672
19692
  paint: {
19673
- 'line-color': '#d33682',
19693
+ 'line-color': '#d65d0e',
19674
19694
  'line-width': {
19675
19695
  base: 1.2,
19676
19696
  stops: [
@@ -19694,7 +19714,7 @@ var solarized = {
19694
19714
  ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
19695
19715
  ],
19696
19716
  paint: {
19697
- 'line-color': '#9094d3',
19717
+ 'line-color': '#f17626',
19698
19718
  'line-width': {
19699
19719
  base: 1.2,
19700
19720
  stops: [
@@ -19716,7 +19736,7 @@ var solarized = {
19716
19736
  ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
19717
19737
  ],
19718
19738
  paint: {
19719
- 'line-color': '#cb4b16',
19739
+ 'line-color': '#fe8019',
19720
19740
  'line-width': {
19721
19741
  base: 1.2,
19722
19742
  stops: [
@@ -19736,7 +19756,7 @@ var solarized = {
19736
19756
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
19737
19757
  layout: { 'line-join': 'round' },
19738
19758
  paint: {
19739
- 'line-color': '#6c71c4',
19759
+ 'line-color': '#ebdbb2',
19740
19760
  'line-width': {
19741
19761
  base: 1.2,
19742
19762
  stops: [
@@ -19761,7 +19781,7 @@ var solarized = {
19761
19781
  ],
19762
19782
  layout: { 'line-join': 'round' },
19763
19783
  paint: {
19764
- 'line-color': '#6c71c4',
19784
+ 'line-color': '#ebdbb2',
19765
19785
  'line-width': {
19766
19786
  base: 1.2,
19767
19787
  stops: [
@@ -19782,7 +19802,7 @@ var solarized = {
19782
19802
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
19783
19803
  layout: { 'line-join': 'round' },
19784
19804
  paint: {
19785
- 'line-color': '#6c71c4',
19805
+ 'line-color': '#ebdbb2',
19786
19806
  'line-width': {
19787
19807
  base: 1.2,
19788
19808
  stops: [
@@ -19802,7 +19822,7 @@ var solarized = {
19802
19822
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
19803
19823
  layout: { 'line-join': 'round' },
19804
19824
  paint: {
19805
- 'line-color': '#6c71c4',
19825
+ 'line-color': '#ebdbb2',
19806
19826
  'line-width': {
19807
19827
  base: 1.2,
19808
19828
  stops: [
@@ -19822,7 +19842,7 @@ var solarized = {
19822
19842
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
19823
19843
  layout: { 'line-join': 'round' },
19824
19844
  paint: {
19825
- 'line-color': '#6c71c4',
19845
+ 'line-color': '#ebdbb2',
19826
19846
  'line-width': {
19827
19847
  base: 1.2,
19828
19848
  stops: [
@@ -19841,7 +19861,7 @@ var solarized = {
19841
19861
  'source-layer': 'transportation',
19842
19862
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
19843
19863
  paint: {
19844
- 'line-color': '#3a3f90',
19864
+ 'line-color': '#763308',
19845
19865
  'line-width': {
19846
19866
  base: 1.4,
19847
19867
  stops: [
@@ -19860,7 +19880,7 @@ var solarized = {
19860
19880
  'source-layer': 'transportation',
19861
19881
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
19862
19882
  paint: {
19863
- 'line-color': '#3a3f90',
19883
+ 'line-color': '#763308',
19864
19884
  'line-dasharray': [0.2, 8],
19865
19885
  'line-width': {
19866
19886
  base: 1.4,
@@ -19880,7 +19900,7 @@ var solarized = {
19880
19900
  filter: ['all', ['in', 'admin_level', 4, 6, 8], ['!=', 'maritime', 1]],
19881
19901
  layout: { 'line-join': 'round' },
19882
19902
  paint: {
19883
- 'line-color': '#268bd2',
19903
+ 'line-color': '#fb4934',
19884
19904
  'line-dasharray': [3, 1, 1, 1],
19885
19905
  'line-width': {
19886
19906
  base: 1.4,
@@ -19900,7 +19920,7 @@ var solarized = {
19900
19920
  filter: ['all', ['==', 'admin_level', 2], ['!=', 'maritime', 1]],
19901
19921
  layout: { 'line-cap': 'round', 'line-join': 'round' },
19902
19922
  paint: {
19903
- 'line-color': '#268bd2',
19923
+ 'line-color': '#fb4934',
19904
19924
  'line-width': {
19905
19925
  base: 1,
19906
19926
  stops: [
@@ -19920,7 +19940,7 @@ var solarized = {
19920
19940
  filter: ['all', ['in', 'admin_level', 2, 4], ['==', 'maritime', 1]],
19921
19941
  layout: { 'line-cap': 'round', 'line-join': 'round' },
19922
19942
  paint: {
19923
- 'line-color': '#268bd2',
19943
+ 'line-color': '#83a598',
19924
19944
  'line-width': {
19925
19945
  base: 1,
19926
19946
  stops: [
@@ -20937,6 +20957,37 @@ var solarized = {
20937
20957
  ],
20938
20958
  };
20939
20959
 
20960
+ var defaultStyleThumbnailPath = 'https://mapcomponents.github.io/react-map-components-maplibre/assets/style_thumbnails/';
20961
+ var SelectStyleButton = function (props) {
20962
+ var layerContext = React__default["default"].useContext(LayerContext);
20963
+ var _a = React__default["default"].useState(false), popupOpen = _a[0], setPopupOpen = _a[1];
20964
+ return (React__default["default"].createElement(React__default["default"].Fragment, null,
20965
+ React__default["default"].createElement(material.Button, { variant: "contained", sx: __assign({ marginTop: '10px' }, props.sx), onClick: function () { return setPopupOpen(true); } },
20966
+ React__default["default"].createElement(WallpaperIcon__default["default"], null)),
20967
+ React__default["default"].createElement(SelectStylePopup, { styles: __spreadArray(__spreadArray([], (props.defaultStyles
20968
+ ? [MonokaiStyle, SolarizedStyle, OceanicNextStyle, MedievalKingdomStyle, GruvboxStyle]
20969
+ : []), true), (props.styles || []), true), styleThumbnailPaths: __assign(__assign({}, props === null || props === void 0 ? void 0 : props.styleThumbnailPaths), (props.defaultStyles
20970
+ ? {
20971
+ Monokai: defaultStyleThumbnailPath + 'monokai.png',
20972
+ Gruvbox: defaultStyleThumbnailPath + 'gruvbox.png',
20973
+ 'Oceanic Next': defaultStyleThumbnailPath + 'oceanic_next.png',
20974
+ Solarized: defaultStyleThumbnailPath + 'solarized.png',
20975
+ 'Medieval Kingdom': defaultStyleThumbnailPath + 'medieval_kingdom.png',
20976
+ }
20977
+ : {})), open: popupOpen, setOpen: setPopupOpen, onSelect: function (style) {
20978
+ // Todo: should be possible without clearing bg layers first & setTimeout
20979
+ layerContext.setBackgroundLayers([]);
20980
+ setTimeout(function () {
20981
+ layerContext.updateStyle(style);
20982
+ }, 100);
20983
+ setPopupOpen(false);
20984
+ } })));
20985
+ };
20986
+ SelectStyleButton.defaultProps = {
20987
+ style: [],
20988
+ defaultStyles: true,
20989
+ };
20990
+
20940
20991
  exports.AddLayerButton = AddLayerButton;
20941
20992
  exports.AddLayerPopup = AddLayerPopup;
20942
20993
  exports.ColorPicker = PaintPropsColorPicker;
@@ -20944,7 +20995,7 @@ exports.ConfirmDialog = ConfirmDialog;
20944
20995
  exports.GeoJsonContext = GeoJsonContext;
20945
20996
  exports.GeoJsonLayerForm = GeoJsonLayerForm;
20946
20997
  exports.GeoJsonProvider = GeoJsonProvider;
20947
- exports.GruvboxStyle = gruvbox;
20998
+ exports.GruvboxStyle = GruvboxStyle;
20948
20999
  exports.LayerContext = LayerContext;
20949
21000
  exports.LayerContextProvider = LayerContextProvider;
20950
21001
  exports.LayerList = LayerList;
@@ -20958,7 +21009,7 @@ exports.MapComponentsProvider = MapComponentsProvider;
20958
21009
  exports.MapContext = MapContext;
20959
21010
  exports.MapLibreGlWrapper = MapLibreGlWrapper;
20960
21011
  exports.MapLibreMap = MapLibreMap;
20961
- exports.MedievalKingdomStyle = medieval_kingdom;
21012
+ exports.MedievalKingdomStyle = MedievalKingdomStyle;
20962
21013
  exports.MlBasicComponent = MlBasicComponent;
20963
21014
  exports.MlCenterPosition = MlCenterPosition;
20964
21015
  exports.MlComponentTemplate = MlComponentTemplate;
@@ -20989,8 +21040,8 @@ exports.MlVectorTileLayer = MlVectorTileLayer;
20989
21040
  exports.MlWmsFeatureInfoPopup = MlWmsFeatureInfoPopup;
20990
21041
  exports.MlWmsLayer = MlWmsLayer;
20991
21042
  exports.MlWmsLoader = MlWmsLoader;
20992
- exports.MonokaiStyle = GruvboxStyle;
20993
- exports.OceanicNextStyle = oceanic_next;
21043
+ exports.MonokaiStyle = MonokaiStyle;
21044
+ exports.OceanicNextStyle = OceanicNextStyle;
20994
21045
  exports.PdfContext = PdfContext;
20995
21046
  exports.PdfForm = PdfForm;
20996
21047
  exports.SelectStyleButton = SelectStyleButton;
@@ -20998,7 +21049,7 @@ exports.SelectStylePopup = SelectStylePopup;
20998
21049
  exports.Sidebar = Sidebar;
20999
21050
  exports.SimpleDataContext = SimpleDataContext;
21000
21051
  exports.SimpleDataProvider = SimpleDataProvider;
21001
- exports.SolarizedStyle = solarized;
21052
+ exports.SolarizedStyle = SolarizedStyle;
21002
21053
  exports.TopToolbar = TopToolbar;
21003
21054
  exports.UploadButton = UploadButton;
21004
21055
  exports.WmsLayerForm = WmsLayerForm;