@mapcomponents/react-maplibre 0.1.75 → 0.1.76

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,
@@ -7540,7 +7547,8 @@ function LayerPropertyForm(_a) {
7540
7547
  var key = React.useRef(Math.round(Math.random() * 10000000000));
7541
7548
  //const onChange = (event) => {};
7542
7549
  var getFormInputByType = React.useCallback(function (key) {
7543
- if (mapPropKeyToFormInputTypeKeys.indexOf(key) !== -1) {
7550
+ if (mapPropKeyToFormInputTypeKeys.indexOf(key) !== -1 &&
7551
+ (typeof paintProps[key] === 'number' || typeof paintProps[key] === 'string')) {
7544
7552
  var label = (React__default["default"].createElement(material.Typography, { id: key + '_label', gutterBottom: true }, key));
7545
7553
  switch (mapPropKeyToFormInputType[key]) {
7546
7554
  case 'slider':
@@ -7689,16 +7697,16 @@ LayerListItemVectorLayer.defaultProps = {
7689
7697
  };
7690
7698
 
7691
7699
  function LayerListItem(_a) {
7692
- var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
7700
+ var _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
7693
7701
  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];
7702
+ var _o = React.useState(true), localVisible = _o[0], setLocalVisible = _o[1];
7703
+ var _p = React.useState(false), paintPropsFormVisible = _p[0], setPaintPropsFormVisible = _p[1];
7704
+ var _q = React.useState(false), showDeletionConfirmationDialog = _q[0], setShowDeletionConfirmationDialog = _q[1];
7697
7705
  var deletedRef = React.useRef(false);
7698
7706
  var visibleRef = React.useRef(visible);
7699
7707
  // 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];
7708
+ var _r = React.useState(((_b = layerComponent === null || layerComponent === void 0 ? void 0 : layerComponent.props) === null || _b === void 0 ? void 0 : _b.paint) ||
7709
+ 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
7710
  var _visible = React.useMemo(function () {
7703
7711
  if (!visible) {
7704
7712
  return false;
@@ -7772,7 +7780,7 @@ function LayerListItem(_a) {
7772
7780
  paddingLeft: 0,
7773
7781
  paddingTop: 0,
7774
7782
  paddingBottom: '4px',
7775
- }, secondaryAction: configurable ? (React__default["default"].createElement(React__default["default"].Fragment, null,
7783
+ }, 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
7784
  React__default["default"].createElement(material.IconButton, { edge: props.showDeleteButton ? false : 'end', "aria-label": "visibility", onClick: function () {
7777
7785
  setPaintPropsFormVisible(function (current) {
7778
7786
  return !current;
@@ -7804,8 +7812,11 @@ function LayerListItem(_a) {
7804
7812
  } })),
7805
7813
  React__default["default"].createElement(material.ListItemText, { variant: "layerlist", primary: name, secondary: description }))),
7806
7814
  _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 })); })))));
7815
+ !((_h = layerComponent === null || layerComponent === void 0 ? void 0 : layerComponent.props) === null || _h === void 0 ? void 0 : _h.layers) &&
7816
+ Object.keys(paintProps).length > 0 &&
7817
+ configurable &&
7818
+ paintPropsFormVisible && (React__default["default"].createElement(LayerPropertyForm, { paintProps: paintProps, setPaintProps: setPaintProps, layerType: layerType })),
7819
+ ((_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
7820
  }
7810
7821
  LayerListItem.defaultProps = {
7811
7822
  type: 'layer',
@@ -7866,6 +7877,7 @@ function LayerListItemFactory(props) {
7866
7877
  }
7867
7878
  LayerListItemFactory.defaultProps = {
7868
7879
  mapId: undefined,
7880
+ layers: []
7869
7881
  };
7870
7882
 
7871
7883
  var types = [
@@ -8149,13 +8161,25 @@ var SelectStylePopup = function (props) {
8149
8161
  var handleCancel = function () {
8150
8162
  props.setOpen(false);
8151
8163
  };
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
- })));
8164
+ return (React__default["default"].createElement(material.Dialog, { open: props.open, onClose: handleCancel, PaperProps: { sx: { padding: '20px' } } },
8165
+ React__default["default"].createElement(material.DialogTitle, null, "Select a style"),
8166
+ 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) {
8167
+ var _a;
8168
+ return (React__default["default"].createElement(material.ListItem, { disableGutters: true, key: style.name },
8169
+ React__default["default"].createElement(material.ListItemButton, { autoFocus: true, onClick: function () {
8170
+ var _a;
8171
+ (_a = props === null || props === void 0 ? void 0 : props.onSelect) === null || _a === void 0 ? void 0 : _a.call(props, style);
8172
+ } },
8173
+ React__default["default"].createElement(material.ListItemAvatar, null,
8174
+ 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]) })),
8175
+ React__default["default"].createElement(material.ListItemText, { primary: style.name }))));
8176
+ }))));
8155
8177
  };
8156
- SelectStylePopup.defaultProps = {};
8178
+ SelectStylePopup.defaultProps = {
8179
+ styleThumbnailPaths: {},
8180
+ };
8157
8181
 
8158
- var GruvboxStyle = {
8182
+ var MonokaiStyle = {
8159
8183
  version: 8,
8160
8184
  name: 'Monokai',
8161
8185
  center: [8.542, 47.372],
@@ -10707,31 +10731,9 @@ var GruvboxStyle = {
10707
10731
  ],
10708
10732
  };
10709
10733
 
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 = {
10734
+ var SolarizedStyle = {
10733
10735
  version: 8,
10734
- name: 'Gruvbox',
10736
+ name: 'Solarized',
10735
10737
  center: [8.542, 47.372],
10736
10738
  zoom: 11.6,
10737
10739
  bearing: 0,
@@ -10745,7 +10747,7 @@ var gruvbox = {
10745
10747
  sprite: config.sprite,
10746
10748
  glyphs: config.glyphs,
10747
10749
  layers: [
10748
- { id: 'background', type: 'background', paint: { 'background-color': '#282822' } },
10750
+ { id: 'background', type: 'background', paint: { 'background-color': '#073642' } },
10749
10751
  {
10750
10752
  id: 'landcover-glacier',
10751
10753
  type: 'fill',
@@ -10755,7 +10757,7 @@ var gruvbox = {
10755
10757
  filter: ['==', 'subclass', 'glacier'],
10756
10758
  layout: { visibility: 'visible' },
10757
10759
  paint: {
10758
- 'fill-color': '#83a598',
10760
+ 'fill-color': '#2aa198',
10759
10761
  'fill-opacity': {
10760
10762
  base: 1,
10761
10763
  stops: [
@@ -10772,7 +10774,7 @@ var gruvbox = {
10772
10774
  source: 'openmaptiles',
10773
10775
  'source-layer': 'landuse',
10774
10776
  filter: ['==', 'class', 'residential'],
10775
- paint: { 'fill-color': '#b8bb26' },
10777
+ paint: { 'fill-color': '#657b83' },
10776
10778
  },
10777
10779
  {
10778
10780
  id: 'landuse-commercial',
@@ -10781,7 +10783,7 @@ var gruvbox = {
10781
10783
  source: 'openmaptiles',
10782
10784
  'source-layer': 'landuse',
10783
10785
  filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'commercial']],
10784
- paint: { 'fill-color': '#bfc23c' },
10786
+ paint: { 'fill-color': '#74888f' },
10785
10787
  },
10786
10788
  {
10787
10789
  id: 'landuse-industrial',
@@ -10790,7 +10792,7 @@ var gruvbox = {
10790
10792
  source: 'openmaptiles',
10791
10793
  'source-layer': 'landuse',
10792
10794
  filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'industrial']],
10793
- paint: { 'fill-color': '#c6c951' },
10795
+ paint: { 'fill-color': '#84959c' },
10794
10796
  },
10795
10797
  {
10796
10798
  id: 'park',
@@ -10800,7 +10802,7 @@ var gruvbox = {
10800
10802
  'source-layer': 'park',
10801
10803
  filter: ['==', '$type', 'Polygon'],
10802
10804
  paint: {
10803
- 'fill-color': '#b8bb26',
10805
+ 'fill-color': '#859900',
10804
10806
  'fill-opacity': {
10805
10807
  base: 1.8,
10806
10808
  stops: [
@@ -10818,7 +10820,7 @@ var gruvbox = {
10818
10820
  'source-layer': 'park',
10819
10821
  filter: ['==', '$type', 'Polygon'],
10820
10822
  layout: {},
10821
- paint: { 'line-color': 'rgba(184,187,38,0.6)', 'line-dasharray': [3, 3] },
10823
+ paint: { 'line-color': 'rgba(133,153,0,0.6)', 'line-dasharray': [3, 3] },
10822
10824
  },
10823
10825
  {
10824
10826
  id: 'landuse-cemetery',
@@ -10827,7 +10829,7 @@ var gruvbox = {
10827
10829
  source: 'openmaptiles',
10828
10830
  'source-layer': 'landuse',
10829
10831
  filter: ['==', 'class', 'cemetery'],
10830
- paint: { 'fill-color': '#eceeaa' },
10832
+ paint: { 'fill-color': '#f2ff99' },
10831
10833
  },
10832
10834
  {
10833
10835
  id: 'landuse-hospital',
@@ -10836,7 +10838,7 @@ var gruvbox = {
10836
10838
  source: 'openmaptiles',
10837
10839
  'source-layer': 'landuse',
10838
10840
  filter: ['==', 'class', 'hospital'],
10839
- paint: { 'fill-color': '#fe8019' },
10841
+ paint: { 'fill-color': '#d30102' },
10840
10842
  },
10841
10843
  {
10842
10844
  id: 'landuse-school',
@@ -10845,7 +10847,7 @@ var gruvbox = {
10845
10847
  source: 'openmaptiles',
10846
10848
  'source-layer': 'landuse',
10847
10849
  filter: ['==', 'class', 'school'],
10848
- paint: { 'fill-color': 'rgba(254,128,25,0.8)' },
10850
+ paint: { 'fill-color': 'rgba(211,1,2,0.8)' },
10849
10851
  },
10850
10852
  {
10851
10853
  id: 'landuse-railway',
@@ -10854,7 +10856,7 @@ var gruvbox = {
10854
10856
  source: 'openmaptiles',
10855
10857
  'source-layer': 'landuse',
10856
10858
  filter: ['==', 'class', 'railway'],
10857
- paint: { 'fill-color': 'rgba(118,51,8,0.4)' },
10859
+ paint: { 'fill-color': 'rgba(58,63,144,0.4)' },
10858
10860
  },
10859
10861
  {
10860
10862
  id: 'landcover-wood',
@@ -10864,7 +10866,7 @@ var gruvbox = {
10864
10866
  'source-layer': 'landcover',
10865
10867
  filter: ['==', 'class', 'wood'],
10866
10868
  paint: {
10867
- 'fill-color': '#83a598',
10869
+ 'fill-color': '#2aa198',
10868
10870
  'fill-opacity': 0.1,
10869
10871
  'fill-outline-color': 'hsla(0, 0%, 0%, 0.03)',
10870
10872
  'fill-antialias': {
@@ -10883,7 +10885,7 @@ var gruvbox = {
10883
10885
  source: 'openmaptiles',
10884
10886
  'source-layer': 'landcover',
10885
10887
  filter: ['==', 'class', 'grass'],
10886
- paint: { 'fill-color': '#b8bb26', 'fill-opacity': 1 },
10888
+ paint: { 'fill-color': '#859900', 'fill-opacity': 1 },
10887
10889
  },
10888
10890
  {
10889
10891
  id: 'landcover-grass-park',
@@ -10892,7 +10894,7 @@ var gruvbox = {
10892
10894
  source: 'openmaptiles',
10893
10895
  'source-layer': 'park',
10894
10896
  filter: ['==', 'class', 'public_park'],
10895
- paint: { 'fill-color': '#b8bb26', 'fill-opacity': 0.8 },
10897
+ paint: { 'fill-color': '#859900', 'fill-opacity': 0.8 },
10896
10898
  },
10897
10899
  {
10898
10900
  id: 'waterway-other',
@@ -10903,7 +10905,7 @@ var gruvbox = {
10903
10905
  filter: ['!in', 'class', 'canal', 'river', 'stream'],
10904
10906
  layout: { 'line-cap': 'round' },
10905
10907
  paint: {
10906
- 'line-color': '#83a598',
10908
+ 'line-color': '#268bd2',
10907
10909
  'line-width': {
10908
10910
  base: 1.3,
10909
10911
  stops: [
@@ -10922,7 +10924,7 @@ var gruvbox = {
10922
10924
  filter: ['in', 'class', 'canal', 'stream'],
10923
10925
  layout: { 'line-cap': 'round' },
10924
10926
  paint: {
10925
- 'line-color': '#83a598',
10927
+ 'line-color': '#268bd2',
10926
10928
  'line-width': {
10927
10929
  base: 1.3,
10928
10930
  stops: [
@@ -10941,7 +10943,7 @@ var gruvbox = {
10941
10943
  filter: ['==', 'class', 'river'],
10942
10944
  layout: { 'line-cap': 'round' },
10943
10945
  paint: {
10944
- 'line-color': '#83a598',
10946
+ 'line-color': '#268bd2',
10945
10947
  'line-width': {
10946
10948
  base: 1.2,
10947
10949
  stops: [
@@ -10962,7 +10964,7 @@ var gruvbox = {
10962
10964
  layout: { visibility: 'visible' },
10963
10965
  paint: {
10964
10966
  'fill-opacity': 1,
10965
- 'fill-color': '#83a598',
10967
+ 'fill-color': '#268bd2',
10966
10968
  'fill-translate': {
10967
10969
  base: 1,
10968
10970
  stops: [
@@ -10979,7 +10981,7 @@ var gruvbox = {
10979
10981
  source: 'openmaptiles',
10980
10982
  'source-layer': 'water',
10981
10983
  layout: { visibility: 'visible' },
10982
- paint: { 'fill-color': '#5c7f72' },
10984
+ paint: { 'fill-color': '#1a6091' },
10983
10985
  },
10984
10986
  {
10985
10987
  id: 'water-pattern',
@@ -10999,7 +11001,7 @@ var gruvbox = {
10999
11001
  filter: ['==', 'subclass', 'ice_shelf'],
11000
11002
  layout: { visibility: 'visible' },
11001
11003
  paint: {
11002
- 'fill-color': '#83a598',
11004
+ 'fill-color': '#2aa198',
11003
11005
  'fill-opacity': {
11004
11006
  base: 1,
11005
11007
  stops: [
@@ -11015,7 +11017,7 @@ var gruvbox = {
11015
11017
  metadata: { 'mapbox:group': '1444849364238.8171' },
11016
11018
  source: 'openmaptiles',
11017
11019
  'source-layer': 'building',
11018
- paint: { 'fill-color': '#928374', 'fill-antialias': true },
11020
+ paint: { 'fill-color': '#eee8d5', 'fill-antialias': true },
11019
11021
  },
11020
11022
  {
11021
11023
  id: 'building-top',
@@ -11033,7 +11035,7 @@ var gruvbox = {
11033
11035
  ],
11034
11036
  },
11035
11037
  'fill-outline-color': '#dfdbd7',
11036
- 'fill-color': '#a89c91',
11038
+ 'fill-color': '#fdfcf9',
11037
11039
  'fill-opacity': {
11038
11040
  base: 1,
11039
11041
  stops: [
@@ -11052,7 +11054,7 @@ var gruvbox = {
11052
11054
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
11053
11055
  layout: { 'line-join': 'round' },
11054
11056
  paint: {
11055
- 'line-color': '#d65d0e',
11057
+ 'line-color': '#6c71c4',
11056
11058
  'line-dasharray': [0.5, 0.25],
11057
11059
  'line-width': {
11058
11060
  base: 1.2,
@@ -11073,7 +11075,7 @@ var gruvbox = {
11073
11075
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor']],
11074
11076
  layout: { 'line-join': 'round' },
11075
11077
  paint: {
11076
- 'line-color': '#d65d0e',
11078
+ 'line-color': '#6c71c4',
11077
11079
  'line-opacity': {
11078
11080
  stops: [
11079
11081
  [12, 0],
@@ -11100,7 +11102,7 @@ var gruvbox = {
11100
11102
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
11101
11103
  layout: { 'line-join': 'round' },
11102
11104
  paint: {
11103
- 'line-color': '#d65d0e',
11105
+ 'line-color': '#d33682',
11104
11106
  'line-opacity': 1,
11105
11107
  'line-width': {
11106
11108
  base: 1.2,
@@ -11120,7 +11122,7 @@ var gruvbox = {
11120
11122
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
11121
11123
  layout: { 'line-join': 'round' },
11122
11124
  paint: {
11123
- 'line-color': '#d65d0e',
11125
+ 'line-color': '#d33682',
11124
11126
  'line-width': {
11125
11127
  base: 1.2,
11126
11128
  stops: [
@@ -11141,7 +11143,7 @@ var gruvbox = {
11141
11143
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
11142
11144
  layout: { 'line-join': 'round', visibility: 'visible' },
11143
11145
  paint: {
11144
- 'line-color': '#d65d0e',
11146
+ 'line-color': '#d33682',
11145
11147
  'line-dasharray': [0.5, 0.25],
11146
11148
  'line-width': {
11147
11149
  base: 1.2,
@@ -11166,7 +11168,7 @@ var gruvbox = {
11166
11168
  ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'path']],
11167
11169
  ],
11168
11170
  paint: {
11169
- 'line-color': '#f17626',
11171
+ 'line-color': '#9094d3',
11170
11172
  'line-dasharray': [1.5, 0.75],
11171
11173
  'line-width': {
11172
11174
  base: 1.2,
@@ -11186,7 +11188,7 @@ var gruvbox = {
11186
11188
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
11187
11189
  layout: { 'line-join': 'round' },
11188
11190
  paint: {
11189
- 'line-color': '#f17626',
11191
+ 'line-color': '#9094d3',
11190
11192
  'line-width': {
11191
11193
  base: 1.2,
11192
11194
  stops: [
@@ -11206,7 +11208,7 @@ var gruvbox = {
11206
11208
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor_road']],
11207
11209
  layout: { 'line-join': 'round' },
11208
11210
  paint: {
11209
- 'line-color': '#f17626',
11211
+ 'line-color': '#9094d3',
11210
11212
  'line-opacity': 1,
11211
11213
  'line-width': {
11212
11214
  base: 1.2,
@@ -11227,7 +11229,7 @@ var gruvbox = {
11227
11229
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
11228
11230
  layout: { 'line-join': 'round' },
11229
11231
  paint: {
11230
- 'line-color': '#f2853e',
11232
+ 'line-color': '#a3a6da',
11231
11233
  'line-width': {
11232
11234
  base: 1.2,
11233
11235
  stops: [
@@ -11247,7 +11249,7 @@ var gruvbox = {
11247
11249
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
11248
11250
  layout: { 'line-join': 'round' },
11249
11251
  paint: {
11250
- 'line-color': '#d65d0e',
11252
+ 'line-color': '#6c71c4',
11251
11253
  'line-width': {
11252
11254
  base: 1.2,
11253
11255
  stops: [
@@ -11267,7 +11269,7 @@ var gruvbox = {
11267
11269
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
11268
11270
  layout: { 'line-join': 'round', visibility: 'visible' },
11269
11271
  paint: {
11270
- 'line-color': 'rgba(235,219,178,0.8)',
11272
+ 'line-color': 'rgba(108,113,196,0.8)',
11271
11273
  'line-width': {
11272
11274
  base: 1.2,
11273
11275
  stops: [
@@ -11286,7 +11288,7 @@ var gruvbox = {
11286
11288
  'source-layer': 'transportation',
11287
11289
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'rail']],
11288
11290
  paint: {
11289
- 'line-color': '#763308',
11291
+ 'line-color': '#3a3f90',
11290
11292
  'line-width': {
11291
11293
  base: 1.4,
11292
11294
  stops: [
@@ -11308,7 +11310,7 @@ var gruvbox = {
11308
11310
  filter: ['all', ['in', 'class', 'taxiway']],
11309
11311
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11310
11312
  paint: {
11311
- 'line-color': '#763308',
11313
+ 'line-color': '#3a3f90',
11312
11314
  'line-width': {
11313
11315
  base: 1.5,
11314
11316
  stops: [
@@ -11329,7 +11331,7 @@ var gruvbox = {
11329
11331
  filter: ['all', ['in', 'class', 'runway']],
11330
11332
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11331
11333
  paint: {
11332
- 'line-color': '#763308',
11334
+ 'line-color': '#3a3f90',
11333
11335
  'line-width': {
11334
11336
  base: 1.5,
11335
11337
  stops: [
@@ -11357,7 +11359,7 @@ var gruvbox = {
11357
11359
  [14, 1],
11358
11360
  ],
11359
11361
  },
11360
- 'fill-color': 'rgba(214,93,14,0.5)',
11362
+ 'fill-color': 'rgba(108,113,196,0.5)',
11361
11363
  },
11362
11364
  },
11363
11365
  {
@@ -11370,7 +11372,7 @@ var gruvbox = {
11370
11372
  filter: ['all', ['in', 'class', 'taxiway'], ['==', '$type', 'LineString']],
11371
11373
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11372
11374
  paint: {
11373
- 'line-color': '#f2853e',
11375
+ 'line-color': '#a3a6da',
11374
11376
  'line-width': {
11375
11377
  base: 1.5,
11376
11378
  stops: [
@@ -11397,7 +11399,7 @@ var gruvbox = {
11397
11399
  filter: ['all', ['in', 'class', 'runway'], ['==', '$type', 'LineString']],
11398
11400
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11399
11401
  paint: {
11400
- 'line-color': '#f2853e',
11402
+ 'line-color': '#a3a6da',
11401
11403
  'line-width': {
11402
11404
  base: 1.5,
11403
11405
  stops: [
@@ -11423,7 +11425,7 @@ var gruvbox = {
11423
11425
  filter: ['==', '$type', 'Polygon'],
11424
11426
  layout: { visibility: 'visible' },
11425
11427
  paint: {
11426
- 'fill-color': '#a6480b',
11428
+ 'fill-color': '#484fb5',
11427
11429
  'fill-outline-color': '#cfcdca',
11428
11430
  'fill-opacity': 0.9,
11429
11431
  'fill-antialias': false,
@@ -11439,7 +11441,7 @@ var gruvbox = {
11439
11441
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
11440
11442
  layout: { 'line-cap': 'round', 'line-join': 'round' },
11441
11443
  paint: {
11442
- 'line-color': '#d65d0e',
11444
+ 'line-color': '#d33682',
11443
11445
  'line-opacity': 1,
11444
11446
  'line-width': {
11445
11447
  base: 1.2,
@@ -11466,7 +11468,7 @@ var gruvbox = {
11466
11468
  ],
11467
11469
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11468
11470
  paint: {
11469
- 'line-color': '#d65d0e',
11471
+ 'line-color': '#d33682',
11470
11472
  'line-opacity': 1,
11471
11473
  'line-width': {
11472
11474
  base: 1.2,
@@ -11492,7 +11494,7 @@ var gruvbox = {
11492
11494
  ],
11493
11495
  layout: { 'line-cap': 'round', 'line-join': 'round' },
11494
11496
  paint: {
11495
- 'line-color': 'rgba(214,93,14,0.8)',
11497
+ 'line-color': 'rgba(108,113,196,0.8)',
11496
11498
  'line-opacity': {
11497
11499
  stops: [
11498
11500
  [12, 0],
@@ -11523,7 +11525,7 @@ var gruvbox = {
11523
11525
  ],
11524
11526
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11525
11527
  paint: {
11526
- 'line-color': '#d65d0e',
11528
+ 'line-color': '#d33682',
11527
11529
  'line-opacity': 1,
11528
11530
  'line-width': {
11529
11531
  base: 1.2,
@@ -11544,7 +11546,7 @@ var gruvbox = {
11544
11546
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'primary']],
11545
11547
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11546
11548
  paint: {
11547
- 'line-color': '#d65d0e',
11549
+ 'line-color': '#d33682',
11548
11550
  'line-opacity': {
11549
11551
  stops: [
11550
11552
  [7, 0],
@@ -11572,7 +11574,7 @@ var gruvbox = {
11572
11574
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'trunk']],
11573
11575
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11574
11576
  paint: {
11575
- 'line-color': '#d65d0e',
11577
+ 'line-color': '#d33682',
11576
11578
  'line-opacity': {
11577
11579
  stops: [
11578
11580
  [5, 0],
@@ -11600,7 +11602,7 @@ var gruvbox = {
11600
11602
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway']],
11601
11603
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11602
11604
  paint: {
11603
- 'line-color': '#d65d0e',
11605
+ 'line-color': '#d33682',
11604
11606
  'line-width': {
11605
11607
  base: 1.2,
11606
11608
  stops: [
@@ -11631,7 +11633,7 @@ var gruvbox = {
11631
11633
  ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'path']],
11632
11634
  ],
11633
11635
  paint: {
11634
- 'line-color': '#fe8019',
11636
+ 'line-color': '#cb4b16',
11635
11637
  'line-dasharray': [1.5, 0.75],
11636
11638
  'line-width': {
11637
11639
  base: 1.2,
@@ -11652,7 +11654,7 @@ var gruvbox = {
11652
11654
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
11653
11655
  layout: { 'line-cap': 'round', 'line-join': 'round' },
11654
11656
  paint: {
11655
- 'line-color': '#ebdbb2',
11657
+ 'line-color': '#6c71c4',
11656
11658
  'line-width': {
11657
11659
  base: 1.2,
11658
11660
  stops: [
@@ -11678,7 +11680,7 @@ var gruvbox = {
11678
11680
  ],
11679
11681
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11680
11682
  paint: {
11681
- 'line-color': '#ebdbb2',
11683
+ 'line-color': '#6c71c4',
11682
11684
  'line-width': {
11683
11685
  base: 1.2,
11684
11686
  stops: [
@@ -11703,7 +11705,7 @@ var gruvbox = {
11703
11705
  ],
11704
11706
  layout: { 'line-cap': 'round', 'line-join': 'round' },
11705
11707
  paint: {
11706
- 'line-color': '#f49456',
11708
+ 'line-color': '#e58ab6',
11707
11709
  'line-opacity': 1,
11708
11710
  'line-width': {
11709
11711
  base: 1.2,
@@ -11728,7 +11730,7 @@ var gruvbox = {
11728
11730
  ],
11729
11731
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11730
11732
  paint: {
11731
- 'line-color': '#ebdbb2',
11733
+ 'line-color': '#6c71c4',
11732
11734
  'line-width': {
11733
11735
  base: 1.2,
11734
11736
  stops: [
@@ -11752,7 +11754,7 @@ var gruvbox = {
11752
11754
  ],
11753
11755
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11754
11756
  paint: {
11755
- 'line-color': '#ebdbb2',
11757
+ 'line-color': '#6c71c4',
11756
11758
  'line-width': {
11757
11759
  base: 1.2,
11758
11760
  stops: [
@@ -11776,7 +11778,7 @@ var gruvbox = {
11776
11778
  ],
11777
11779
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11778
11780
  paint: {
11779
- 'line-color': '#ebdbb2',
11781
+ 'line-color': '#6c71c4',
11780
11782
  'line-width': {
11781
11783
  base: 1.2,
11782
11784
  stops: [
@@ -11801,7 +11803,7 @@ var gruvbox = {
11801
11803
  ],
11802
11804
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
11803
11805
  paint: {
11804
- 'line-color': '#ebdbb2',
11806
+ 'line-color': '#6c71c4',
11805
11807
  'line-width': {
11806
11808
  base: 1.2,
11807
11809
  stops: [
@@ -11824,7 +11826,7 @@ var gruvbox = {
11824
11826
  ['all', ['==', 'class', 'rail'], ['has', 'service']],
11825
11827
  ],
11826
11828
  paint: {
11827
- 'line-color': 'rgba(118,51,8,0.7)',
11829
+ 'line-color': 'rgba(58,63,144,0.7)',
11828
11830
  'line-width': {
11829
11831
  base: 1.4,
11830
11832
  stops: [
@@ -11847,7 +11849,7 @@ var gruvbox = {
11847
11849
  ],
11848
11850
  layout: { visibility: 'visible' },
11849
11851
  paint: {
11850
- 'line-color': 'rgba(118,51,8,0.7)',
11852
+ 'line-color': 'rgba(58,63,144,0.7)',
11851
11853
  'line-dasharray': [0.2, 8],
11852
11854
  'line-width': {
11853
11855
  base: 1.4,
@@ -11876,7 +11878,7 @@ var gruvbox = {
11876
11878
  ],
11877
11879
  ],
11878
11880
  paint: {
11879
- 'line-color': '#763308',
11881
+ 'line-color': '#3a3f90',
11880
11882
  'line-width': {
11881
11883
  base: 1.4,
11882
11884
  stops: [
@@ -11904,7 +11906,7 @@ var gruvbox = {
11904
11906
  ],
11905
11907
  ],
11906
11908
  paint: {
11907
- 'line-color': '#763308',
11909
+ 'line-color': '#3a3f90',
11908
11910
  'line-dasharray': [0.2, 8],
11909
11911
  'line-width': {
11910
11912
  base: 1.4,
@@ -11925,7 +11927,7 @@ var gruvbox = {
11925
11927
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
11926
11928
  layout: { 'line-join': 'round' },
11927
11929
  paint: {
11928
- 'line-color': '#d65d0e',
11930
+ 'line-color': '#d33682',
11929
11931
  'line-opacity': 1,
11930
11932
  'line-width': {
11931
11933
  base: 1.2,
@@ -11951,7 +11953,7 @@ var gruvbox = {
11951
11953
  ],
11952
11954
  layout: { 'line-join': 'round' },
11953
11955
  paint: {
11954
- 'line-color': '#d65d0e',
11956
+ 'line-color': '#d33682',
11955
11957
  'line-opacity': 1,
11956
11958
  'line-width': {
11957
11959
  base: 1.2,
@@ -11973,7 +11975,7 @@ var gruvbox = {
11973
11975
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
11974
11976
  layout: { 'line-join': 'round' },
11975
11977
  paint: {
11976
- 'line-color': '#d65d0e',
11978
+ 'line-color': '#d33682',
11977
11979
  'line-opacity': 1,
11978
11980
  'line-width': {
11979
11981
  base: 1.2,
@@ -11993,7 +11995,7 @@ var gruvbox = {
11993
11995
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
11994
11996
  layout: { 'line-join': 'round' },
11995
11997
  paint: {
11996
- 'line-color': '#d65d0e',
11998
+ 'line-color': '#d33682',
11997
11999
  'line-width': {
11998
12000
  base: 1.2,
11999
12001
  stops: [
@@ -12014,7 +12016,7 @@ var gruvbox = {
12014
12016
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
12015
12017
  layout: { 'line-join': 'round' },
12016
12018
  paint: {
12017
- 'line-color': '#d65d0e',
12019
+ 'line-color': '#d33682',
12018
12020
  'line-width': {
12019
12021
  base: 1.2,
12020
12022
  stops: [
@@ -12038,7 +12040,7 @@ var gruvbox = {
12038
12040
  ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
12039
12041
  ],
12040
12042
  paint: {
12041
- 'line-color': '#f17626',
12043
+ 'line-color': '#9094d3',
12042
12044
  'line-width': {
12043
12045
  base: 1.2,
12044
12046
  stops: [
@@ -12060,7 +12062,7 @@ var gruvbox = {
12060
12062
  ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
12061
12063
  ],
12062
12064
  paint: {
12063
- 'line-color': '#fe8019',
12065
+ 'line-color': '#cb4b16',
12064
12066
  'line-width': {
12065
12067
  base: 1.2,
12066
12068
  stops: [
@@ -12080,7 +12082,7 @@ var gruvbox = {
12080
12082
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
12081
12083
  layout: { 'line-join': 'round' },
12082
12084
  paint: {
12083
- 'line-color': '#ebdbb2',
12085
+ 'line-color': '#6c71c4',
12084
12086
  'line-width': {
12085
12087
  base: 1.2,
12086
12088
  stops: [
@@ -12105,7 +12107,7 @@ var gruvbox = {
12105
12107
  ],
12106
12108
  layout: { 'line-join': 'round' },
12107
12109
  paint: {
12108
- 'line-color': '#ebdbb2',
12110
+ 'line-color': '#6c71c4',
12109
12111
  'line-width': {
12110
12112
  base: 1.2,
12111
12113
  stops: [
@@ -12126,7 +12128,7 @@ var gruvbox = {
12126
12128
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
12127
12129
  layout: { 'line-join': 'round' },
12128
12130
  paint: {
12129
- 'line-color': '#ebdbb2',
12131
+ 'line-color': '#6c71c4',
12130
12132
  'line-width': {
12131
12133
  base: 1.2,
12132
12134
  stops: [
@@ -12146,7 +12148,7 @@ var gruvbox = {
12146
12148
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
12147
12149
  layout: { 'line-join': 'round' },
12148
12150
  paint: {
12149
- 'line-color': '#ebdbb2',
12151
+ 'line-color': '#6c71c4',
12150
12152
  'line-width': {
12151
12153
  base: 1.2,
12152
12154
  stops: [
@@ -12166,7 +12168,7 @@ var gruvbox = {
12166
12168
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
12167
12169
  layout: { 'line-join': 'round' },
12168
12170
  paint: {
12169
- 'line-color': '#ebdbb2',
12171
+ 'line-color': '#6c71c4',
12170
12172
  'line-width': {
12171
12173
  base: 1.2,
12172
12174
  stops: [
@@ -12185,7 +12187,7 @@ var gruvbox = {
12185
12187
  'source-layer': 'transportation',
12186
12188
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
12187
12189
  paint: {
12188
- 'line-color': '#763308',
12190
+ 'line-color': '#3a3f90',
12189
12191
  'line-width': {
12190
12192
  base: 1.4,
12191
12193
  stops: [
@@ -12204,7 +12206,7 @@ var gruvbox = {
12204
12206
  'source-layer': 'transportation',
12205
12207
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
12206
12208
  paint: {
12207
- 'line-color': '#763308',
12209
+ 'line-color': '#3a3f90',
12208
12210
  'line-dasharray': [0.2, 8],
12209
12211
  'line-width': {
12210
12212
  base: 1.4,
@@ -12224,7 +12226,7 @@ var gruvbox = {
12224
12226
  filter: ['all', ['in', 'admin_level', 4, 6, 8], ['!=', 'maritime', 1]],
12225
12227
  layout: { 'line-join': 'round' },
12226
12228
  paint: {
12227
- 'line-color': '#fb4934',
12229
+ 'line-color': '#268bd2',
12228
12230
  'line-dasharray': [3, 1, 1, 1],
12229
12231
  'line-width': {
12230
12232
  base: 1.4,
@@ -12244,7 +12246,7 @@ var gruvbox = {
12244
12246
  filter: ['all', ['==', 'admin_level', 2], ['!=', 'maritime', 1]],
12245
12247
  layout: { 'line-cap': 'round', 'line-join': 'round' },
12246
12248
  paint: {
12247
- 'line-color': '#fb4934',
12249
+ 'line-color': '#268bd2',
12248
12250
  'line-width': {
12249
12251
  base: 1,
12250
12252
  stops: [
@@ -12264,7 +12266,7 @@ var gruvbox = {
12264
12266
  filter: ['all', ['in', 'admin_level', 2, 4], ['==', 'maritime', 1]],
12265
12267
  layout: { 'line-cap': 'round', 'line-join': 'round' },
12266
12268
  paint: {
12267
- 'line-color': '#83a598',
12269
+ 'line-color': '#268bd2',
12268
12270
  'line-width': {
12269
12271
  base: 1,
12270
12272
  stops: [
@@ -13281,9 +13283,9 @@ var gruvbox = {
13281
13283
  ],
13282
13284
  };
13283
13285
 
13284
- var medieval_kingdom = {
13286
+ var OceanicNextStyle = {
13285
13287
  version: 8,
13286
- name: 'Medieval Kingdom',
13288
+ name: 'Oceanic Next',
13287
13289
  center: [8.542, 47.372],
13288
13290
  zoom: 11.6,
13289
13291
  bearing: 0,
@@ -13297,7 +13299,7 @@ var medieval_kingdom = {
13297
13299
  sprite: config.sprite,
13298
13300
  glyphs: config.glyphs,
13299
13301
  layers: [
13300
- { id: 'background', type: 'background', paint: { 'background-color': '#ffd1a8' } },
13302
+ { id: 'background', type: 'background', paint: { 'background-color': '#282822' } },
13301
13303
  {
13302
13304
  id: 'landcover-glacier',
13303
13305
  type: 'fill',
@@ -13307,7 +13309,7 @@ var medieval_kingdom = {
13307
13309
  filter: ['==', 'subclass', 'glacier'],
13308
13310
  layout: { visibility: 'visible' },
13309
13311
  paint: {
13310
- 'fill-color': '#228B22',
13312
+ 'fill-color': '#81a1c1',
13311
13313
  'fill-opacity': {
13312
13314
  base: 1,
13313
13315
  stops: [
@@ -13324,7 +13326,7 @@ var medieval_kingdom = {
13324
13326
  source: 'openmaptiles',
13325
13327
  'source-layer': 'landuse',
13326
13328
  filter: ['==', 'class', 'residential'],
13327
- paint: { 'fill-color': '#bfa677' },
13329
+ paint: { 'fill-color': '#a3be8c' },
13328
13330
  },
13329
13331
  {
13330
13332
  id: 'landuse-commercial',
@@ -13333,7 +13335,7 @@ var medieval_kingdom = {
13333
13335
  source: 'openmaptiles',
13334
13336
  'source-layer': 'landuse',
13335
13337
  filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'commercial']],
13336
- paint: { 'fill-color': '#c5af85' },
13338
+ paint: { 'fill-color': '#acc598' },
13337
13339
  },
13338
13340
  {
13339
13341
  id: 'landuse-industrial',
@@ -13342,7 +13344,7 @@ var medieval_kingdom = {
13342
13344
  source: 'openmaptiles',
13343
13345
  'source-layer': 'landuse',
13344
13346
  filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'industrial']],
13345
- paint: { 'fill-color': '#ccb892' },
13347
+ paint: { 'fill-color': '#b5cba3' },
13346
13348
  },
13347
13349
  {
13348
13350
  id: 'park',
@@ -13352,7 +13354,7 @@ var medieval_kingdom = {
13352
13354
  'source-layer': 'park',
13353
13355
  filter: ['==', '$type', 'Polygon'],
13354
13356
  paint: {
13355
- 'fill-color': '#556B2F',
13357
+ 'fill-color': '#a3be8c',
13356
13358
  'fill-opacity': {
13357
13359
  base: 1.8,
13358
13360
  stops: [
@@ -13370,7 +13372,7 @@ var medieval_kingdom = {
13370
13372
  'source-layer': 'park',
13371
13373
  filter: ['==', '$type', 'Polygon'],
13372
13374
  layout: {},
13373
- paint: { 'line-color': 'rgba(85,107,47,0.6)', 'line-dasharray': [3, 3] },
13375
+ paint: { 'line-color': 'rgba(163,19,14,0.6)', 'line-dasharray': [3, 3] },
13374
13376
  },
13375
13377
  {
13376
13378
  id: 'landuse-cemetery',
@@ -13379,7 +13381,7 @@ var medieval_kingdom = {
13379
13381
  source: 'openmaptiles',
13380
13382
  'source-layer': 'landuse',
13381
13383
  filter: ['==', 'class', 'cemetery'],
13382
- paint: { 'fill-color': '#d1e0b8' },
13384
+ paint: { 'fill-color': '#cbdabe' },
13383
13385
  },
13384
13386
  {
13385
13387
  id: 'landuse-hospital',
@@ -13388,7 +13390,7 @@ var medieval_kingdom = {
13388
13390
  source: 'openmaptiles',
13389
13391
  'source-layer': 'landuse',
13390
13392
  filter: ['==', 'class', 'hospital'],
13391
- paint: { 'fill-color': '#FFC0CB' },
13393
+ paint: { 'fill-color': '#b48ead' },
13392
13394
  },
13393
13395
  {
13394
13396
  id: 'landuse-school',
@@ -13397,7 +13399,7 @@ var medieval_kingdom = {
13397
13399
  source: 'openmaptiles',
13398
13400
  'source-layer': 'landuse',
13399
13401
  filter: ['==', 'class', 'school'],
13400
- paint: { 'fill-color': 'rgba(255,192,203,0.8)' },
13402
+ paint: { 'fill-color': 'rgba(18,142,173,0.8)' },
13401
13403
  },
13402
13404
  {
13403
13405
  id: 'landuse-railway',
@@ -13406,7 +13408,7 @@ var medieval_kingdom = {
13406
13408
  source: 'openmaptiles',
13407
13409
  'source-layer': 'landuse',
13408
13410
  filter: ['==', 'class', 'railway'],
13409
- paint: { 'fill-color': 'rgba(149,46,46,0.4)' },
13411
+ paint: { 'fill-color': 'rgba(118,51,8,0.4)' },
13410
13412
  },
13411
13413
  {
13412
13414
  id: 'landcover-wood',
@@ -13416,7 +13418,7 @@ var medieval_kingdom = {
13416
13418
  'source-layer': 'landcover',
13417
13419
  filter: ['==', 'class', 'wood'],
13418
13420
  paint: {
13419
- 'fill-color': '#228B22',
13421
+ 'fill-color': '#81a1c1',
13420
13422
  'fill-opacity': 0.1,
13421
13423
  'fill-outline-color': 'hsla(0, 0%, 0%, 0.03)',
13422
13424
  'fill-antialias': {
@@ -13435,7 +13437,7 @@ var medieval_kingdom = {
13435
13437
  source: 'openmaptiles',
13436
13438
  'source-layer': 'landcover',
13437
13439
  filter: ['==', 'class', 'grass'],
13438
- paint: { 'fill-color': '#556B2F', 'fill-opacity': 1 },
13440
+ paint: { 'fill-color': '#a3be8c', 'fill-opacity': 1 },
13439
13441
  },
13440
13442
  {
13441
13443
  id: 'landcover-grass-park',
@@ -13444,7 +13446,7 @@ var medieval_kingdom = {
13444
13446
  source: 'openmaptiles',
13445
13447
  'source-layer': 'park',
13446
13448
  filter: ['==', 'class', 'public_park'],
13447
- paint: { 'fill-color': '#556B2F', 'fill-opacity': 0.8 },
13449
+ paint: { 'fill-color': '#a3be8c', 'fill-opacity': 0.8 },
13448
13450
  },
13449
13451
  {
13450
13452
  id: 'waterway-other',
@@ -13455,7 +13457,7 @@ var medieval_kingdom = {
13455
13457
  filter: ['!in', 'class', 'canal', 'river', 'stream'],
13456
13458
  layout: { 'line-cap': 'round' },
13457
13459
  paint: {
13458
- 'line-color': '#1E90FF',
13460
+ 'line-color': '#8fbcbb',
13459
13461
  'line-width': {
13460
13462
  base: 1.3,
13461
13463
  stops: [
@@ -13474,7 +13476,7 @@ var medieval_kingdom = {
13474
13476
  filter: ['in', 'class', 'canal', 'stream'],
13475
13477
  layout: { 'line-cap': 'round' },
13476
13478
  paint: {
13477
- 'line-color': '#1E90FF',
13479
+ 'line-color': '#8fbcbb',
13478
13480
  'line-width': {
13479
13481
  base: 1.3,
13480
13482
  stops: [
@@ -13493,7 +13495,7 @@ var medieval_kingdom = {
13493
13495
  filter: ['==', 'class', 'river'],
13494
13496
  layout: { 'line-cap': 'round' },
13495
13497
  paint: {
13496
- 'line-color': '#1E90FF',
13498
+ 'line-color': '#8fbcbb',
13497
13499
  'line-width': {
13498
13500
  base: 1.2,
13499
13501
  stops: [
@@ -13514,7 +13516,7 @@ var medieval_kingdom = {
13514
13516
  layout: { visibility: 'visible' },
13515
13517
  paint: {
13516
13518
  'fill-opacity': 1,
13517
- 'fill-color': '#1E90FF',
13519
+ 'fill-color': '#8fbcbb',
13518
13520
  'fill-translate': {
13519
13521
  base: 1,
13520
13522
  stops: [
@@ -13531,7 +13533,7 @@ var medieval_kingdom = {
13531
13533
  source: 'openmaptiles',
13532
13534
  'source-layer': 'water',
13533
13535
  layout: { visibility: 'visible' },
13534
- paint: { 'fill-color': '#006ad1' },
13536
+ paint: { 'fill-color': '#5f9f9e' },
13535
13537
  },
13536
13538
  {
13537
13539
  id: 'water-pattern',
@@ -13551,7 +13553,7 @@ var medieval_kingdom = {
13551
13553
  filter: ['==', 'subclass', 'ice_shelf'],
13552
13554
  layout: { visibility: 'visible' },
13553
13555
  paint: {
13554
- 'fill-color': '#228B22',
13556
+ 'fill-color': '#81a1c1',
13555
13557
  'fill-opacity': {
13556
13558
  base: 1,
13557
13559
  stops: [
@@ -13567,7 +13569,7 @@ var medieval_kingdom = {
13567
13569
  metadata: { 'mapbox:group': '1444849364238.8171' },
13568
13570
  source: 'openmaptiles',
13569
13571
  'source-layer': 'building',
13570
- paint: { 'fill-color': '#f9e9cb', 'fill-antialias': true },
13572
+ paint: { 'fill-color': '#65737e', 'fill-antialias': true },
13571
13573
  },
13572
13574
  {
13573
13575
  id: 'building-top',
@@ -13585,7 +13587,7 @@ var medieval_kingdom = {
13585
13587
  ],
13586
13588
  },
13587
13589
  'fill-outline-color': '#dfdbd7',
13588
- 'fill-color': '#fefcf9',
13590
+ 'fill-color': '#7e8d98',
13589
13591
  'fill-opacity': {
13590
13592
  base: 1,
13591
13593
  stops: [
@@ -13604,7 +13606,7 @@ var medieval_kingdom = {
13604
13606
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
13605
13607
  layout: { 'line-join': 'round' },
13606
13608
  paint: {
13607
- 'line-color': '#CD5C5C',
13609
+ 'line-color': '#d65d0e',
13608
13610
  'line-dasharray': [0.5, 0.25],
13609
13611
  'line-width': {
13610
13612
  base: 1.2,
@@ -13625,7 +13627,7 @@ var medieval_kingdom = {
13625
13627
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor']],
13626
13628
  layout: { 'line-join': 'round' },
13627
13629
  paint: {
13628
- 'line-color': '#CD5C5C',
13630
+ 'line-color': '#d65d0e',
13629
13631
  'line-opacity': {
13630
13632
  stops: [
13631
13633
  [12, 0],
@@ -13652,7 +13654,7 @@ var medieval_kingdom = {
13652
13654
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
13653
13655
  layout: { 'line-join': 'round' },
13654
13656
  paint: {
13655
- 'line-color': '#CD5C5C',
13657
+ 'line-color': '#d65d0e',
13656
13658
  'line-opacity': 1,
13657
13659
  'line-width': {
13658
13660
  base: 1.2,
@@ -13672,7 +13674,7 @@ var medieval_kingdom = {
13672
13674
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
13673
13675
  layout: { 'line-join': 'round' },
13674
13676
  paint: {
13675
- 'line-color': '#CD5C5C',
13677
+ 'line-color': '#d65d0e',
13676
13678
  'line-width': {
13677
13679
  base: 1.2,
13678
13680
  stops: [
@@ -13693,7 +13695,7 @@ var medieval_kingdom = {
13693
13695
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
13694
13696
  layout: { 'line-join': 'round', visibility: 'visible' },
13695
13697
  paint: {
13696
- 'line-color': '#CD5C5C',
13698
+ 'line-color': '#d65d0e',
13697
13699
  'line-dasharray': [0.5, 0.25],
13698
13700
  'line-width': {
13699
13701
  base: 1.2,
@@ -13718,7 +13720,7 @@ var medieval_kingdom = {
13718
13720
  ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'path']],
13719
13721
  ],
13720
13722
  paint: {
13721
- 'line-color': '#d98383',
13723
+ 'line-color': '#f17626',
13722
13724
  'line-dasharray': [1.5, 0.75],
13723
13725
  'line-width': {
13724
13726
  base: 1.2,
@@ -13738,7 +13740,7 @@ var medieval_kingdom = {
13738
13740
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
13739
13741
  layout: { 'line-join': 'round' },
13740
13742
  paint: {
13741
- 'line-color': '#d98383',
13743
+ 'line-color': '#f17626',
13742
13744
  'line-width': {
13743
13745
  base: 1.2,
13744
13746
  stops: [
@@ -13758,7 +13760,7 @@ var medieval_kingdom = {
13758
13760
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor_road']],
13759
13761
  layout: { 'line-join': 'round' },
13760
13762
  paint: {
13761
- 'line-color': '#d98383',
13763
+ 'line-color': '#f17626',
13762
13764
  'line-opacity': 1,
13763
13765
  'line-width': {
13764
13766
  base: 1.2,
@@ -13779,7 +13781,7 @@ var medieval_kingdom = {
13779
13781
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
13780
13782
  layout: { 'line-join': 'round' },
13781
13783
  paint: {
13782
- 'line-color': '#df9797',
13784
+ 'line-color': '#f2853e',
13783
13785
  'line-width': {
13784
13786
  base: 1.2,
13785
13787
  stops: [
@@ -13799,7 +13801,7 @@ var medieval_kingdom = {
13799
13801
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
13800
13802
  layout: { 'line-join': 'round' },
13801
13803
  paint: {
13802
- 'line-color': '#CD5C5C',
13804
+ 'line-color': '#d65d0e',
13803
13805
  'line-width': {
13804
13806
  base: 1.2,
13805
13807
  stops: [
@@ -13819,7 +13821,7 @@ var medieval_kingdom = {
13819
13821
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
13820
13822
  layout: { 'line-join': 'round', visibility: 'visible' },
13821
13823
  paint: {
13822
- 'line-color': 'rgba(139,94,6,0.8)',
13824
+ 'line-color': 'rgba(235,219,178,0.8)',
13823
13825
  'line-width': {
13824
13826
  base: 1.2,
13825
13827
  stops: [
@@ -13838,7 +13840,7 @@ var medieval_kingdom = {
13838
13840
  'source-layer': 'transportation',
13839
13841
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'rail']],
13840
13842
  paint: {
13841
- 'line-color': '#952e2e',
13843
+ 'line-color': '#763308',
13842
13844
  'line-width': {
13843
13845
  base: 1.4,
13844
13846
  stops: [
@@ -13860,7 +13862,7 @@ var medieval_kingdom = {
13860
13862
  filter: ['all', ['in', 'class', 'taxiway']],
13861
13863
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
13862
13864
  paint: {
13863
- 'line-color': '#952e2e',
13865
+ 'line-color': '#763308',
13864
13866
  'line-width': {
13865
13867
  base: 1.5,
13866
13868
  stops: [
@@ -13881,7 +13883,7 @@ var medieval_kingdom = {
13881
13883
  filter: ['all', ['in', 'class', 'runway']],
13882
13884
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
13883
13885
  paint: {
13884
- 'line-color': '#952e2e',
13886
+ 'line-color': '#763308',
13885
13887
  'line-width': {
13886
13888
  base: 1.5,
13887
13889
  stops: [
@@ -13909,7 +13911,7 @@ var medieval_kingdom = {
13909
13911
  [14, 1],
13910
13912
  ],
13911
13913
  },
13912
- 'fill-color': 'rgba(205,92,92,0.5)',
13914
+ 'fill-color': 'rgba(214,93,14,0.5)',
13913
13915
  },
13914
13916
  },
13915
13917
  {
@@ -13922,7 +13924,7 @@ var medieval_kingdom = {
13922
13924
  filter: ['all', ['in', 'class', 'taxiway'], ['==', '$type', 'LineString']],
13923
13925
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
13924
13926
  paint: {
13925
- 'line-color': '#df9797',
13927
+ 'line-color': '#f2853e',
13926
13928
  'line-width': {
13927
13929
  base: 1.5,
13928
13930
  stops: [
@@ -13949,7 +13951,7 @@ var medieval_kingdom = {
13949
13951
  filter: ['all', ['in', 'class', 'runway'], ['==', '$type', 'LineString']],
13950
13952
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
13951
13953
  paint: {
13952
- 'line-color': '#df9797',
13954
+ 'line-color': '#f2853e',
13953
13955
  'line-width': {
13954
13956
  base: 1.5,
13955
13957
  stops: [
@@ -13975,7 +13977,7 @@ var medieval_kingdom = {
13975
13977
  filter: ['==', '$type', 'Polygon'],
13976
13978
  layout: { visibility: 'visible' },
13977
13979
  paint: {
13978
- 'fill-color': '#bc3a3a',
13980
+ 'fill-color': '#a6480b',
13979
13981
  'fill-outline-color': '#cfcdca',
13980
13982
  'fill-opacity': 0.9,
13981
13983
  'fill-antialias': false,
@@ -13991,7 +13993,7 @@ var medieval_kingdom = {
13991
13993
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
13992
13994
  layout: { 'line-cap': 'round', 'line-join': 'round' },
13993
13995
  paint: {
13994
- 'line-color': '#CD5C5C',
13996
+ 'line-color': '#d65d0e',
13995
13997
  'line-opacity': 1,
13996
13998
  'line-width': {
13997
13999
  base: 1.2,
@@ -14018,7 +14020,7 @@ var medieval_kingdom = {
14018
14020
  ],
14019
14021
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
14020
14022
  paint: {
14021
- 'line-color': '#CD5C5C',
14023
+ 'line-color': '#d65d0e',
14022
14024
  'line-opacity': 1,
14023
14025
  'line-width': {
14024
14026
  base: 1.2,
@@ -14044,7 +14046,7 @@ var medieval_kingdom = {
14044
14046
  ],
14045
14047
  layout: { 'line-cap': 'round', 'line-join': 'round' },
14046
14048
  paint: {
14047
- 'line-color': 'rgba(205,92,92,0.8)',
14049
+ 'line-color': 'rgba(214,93,14,0.8)',
14048
14050
  'line-opacity': {
14049
14051
  stops: [
14050
14052
  [12, 0],
@@ -14075,7 +14077,7 @@ var medieval_kingdom = {
14075
14077
  ],
14076
14078
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
14077
14079
  paint: {
14078
- 'line-color': '#CD5C5C',
14080
+ 'line-color': '#d65d0e',
14079
14081
  'line-opacity': 1,
14080
14082
  'line-width': {
14081
14083
  base: 1.2,
@@ -14096,7 +14098,7 @@ var medieval_kingdom = {
14096
14098
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'primary']],
14097
14099
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
14098
14100
  paint: {
14099
- 'line-color': '#CD5C5C',
14101
+ 'line-color': '#d65d0e',
14100
14102
  'line-opacity': {
14101
14103
  stops: [
14102
14104
  [7, 0],
@@ -14124,7 +14126,7 @@ var medieval_kingdom = {
14124
14126
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'trunk']],
14125
14127
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
14126
14128
  paint: {
14127
- 'line-color': '#CD5C5C',
14129
+ 'line-color': '#d65d0e',
14128
14130
  'line-opacity': {
14129
14131
  stops: [
14130
14132
  [5, 0],
@@ -14152,7 +14154,7 @@ var medieval_kingdom = {
14152
14154
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway']],
14153
14155
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
14154
14156
  paint: {
14155
- 'line-color': '#CD5C5C',
14157
+ 'line-color': '#d65d0e',
14156
14158
  'line-width': {
14157
14159
  base: 1.2,
14158
14160
  stops: [
@@ -14183,7 +14185,7 @@ var medieval_kingdom = {
14183
14185
  ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'path']],
14184
14186
  ],
14185
14187
  paint: {
14186
- 'line-color': '#FFC0CB',
14188
+ 'line-color': '#b48ead',
14187
14189
  'line-dasharray': [1.5, 0.75],
14188
14190
  'line-width': {
14189
14191
  base: 1.2,
@@ -14204,7 +14206,7 @@ var medieval_kingdom = {
14204
14206
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
14205
14207
  layout: { 'line-cap': 'round', 'line-join': 'round' },
14206
14208
  paint: {
14207
- 'line-color': '#8b5e3c',
14209
+ 'line-color': '#ebdbb2',
14208
14210
  'line-width': {
14209
14211
  base: 1.2,
14210
14212
  stops: [
@@ -14230,7 +14232,7 @@ var medieval_kingdom = {
14230
14232
  ],
14231
14233
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
14232
14234
  paint: {
14233
- 'line-color': '#8B5E3C',
14235
+ 'line-color': '#ebdbb2',
14234
14236
  'line-width': {
14235
14237
  base: 1.2,
14236
14238
  stops: [
@@ -14255,7 +14257,7 @@ var medieval_kingdom = {
14255
14257
  ],
14256
14258
  layout: { 'line-cap': 'round', 'line-join': 'round' },
14257
14259
  paint: {
14258
- 'line-color': '#e5aaaa',
14260
+ 'line-color': '#f49456',
14259
14261
  'line-opacity': 1,
14260
14262
  'line-width': {
14261
14263
  base: 1.2,
@@ -14280,7 +14282,7 @@ var medieval_kingdom = {
14280
14282
  ],
14281
14283
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
14282
14284
  paint: {
14283
- 'line-color': '#8B5E3C',
14285
+ 'line-color': '#ebdbb2',
14284
14286
  'line-width': {
14285
14287
  base: 1.2,
14286
14288
  stops: [
@@ -14304,7 +14306,7 @@ var medieval_kingdom = {
14304
14306
  ],
14305
14307
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
14306
14308
  paint: {
14307
- 'line-color': '#8B5E3C',
14309
+ 'line-color': '#ebdbb2',
14308
14310
  'line-width': {
14309
14311
  base: 1.2,
14310
14312
  stops: [
@@ -14328,7 +14330,7 @@ var medieval_kingdom = {
14328
14330
  ],
14329
14331
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
14330
14332
  paint: {
14331
- 'line-color': '#8B5E3C',
14333
+ 'line-color': '#ebdbb2',
14332
14334
  'line-width': {
14333
14335
  base: 1.2,
14334
14336
  stops: [
@@ -14353,7 +14355,7 @@ var medieval_kingdom = {
14353
14355
  ],
14354
14356
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
14355
14357
  paint: {
14356
- 'line-color': '#8b5e3c',
14358
+ 'line-color': '#ebdbb2',
14357
14359
  'line-width': {
14358
14360
  base: 1.2,
14359
14361
  stops: [
@@ -14376,7 +14378,7 @@ var medieval_kingdom = {
14376
14378
  ['all', ['==', 'class', 'rail'], ['has', 'service']],
14377
14379
  ],
14378
14380
  paint: {
14379
- 'line-color': 'rgba(149,46,46,0.7)',
14381
+ 'line-color': 'rgba(118,51,8,0.7)',
14380
14382
  'line-width': {
14381
14383
  base: 1.4,
14382
14384
  stops: [
@@ -14399,7 +14401,7 @@ var medieval_kingdom = {
14399
14401
  ],
14400
14402
  layout: { visibility: 'visible' },
14401
14403
  paint: {
14402
- 'line-color': 'rgba(149,46,46,0.7)',
14404
+ 'line-color': 'rgba(118,51,8,0.7)',
14403
14405
  'line-dasharray': [0.2, 8],
14404
14406
  'line-width': {
14405
14407
  base: 1.4,
@@ -14428,7 +14430,7 @@ var medieval_kingdom = {
14428
14430
  ],
14429
14431
  ],
14430
14432
  paint: {
14431
- 'line-color': '#952e2e',
14433
+ 'line-color': '#763308',
14432
14434
  'line-width': {
14433
14435
  base: 1.4,
14434
14436
  stops: [
@@ -14456,7 +14458,7 @@ var medieval_kingdom = {
14456
14458
  ],
14457
14459
  ],
14458
14460
  paint: {
14459
- 'line-color': '#952e2e',
14461
+ 'line-color': '#763308',
14460
14462
  'line-dasharray': [0.2, 8],
14461
14463
  'line-width': {
14462
14464
  base: 1.4,
@@ -14477,7 +14479,7 @@ var medieval_kingdom = {
14477
14479
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
14478
14480
  layout: { 'line-join': 'round' },
14479
14481
  paint: {
14480
- 'line-color': '#CD5C5C',
14482
+ 'line-color': '#d65d0e',
14481
14483
  'line-opacity': 1,
14482
14484
  'line-width': {
14483
14485
  base: 1.2,
@@ -14503,7 +14505,7 @@ var medieval_kingdom = {
14503
14505
  ],
14504
14506
  layout: { 'line-join': 'round' },
14505
14507
  paint: {
14506
- 'line-color': '#CD5C5C',
14508
+ 'line-color': '#d65d0e',
14507
14509
  'line-opacity': 1,
14508
14510
  'line-width': {
14509
14511
  base: 1.2,
@@ -14525,7 +14527,7 @@ var medieval_kingdom = {
14525
14527
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
14526
14528
  layout: { 'line-join': 'round' },
14527
14529
  paint: {
14528
- 'line-color': '#CD5C5C',
14530
+ 'line-color': '#d65d0e',
14529
14531
  'line-opacity': 1,
14530
14532
  'line-width': {
14531
14533
  base: 1.2,
@@ -14545,7 +14547,7 @@ var medieval_kingdom = {
14545
14547
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
14546
14548
  layout: { 'line-join': 'round' },
14547
14549
  paint: {
14548
- 'line-color': '#CD5C5C',
14550
+ 'line-color': '#d65d0e',
14549
14551
  'line-width': {
14550
14552
  base: 1.2,
14551
14553
  stops: [
@@ -14566,7 +14568,7 @@ var medieval_kingdom = {
14566
14568
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
14567
14569
  layout: { 'line-join': 'round' },
14568
14570
  paint: {
14569
- 'line-color': '#CD5C5C',
14571
+ 'line-color': '#d65d0e',
14570
14572
  'line-width': {
14571
14573
  base: 1.2,
14572
14574
  stops: [
@@ -14590,7 +14592,7 @@ var medieval_kingdom = {
14590
14592
  ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
14591
14593
  ],
14592
14594
  paint: {
14593
- 'line-color': '#d98383',
14595
+ 'line-color': '#f17626',
14594
14596
  'line-width': {
14595
14597
  base: 1.2,
14596
14598
  stops: [
@@ -14612,7 +14614,7 @@ var medieval_kingdom = {
14612
14614
  ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
14613
14615
  ],
14614
14616
  paint: {
14615
- 'line-color': '#FFC0CB',
14617
+ 'line-color': '#b48ead',
14616
14618
  'line-width': {
14617
14619
  base: 1.2,
14618
14620
  stops: [
@@ -14632,7 +14634,7 @@ var medieval_kingdom = {
14632
14634
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
14633
14635
  layout: { 'line-join': 'round' },
14634
14636
  paint: {
14635
- 'line-color': '#8b5e3c',
14637
+ 'line-color': '#ebdbb2',
14636
14638
  'line-width': {
14637
14639
  base: 1.2,
14638
14640
  stops: [
@@ -14657,7 +14659,7 @@ var medieval_kingdom = {
14657
14659
  ],
14658
14660
  layout: { 'line-join': 'round' },
14659
14661
  paint: {
14660
- 'line-color': '#8B5E3C',
14662
+ 'line-color': '#ebdbb2',
14661
14663
  'line-width': {
14662
14664
  base: 1.2,
14663
14665
  stops: [
@@ -14678,7 +14680,7 @@ var medieval_kingdom = {
14678
14680
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
14679
14681
  layout: { 'line-join': 'round' },
14680
14682
  paint: {
14681
- 'line-color': '#8B5E3C',
14683
+ 'line-color': '#ebdbb2',
14682
14684
  'line-width': {
14683
14685
  base: 1.2,
14684
14686
  stops: [
@@ -14698,7 +14700,7 @@ var medieval_kingdom = {
14698
14700
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
14699
14701
  layout: { 'line-join': 'round' },
14700
14702
  paint: {
14701
- 'line-color': '#8B5E3C',
14703
+ 'line-color': '#ebdbb2',
14702
14704
  'line-width': {
14703
14705
  base: 1.2,
14704
14706
  stops: [
@@ -14718,7 +14720,7 @@ var medieval_kingdom = {
14718
14720
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
14719
14721
  layout: { 'line-join': 'round' },
14720
14722
  paint: {
14721
- 'line-color': '#8b5e3c',
14723
+ 'line-color': '#ebdbb2',
14722
14724
  'line-width': {
14723
14725
  base: 1.2,
14724
14726
  stops: [
@@ -14737,7 +14739,7 @@ var medieval_kingdom = {
14737
14739
  'source-layer': 'transportation',
14738
14740
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
14739
14741
  paint: {
14740
- 'line-color': '#952e2e',
14742
+ 'line-color': '#763308',
14741
14743
  'line-width': {
14742
14744
  base: 1.4,
14743
14745
  stops: [
@@ -14756,7 +14758,7 @@ var medieval_kingdom = {
14756
14758
  'source-layer': 'transportation',
14757
14759
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
14758
14760
  paint: {
14759
- 'line-color': '#952e2e',
14761
+ 'line-color': '#763308',
14760
14762
  'line-dasharray': [0.2, 8],
14761
14763
  'line-width': {
14762
14764
  base: 1.4,
@@ -14776,7 +14778,7 @@ var medieval_kingdom = {
14776
14778
  filter: ['all', ['in', 'admin_level', 4, 6, 8], ['!=', 'maritime', 1]],
14777
14779
  layout: { 'line-join': 'round' },
14778
14780
  paint: {
14779
- 'line-color': '#A0522D',
14781
+ 'line-color': '#8fbcbb',
14780
14782
  'line-dasharray': [3, 1, 1, 1],
14781
14783
  'line-width': {
14782
14784
  base: 1.4,
@@ -14796,7 +14798,7 @@ var medieval_kingdom = {
14796
14798
  filter: ['all', ['==', 'admin_level', 2], ['!=', 'maritime', 1]],
14797
14799
  layout: { 'line-cap': 'round', 'line-join': 'round' },
14798
14800
  paint: {
14799
- 'line-color': '#A0522D',
14801
+ 'line-color': '#8fbcbb',
14800
14802
  'line-width': {
14801
14803
  base: 1,
14802
14804
  stops: [
@@ -14816,7 +14818,7 @@ var medieval_kingdom = {
14816
14818
  filter: ['all', ['in', 'admin_level', 2, 4], ['==', 'maritime', 1]],
14817
14819
  layout: { 'line-cap': 'round', 'line-join': 'round' },
14818
14820
  paint: {
14819
- 'line-color': '#1E90FF',
14821
+ 'line-color': '#8fbcbb',
14820
14822
  'line-width': {
14821
14823
  base: 1,
14822
14824
  stops: [
@@ -15833,9 +15835,9 @@ var medieval_kingdom = {
15833
15835
  ],
15834
15836
  };
15835
15837
 
15836
- var oceanic_next = {
15838
+ var MedievalKingdomStyle = {
15837
15839
  version: 8,
15838
- name: 'Oceanic Next',
15840
+ name: 'Medieval Kingdom',
15839
15841
  center: [8.542, 47.372],
15840
15842
  zoom: 11.6,
15841
15843
  bearing: 0,
@@ -15849,7 +15851,7 @@ var oceanic_next = {
15849
15851
  sprite: config.sprite,
15850
15852
  glyphs: config.glyphs,
15851
15853
  layers: [
15852
- { id: 'background', type: 'background', paint: { 'background-color': '#282822' } },
15854
+ { id: 'background', type: 'background', paint: { 'background-color': '#ffd1a8' } },
15853
15855
  {
15854
15856
  id: 'landcover-glacier',
15855
15857
  type: 'fill',
@@ -15859,7 +15861,7 @@ var oceanic_next = {
15859
15861
  filter: ['==', 'subclass', 'glacier'],
15860
15862
  layout: { visibility: 'visible' },
15861
15863
  paint: {
15862
- 'fill-color': '#81a1c1',
15864
+ 'fill-color': '#228B22',
15863
15865
  'fill-opacity': {
15864
15866
  base: 1,
15865
15867
  stops: [
@@ -15876,7 +15878,7 @@ var oceanic_next = {
15876
15878
  source: 'openmaptiles',
15877
15879
  'source-layer': 'landuse',
15878
15880
  filter: ['==', 'class', 'residential'],
15879
- paint: { 'fill-color': '#a3be8c' },
15881
+ paint: { 'fill-color': '#bfa677' },
15880
15882
  },
15881
15883
  {
15882
15884
  id: 'landuse-commercial',
@@ -15885,7 +15887,7 @@ var oceanic_next = {
15885
15887
  source: 'openmaptiles',
15886
15888
  'source-layer': 'landuse',
15887
15889
  filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'commercial']],
15888
- paint: { 'fill-color': '#acc598' },
15890
+ paint: { 'fill-color': '#c5af85' },
15889
15891
  },
15890
15892
  {
15891
15893
  id: 'landuse-industrial',
@@ -15894,7 +15896,7 @@ var oceanic_next = {
15894
15896
  source: 'openmaptiles',
15895
15897
  'source-layer': 'landuse',
15896
15898
  filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'industrial']],
15897
- paint: { 'fill-color': '#b5cba3' },
15899
+ paint: { 'fill-color': '#ccb892' },
15898
15900
  },
15899
15901
  {
15900
15902
  id: 'park',
@@ -15904,7 +15906,7 @@ var oceanic_next = {
15904
15906
  'source-layer': 'park',
15905
15907
  filter: ['==', '$type', 'Polygon'],
15906
15908
  paint: {
15907
- 'fill-color': '#a3be8c',
15909
+ 'fill-color': '#556B2F',
15908
15910
  'fill-opacity': {
15909
15911
  base: 1.8,
15910
15912
  stops: [
@@ -15922,7 +15924,7 @@ var oceanic_next = {
15922
15924
  'source-layer': 'park',
15923
15925
  filter: ['==', '$type', 'Polygon'],
15924
15926
  layout: {},
15925
- paint: { 'line-color': 'rgba(163,19,14,0.6)', 'line-dasharray': [3, 3] },
15927
+ paint: { 'line-color': 'rgba(85,107,47,0.6)', 'line-dasharray': [3, 3] },
15926
15928
  },
15927
15929
  {
15928
15930
  id: 'landuse-cemetery',
@@ -15931,7 +15933,7 @@ var oceanic_next = {
15931
15933
  source: 'openmaptiles',
15932
15934
  'source-layer': 'landuse',
15933
15935
  filter: ['==', 'class', 'cemetery'],
15934
- paint: { 'fill-color': '#cbdabe' },
15936
+ paint: { 'fill-color': '#d1e0b8' },
15935
15937
  },
15936
15938
  {
15937
15939
  id: 'landuse-hospital',
@@ -15940,7 +15942,7 @@ var oceanic_next = {
15940
15942
  source: 'openmaptiles',
15941
15943
  'source-layer': 'landuse',
15942
15944
  filter: ['==', 'class', 'hospital'],
15943
- paint: { 'fill-color': '#b48ead' },
15945
+ paint: { 'fill-color': '#FFC0CB' },
15944
15946
  },
15945
15947
  {
15946
15948
  id: 'landuse-school',
@@ -15949,7 +15951,7 @@ var oceanic_next = {
15949
15951
  source: 'openmaptiles',
15950
15952
  'source-layer': 'landuse',
15951
15953
  filter: ['==', 'class', 'school'],
15952
- paint: { 'fill-color': 'rgba(18,142,173,0.8)' },
15954
+ paint: { 'fill-color': 'rgba(255,192,203,0.8)' },
15953
15955
  },
15954
15956
  {
15955
15957
  id: 'landuse-railway',
@@ -15958,7 +15960,7 @@ var oceanic_next = {
15958
15960
  source: 'openmaptiles',
15959
15961
  'source-layer': 'landuse',
15960
15962
  filter: ['==', 'class', 'railway'],
15961
- paint: { 'fill-color': 'rgba(118,51,8,0.4)' },
15963
+ paint: { 'fill-color': 'rgba(149,46,46,0.4)' },
15962
15964
  },
15963
15965
  {
15964
15966
  id: 'landcover-wood',
@@ -15968,7 +15970,7 @@ var oceanic_next = {
15968
15970
  'source-layer': 'landcover',
15969
15971
  filter: ['==', 'class', 'wood'],
15970
15972
  paint: {
15971
- 'fill-color': '#81a1c1',
15973
+ 'fill-color': '#228B22',
15972
15974
  'fill-opacity': 0.1,
15973
15975
  'fill-outline-color': 'hsla(0, 0%, 0%, 0.03)',
15974
15976
  'fill-antialias': {
@@ -15987,7 +15989,7 @@ var oceanic_next = {
15987
15989
  source: 'openmaptiles',
15988
15990
  'source-layer': 'landcover',
15989
15991
  filter: ['==', 'class', 'grass'],
15990
- paint: { 'fill-color': '#a3be8c', 'fill-opacity': 1 },
15992
+ paint: { 'fill-color': '#556B2F', 'fill-opacity': 1 },
15991
15993
  },
15992
15994
  {
15993
15995
  id: 'landcover-grass-park',
@@ -15996,7 +15998,7 @@ var oceanic_next = {
15996
15998
  source: 'openmaptiles',
15997
15999
  'source-layer': 'park',
15998
16000
  filter: ['==', 'class', 'public_park'],
15999
- paint: { 'fill-color': '#a3be8c', 'fill-opacity': 0.8 },
16001
+ paint: { 'fill-color': '#556B2F', 'fill-opacity': 0.8 },
16000
16002
  },
16001
16003
  {
16002
16004
  id: 'waterway-other',
@@ -16007,7 +16009,7 @@ var oceanic_next = {
16007
16009
  filter: ['!in', 'class', 'canal', 'river', 'stream'],
16008
16010
  layout: { 'line-cap': 'round' },
16009
16011
  paint: {
16010
- 'line-color': '#8fbcbb',
16012
+ 'line-color': '#1E90FF',
16011
16013
  'line-width': {
16012
16014
  base: 1.3,
16013
16015
  stops: [
@@ -16026,7 +16028,7 @@ var oceanic_next = {
16026
16028
  filter: ['in', 'class', 'canal', 'stream'],
16027
16029
  layout: { 'line-cap': 'round' },
16028
16030
  paint: {
16029
- 'line-color': '#8fbcbb',
16031
+ 'line-color': '#1E90FF',
16030
16032
  'line-width': {
16031
16033
  base: 1.3,
16032
16034
  stops: [
@@ -16045,7 +16047,7 @@ var oceanic_next = {
16045
16047
  filter: ['==', 'class', 'river'],
16046
16048
  layout: { 'line-cap': 'round' },
16047
16049
  paint: {
16048
- 'line-color': '#8fbcbb',
16050
+ 'line-color': '#1E90FF',
16049
16051
  'line-width': {
16050
16052
  base: 1.2,
16051
16053
  stops: [
@@ -16066,7 +16068,7 @@ var oceanic_next = {
16066
16068
  layout: { visibility: 'visible' },
16067
16069
  paint: {
16068
16070
  'fill-opacity': 1,
16069
- 'fill-color': '#8fbcbb',
16071
+ 'fill-color': '#1E90FF',
16070
16072
  'fill-translate': {
16071
16073
  base: 1,
16072
16074
  stops: [
@@ -16083,7 +16085,7 @@ var oceanic_next = {
16083
16085
  source: 'openmaptiles',
16084
16086
  'source-layer': 'water',
16085
16087
  layout: { visibility: 'visible' },
16086
- paint: { 'fill-color': '#5f9f9e' },
16088
+ paint: { 'fill-color': '#006ad1' },
16087
16089
  },
16088
16090
  {
16089
16091
  id: 'water-pattern',
@@ -16103,7 +16105,7 @@ var oceanic_next = {
16103
16105
  filter: ['==', 'subclass', 'ice_shelf'],
16104
16106
  layout: { visibility: 'visible' },
16105
16107
  paint: {
16106
- 'fill-color': '#81a1c1',
16108
+ 'fill-color': '#228B22',
16107
16109
  'fill-opacity': {
16108
16110
  base: 1,
16109
16111
  stops: [
@@ -16119,7 +16121,7 @@ var oceanic_next = {
16119
16121
  metadata: { 'mapbox:group': '1444849364238.8171' },
16120
16122
  source: 'openmaptiles',
16121
16123
  'source-layer': 'building',
16122
- paint: { 'fill-color': '#65737e', 'fill-antialias': true },
16124
+ paint: { 'fill-color': '#f9e9cb', 'fill-antialias': true },
16123
16125
  },
16124
16126
  {
16125
16127
  id: 'building-top',
@@ -16137,7 +16139,7 @@ var oceanic_next = {
16137
16139
  ],
16138
16140
  },
16139
16141
  'fill-outline-color': '#dfdbd7',
16140
- 'fill-color': '#7e8d98',
16142
+ 'fill-color': '#fefcf9',
16141
16143
  'fill-opacity': {
16142
16144
  base: 1,
16143
16145
  stops: [
@@ -16156,7 +16158,7 @@ var oceanic_next = {
16156
16158
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
16157
16159
  layout: { 'line-join': 'round' },
16158
16160
  paint: {
16159
- 'line-color': '#d65d0e',
16161
+ 'line-color': '#CD5C5C',
16160
16162
  'line-dasharray': [0.5, 0.25],
16161
16163
  'line-width': {
16162
16164
  base: 1.2,
@@ -16177,7 +16179,7 @@ var oceanic_next = {
16177
16179
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor']],
16178
16180
  layout: { 'line-join': 'round' },
16179
16181
  paint: {
16180
- 'line-color': '#d65d0e',
16182
+ 'line-color': '#CD5C5C',
16181
16183
  'line-opacity': {
16182
16184
  stops: [
16183
16185
  [12, 0],
@@ -16204,7 +16206,7 @@ var oceanic_next = {
16204
16206
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
16205
16207
  layout: { 'line-join': 'round' },
16206
16208
  paint: {
16207
- 'line-color': '#d65d0e',
16209
+ 'line-color': '#CD5C5C',
16208
16210
  'line-opacity': 1,
16209
16211
  'line-width': {
16210
16212
  base: 1.2,
@@ -16224,7 +16226,7 @@ var oceanic_next = {
16224
16226
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
16225
16227
  layout: { 'line-join': 'round' },
16226
16228
  paint: {
16227
- 'line-color': '#d65d0e',
16229
+ 'line-color': '#CD5C5C',
16228
16230
  'line-width': {
16229
16231
  base: 1.2,
16230
16232
  stops: [
@@ -16245,7 +16247,7 @@ var oceanic_next = {
16245
16247
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
16246
16248
  layout: { 'line-join': 'round', visibility: 'visible' },
16247
16249
  paint: {
16248
- 'line-color': '#d65d0e',
16250
+ 'line-color': '#CD5C5C',
16249
16251
  'line-dasharray': [0.5, 0.25],
16250
16252
  'line-width': {
16251
16253
  base: 1.2,
@@ -16270,7 +16272,7 @@ var oceanic_next = {
16270
16272
  ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'path']],
16271
16273
  ],
16272
16274
  paint: {
16273
- 'line-color': '#f17626',
16275
+ 'line-color': '#d98383',
16274
16276
  'line-dasharray': [1.5, 0.75],
16275
16277
  'line-width': {
16276
16278
  base: 1.2,
@@ -16290,7 +16292,7 @@ var oceanic_next = {
16290
16292
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
16291
16293
  layout: { 'line-join': 'round' },
16292
16294
  paint: {
16293
- 'line-color': '#f17626',
16295
+ 'line-color': '#d98383',
16294
16296
  'line-width': {
16295
16297
  base: 1.2,
16296
16298
  stops: [
@@ -16310,7 +16312,7 @@ var oceanic_next = {
16310
16312
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor_road']],
16311
16313
  layout: { 'line-join': 'round' },
16312
16314
  paint: {
16313
- 'line-color': '#f17626',
16315
+ 'line-color': '#d98383',
16314
16316
  'line-opacity': 1,
16315
16317
  'line-width': {
16316
16318
  base: 1.2,
@@ -16331,7 +16333,7 @@ var oceanic_next = {
16331
16333
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
16332
16334
  layout: { 'line-join': 'round' },
16333
16335
  paint: {
16334
- 'line-color': '#f2853e',
16336
+ 'line-color': '#df9797',
16335
16337
  'line-width': {
16336
16338
  base: 1.2,
16337
16339
  stops: [
@@ -16351,7 +16353,7 @@ var oceanic_next = {
16351
16353
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
16352
16354
  layout: { 'line-join': 'round' },
16353
16355
  paint: {
16354
- 'line-color': '#d65d0e',
16356
+ 'line-color': '#CD5C5C',
16355
16357
  'line-width': {
16356
16358
  base: 1.2,
16357
16359
  stops: [
@@ -16371,7 +16373,7 @@ var oceanic_next = {
16371
16373
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
16372
16374
  layout: { 'line-join': 'round', visibility: 'visible' },
16373
16375
  paint: {
16374
- 'line-color': 'rgba(235,219,178,0.8)',
16376
+ 'line-color': 'rgba(139,94,6,0.8)',
16375
16377
  'line-width': {
16376
16378
  base: 1.2,
16377
16379
  stops: [
@@ -16390,7 +16392,7 @@ var oceanic_next = {
16390
16392
  'source-layer': 'transportation',
16391
16393
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'rail']],
16392
16394
  paint: {
16393
- 'line-color': '#763308',
16395
+ 'line-color': '#952e2e',
16394
16396
  'line-width': {
16395
16397
  base: 1.4,
16396
16398
  stops: [
@@ -16412,7 +16414,7 @@ var oceanic_next = {
16412
16414
  filter: ['all', ['in', 'class', 'taxiway']],
16413
16415
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16414
16416
  paint: {
16415
- 'line-color': '#763308',
16417
+ 'line-color': '#952e2e',
16416
16418
  'line-width': {
16417
16419
  base: 1.5,
16418
16420
  stops: [
@@ -16433,7 +16435,7 @@ var oceanic_next = {
16433
16435
  filter: ['all', ['in', 'class', 'runway']],
16434
16436
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16435
16437
  paint: {
16436
- 'line-color': '#763308',
16438
+ 'line-color': '#952e2e',
16437
16439
  'line-width': {
16438
16440
  base: 1.5,
16439
16441
  stops: [
@@ -16461,7 +16463,7 @@ var oceanic_next = {
16461
16463
  [14, 1],
16462
16464
  ],
16463
16465
  },
16464
- 'fill-color': 'rgba(214,93,14,0.5)',
16466
+ 'fill-color': 'rgba(205,92,92,0.5)',
16465
16467
  },
16466
16468
  },
16467
16469
  {
@@ -16474,7 +16476,7 @@ var oceanic_next = {
16474
16476
  filter: ['all', ['in', 'class', 'taxiway'], ['==', '$type', 'LineString']],
16475
16477
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16476
16478
  paint: {
16477
- 'line-color': '#f2853e',
16479
+ 'line-color': '#df9797',
16478
16480
  'line-width': {
16479
16481
  base: 1.5,
16480
16482
  stops: [
@@ -16501,7 +16503,7 @@ var oceanic_next = {
16501
16503
  filter: ['all', ['in', 'class', 'runway'], ['==', '$type', 'LineString']],
16502
16504
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16503
16505
  paint: {
16504
- 'line-color': '#f2853e',
16506
+ 'line-color': '#df9797',
16505
16507
  'line-width': {
16506
16508
  base: 1.5,
16507
16509
  stops: [
@@ -16527,7 +16529,7 @@ var oceanic_next = {
16527
16529
  filter: ['==', '$type', 'Polygon'],
16528
16530
  layout: { visibility: 'visible' },
16529
16531
  paint: {
16530
- 'fill-color': '#a6480b',
16532
+ 'fill-color': '#bc3a3a',
16531
16533
  'fill-outline-color': '#cfcdca',
16532
16534
  'fill-opacity': 0.9,
16533
16535
  'fill-antialias': false,
@@ -16543,7 +16545,7 @@ var oceanic_next = {
16543
16545
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
16544
16546
  layout: { 'line-cap': 'round', 'line-join': 'round' },
16545
16547
  paint: {
16546
- 'line-color': '#d65d0e',
16548
+ 'line-color': '#CD5C5C',
16547
16549
  'line-opacity': 1,
16548
16550
  'line-width': {
16549
16551
  base: 1.2,
@@ -16570,7 +16572,7 @@ var oceanic_next = {
16570
16572
  ],
16571
16573
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16572
16574
  paint: {
16573
- 'line-color': '#d65d0e',
16575
+ 'line-color': '#CD5C5C',
16574
16576
  'line-opacity': 1,
16575
16577
  'line-width': {
16576
16578
  base: 1.2,
@@ -16596,7 +16598,7 @@ var oceanic_next = {
16596
16598
  ],
16597
16599
  layout: { 'line-cap': 'round', 'line-join': 'round' },
16598
16600
  paint: {
16599
- 'line-color': 'rgba(214,93,14,0.8)',
16601
+ 'line-color': 'rgba(205,92,92,0.8)',
16600
16602
  'line-opacity': {
16601
16603
  stops: [
16602
16604
  [12, 0],
@@ -16627,7 +16629,7 @@ var oceanic_next = {
16627
16629
  ],
16628
16630
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16629
16631
  paint: {
16630
- 'line-color': '#d65d0e',
16632
+ 'line-color': '#CD5C5C',
16631
16633
  'line-opacity': 1,
16632
16634
  'line-width': {
16633
16635
  base: 1.2,
@@ -16648,7 +16650,7 @@ var oceanic_next = {
16648
16650
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'primary']],
16649
16651
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16650
16652
  paint: {
16651
- 'line-color': '#d65d0e',
16653
+ 'line-color': '#CD5C5C',
16652
16654
  'line-opacity': {
16653
16655
  stops: [
16654
16656
  [7, 0],
@@ -16676,7 +16678,7 @@ var oceanic_next = {
16676
16678
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'trunk']],
16677
16679
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16678
16680
  paint: {
16679
- 'line-color': '#d65d0e',
16681
+ 'line-color': '#CD5C5C',
16680
16682
  'line-opacity': {
16681
16683
  stops: [
16682
16684
  [5, 0],
@@ -16704,7 +16706,7 @@ var oceanic_next = {
16704
16706
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway']],
16705
16707
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16706
16708
  paint: {
16707
- 'line-color': '#d65d0e',
16709
+ 'line-color': '#CD5C5C',
16708
16710
  'line-width': {
16709
16711
  base: 1.2,
16710
16712
  stops: [
@@ -16735,7 +16737,7 @@ var oceanic_next = {
16735
16737
  ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'path']],
16736
16738
  ],
16737
16739
  paint: {
16738
- 'line-color': '#b48ead',
16740
+ 'line-color': '#FFC0CB',
16739
16741
  'line-dasharray': [1.5, 0.75],
16740
16742
  'line-width': {
16741
16743
  base: 1.2,
@@ -16756,7 +16758,7 @@ var oceanic_next = {
16756
16758
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
16757
16759
  layout: { 'line-cap': 'round', 'line-join': 'round' },
16758
16760
  paint: {
16759
- 'line-color': '#ebdbb2',
16761
+ 'line-color': '#8b5e3c',
16760
16762
  'line-width': {
16761
16763
  base: 1.2,
16762
16764
  stops: [
@@ -16782,7 +16784,7 @@ var oceanic_next = {
16782
16784
  ],
16783
16785
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16784
16786
  paint: {
16785
- 'line-color': '#ebdbb2',
16787
+ 'line-color': '#8B5E3C',
16786
16788
  'line-width': {
16787
16789
  base: 1.2,
16788
16790
  stops: [
@@ -16807,7 +16809,7 @@ var oceanic_next = {
16807
16809
  ],
16808
16810
  layout: { 'line-cap': 'round', 'line-join': 'round' },
16809
16811
  paint: {
16810
- 'line-color': '#f49456',
16812
+ 'line-color': '#e5aaaa',
16811
16813
  'line-opacity': 1,
16812
16814
  'line-width': {
16813
16815
  base: 1.2,
@@ -16832,7 +16834,7 @@ var oceanic_next = {
16832
16834
  ],
16833
16835
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16834
16836
  paint: {
16835
- 'line-color': '#ebdbb2',
16837
+ 'line-color': '#8B5E3C',
16836
16838
  'line-width': {
16837
16839
  base: 1.2,
16838
16840
  stops: [
@@ -16856,7 +16858,7 @@ var oceanic_next = {
16856
16858
  ],
16857
16859
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16858
16860
  paint: {
16859
- 'line-color': '#ebdbb2',
16861
+ 'line-color': '#8B5E3C',
16860
16862
  'line-width': {
16861
16863
  base: 1.2,
16862
16864
  stops: [
@@ -16880,7 +16882,7 @@ var oceanic_next = {
16880
16882
  ],
16881
16883
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16882
16884
  paint: {
16883
- 'line-color': '#ebdbb2',
16885
+ 'line-color': '#8B5E3C',
16884
16886
  'line-width': {
16885
16887
  base: 1.2,
16886
16888
  stops: [
@@ -16905,7 +16907,7 @@ var oceanic_next = {
16905
16907
  ],
16906
16908
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
16907
16909
  paint: {
16908
- 'line-color': '#ebdbb2',
16910
+ 'line-color': '#8b5e3c',
16909
16911
  'line-width': {
16910
16912
  base: 1.2,
16911
16913
  stops: [
@@ -16928,7 +16930,7 @@ var oceanic_next = {
16928
16930
  ['all', ['==', 'class', 'rail'], ['has', 'service']],
16929
16931
  ],
16930
16932
  paint: {
16931
- 'line-color': 'rgba(118,51,8,0.7)',
16933
+ 'line-color': 'rgba(149,46,46,0.7)',
16932
16934
  'line-width': {
16933
16935
  base: 1.4,
16934
16936
  stops: [
@@ -16951,7 +16953,7 @@ var oceanic_next = {
16951
16953
  ],
16952
16954
  layout: { visibility: 'visible' },
16953
16955
  paint: {
16954
- 'line-color': 'rgba(118,51,8,0.7)',
16956
+ 'line-color': 'rgba(149,46,46,0.7)',
16955
16957
  'line-dasharray': [0.2, 8],
16956
16958
  'line-width': {
16957
16959
  base: 1.4,
@@ -16980,7 +16982,7 @@ var oceanic_next = {
16980
16982
  ],
16981
16983
  ],
16982
16984
  paint: {
16983
- 'line-color': '#763308',
16985
+ 'line-color': '#952e2e',
16984
16986
  'line-width': {
16985
16987
  base: 1.4,
16986
16988
  stops: [
@@ -17008,7 +17010,7 @@ var oceanic_next = {
17008
17010
  ],
17009
17011
  ],
17010
17012
  paint: {
17011
- 'line-color': '#763308',
17013
+ 'line-color': '#952e2e',
17012
17014
  'line-dasharray': [0.2, 8],
17013
17015
  'line-width': {
17014
17016
  base: 1.4,
@@ -17029,7 +17031,7 @@ var oceanic_next = {
17029
17031
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
17030
17032
  layout: { 'line-join': 'round' },
17031
17033
  paint: {
17032
- 'line-color': '#d65d0e',
17034
+ 'line-color': '#CD5C5C',
17033
17035
  'line-opacity': 1,
17034
17036
  'line-width': {
17035
17037
  base: 1.2,
@@ -17055,7 +17057,7 @@ var oceanic_next = {
17055
17057
  ],
17056
17058
  layout: { 'line-join': 'round' },
17057
17059
  paint: {
17058
- 'line-color': '#d65d0e',
17060
+ 'line-color': '#CD5C5C',
17059
17061
  'line-opacity': 1,
17060
17062
  'line-width': {
17061
17063
  base: 1.2,
@@ -17077,7 +17079,7 @@ var oceanic_next = {
17077
17079
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
17078
17080
  layout: { 'line-join': 'round' },
17079
17081
  paint: {
17080
- 'line-color': '#d65d0e',
17082
+ 'line-color': '#CD5C5C',
17081
17083
  'line-opacity': 1,
17082
17084
  'line-width': {
17083
17085
  base: 1.2,
@@ -17097,7 +17099,7 @@ var oceanic_next = {
17097
17099
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
17098
17100
  layout: { 'line-join': 'round' },
17099
17101
  paint: {
17100
- 'line-color': '#d65d0e',
17102
+ 'line-color': '#CD5C5C',
17101
17103
  'line-width': {
17102
17104
  base: 1.2,
17103
17105
  stops: [
@@ -17118,7 +17120,7 @@ var oceanic_next = {
17118
17120
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
17119
17121
  layout: { 'line-join': 'round' },
17120
17122
  paint: {
17121
- 'line-color': '#d65d0e',
17123
+ 'line-color': '#CD5C5C',
17122
17124
  'line-width': {
17123
17125
  base: 1.2,
17124
17126
  stops: [
@@ -17142,7 +17144,7 @@ var oceanic_next = {
17142
17144
  ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
17143
17145
  ],
17144
17146
  paint: {
17145
- 'line-color': '#f17626',
17147
+ 'line-color': '#d98383',
17146
17148
  'line-width': {
17147
17149
  base: 1.2,
17148
17150
  stops: [
@@ -17164,7 +17166,7 @@ var oceanic_next = {
17164
17166
  ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
17165
17167
  ],
17166
17168
  paint: {
17167
- 'line-color': '#b48ead',
17169
+ 'line-color': '#FFC0CB',
17168
17170
  'line-width': {
17169
17171
  base: 1.2,
17170
17172
  stops: [
@@ -17184,7 +17186,7 @@ var oceanic_next = {
17184
17186
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
17185
17187
  layout: { 'line-join': 'round' },
17186
17188
  paint: {
17187
- 'line-color': '#ebdbb2',
17189
+ 'line-color': '#8b5e3c',
17188
17190
  'line-width': {
17189
17191
  base: 1.2,
17190
17192
  stops: [
@@ -17209,7 +17211,7 @@ var oceanic_next = {
17209
17211
  ],
17210
17212
  layout: { 'line-join': 'round' },
17211
17213
  paint: {
17212
- 'line-color': '#ebdbb2',
17214
+ 'line-color': '#8B5E3C',
17213
17215
  'line-width': {
17214
17216
  base: 1.2,
17215
17217
  stops: [
@@ -17230,7 +17232,7 @@ var oceanic_next = {
17230
17232
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
17231
17233
  layout: { 'line-join': 'round' },
17232
17234
  paint: {
17233
- 'line-color': '#ebdbb2',
17235
+ 'line-color': '#8B5E3C',
17234
17236
  'line-width': {
17235
17237
  base: 1.2,
17236
17238
  stops: [
@@ -17250,7 +17252,7 @@ var oceanic_next = {
17250
17252
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
17251
17253
  layout: { 'line-join': 'round' },
17252
17254
  paint: {
17253
- 'line-color': '#ebdbb2',
17255
+ 'line-color': '#8B5E3C',
17254
17256
  'line-width': {
17255
17257
  base: 1.2,
17256
17258
  stops: [
@@ -17270,7 +17272,7 @@ var oceanic_next = {
17270
17272
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
17271
17273
  layout: { 'line-join': 'round' },
17272
17274
  paint: {
17273
- 'line-color': '#ebdbb2',
17275
+ 'line-color': '#8b5e3c',
17274
17276
  'line-width': {
17275
17277
  base: 1.2,
17276
17278
  stops: [
@@ -17289,7 +17291,7 @@ var oceanic_next = {
17289
17291
  'source-layer': 'transportation',
17290
17292
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
17291
17293
  paint: {
17292
- 'line-color': '#763308',
17294
+ 'line-color': '#952e2e',
17293
17295
  'line-width': {
17294
17296
  base: 1.4,
17295
17297
  stops: [
@@ -17308,7 +17310,7 @@ var oceanic_next = {
17308
17310
  'source-layer': 'transportation',
17309
17311
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
17310
17312
  paint: {
17311
- 'line-color': '#763308',
17313
+ 'line-color': '#952e2e',
17312
17314
  'line-dasharray': [0.2, 8],
17313
17315
  'line-width': {
17314
17316
  base: 1.4,
@@ -17328,7 +17330,7 @@ var oceanic_next = {
17328
17330
  filter: ['all', ['in', 'admin_level', 4, 6, 8], ['!=', 'maritime', 1]],
17329
17331
  layout: { 'line-join': 'round' },
17330
17332
  paint: {
17331
- 'line-color': '#8fbcbb',
17333
+ 'line-color': '#A0522D',
17332
17334
  'line-dasharray': [3, 1, 1, 1],
17333
17335
  'line-width': {
17334
17336
  base: 1.4,
@@ -17348,7 +17350,7 @@ var oceanic_next = {
17348
17350
  filter: ['all', ['==', 'admin_level', 2], ['!=', 'maritime', 1]],
17349
17351
  layout: { 'line-cap': 'round', 'line-join': 'round' },
17350
17352
  paint: {
17351
- 'line-color': '#8fbcbb',
17353
+ 'line-color': '#A0522D',
17352
17354
  'line-width': {
17353
17355
  base: 1,
17354
17356
  stops: [
@@ -17368,7 +17370,7 @@ var oceanic_next = {
17368
17370
  filter: ['all', ['in', 'admin_level', 2, 4], ['==', 'maritime', 1]],
17369
17371
  layout: { 'line-cap': 'round', 'line-join': 'round' },
17370
17372
  paint: {
17371
- 'line-color': '#8fbcbb',
17373
+ 'line-color': '#1E90FF',
17372
17374
  'line-width': {
17373
17375
  base: 1,
17374
17376
  stops: [
@@ -18385,9 +18387,9 @@ var oceanic_next = {
18385
18387
  ],
18386
18388
  };
18387
18389
 
18388
- var solarized = {
18390
+ var GruvboxStyle = {
18389
18391
  version: 8,
18390
- name: 'Solarized',
18392
+ name: 'Gruvbox',
18391
18393
  center: [8.542, 47.372],
18392
18394
  zoom: 11.6,
18393
18395
  bearing: 0,
@@ -18401,7 +18403,7 @@ var solarized = {
18401
18403
  sprite: config.sprite,
18402
18404
  glyphs: config.glyphs,
18403
18405
  layers: [
18404
- { id: 'background', type: 'background', paint: { 'background-color': '#073642' } },
18406
+ { id: 'background', type: 'background', paint: { 'background-color': '#282822' } },
18405
18407
  {
18406
18408
  id: 'landcover-glacier',
18407
18409
  type: 'fill',
@@ -18411,7 +18413,7 @@ var solarized = {
18411
18413
  filter: ['==', 'subclass', 'glacier'],
18412
18414
  layout: { visibility: 'visible' },
18413
18415
  paint: {
18414
- 'fill-color': '#2aa198',
18416
+ 'fill-color': '#83a598',
18415
18417
  'fill-opacity': {
18416
18418
  base: 1,
18417
18419
  stops: [
@@ -18428,7 +18430,7 @@ var solarized = {
18428
18430
  source: 'openmaptiles',
18429
18431
  'source-layer': 'landuse',
18430
18432
  filter: ['==', 'class', 'residential'],
18431
- paint: { 'fill-color': '#657b83' },
18433
+ paint: { 'fill-color': '#b8bb26' },
18432
18434
  },
18433
18435
  {
18434
18436
  id: 'landuse-commercial',
@@ -18437,7 +18439,7 @@ var solarized = {
18437
18439
  source: 'openmaptiles',
18438
18440
  'source-layer': 'landuse',
18439
18441
  filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'commercial']],
18440
- paint: { 'fill-color': '#74888f' },
18442
+ paint: { 'fill-color': '#bfc23c' },
18441
18443
  },
18442
18444
  {
18443
18445
  id: 'landuse-industrial',
@@ -18446,7 +18448,7 @@ var solarized = {
18446
18448
  source: 'openmaptiles',
18447
18449
  'source-layer': 'landuse',
18448
18450
  filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'industrial']],
18449
- paint: { 'fill-color': '#84959c' },
18451
+ paint: { 'fill-color': '#c6c951' },
18450
18452
  },
18451
18453
  {
18452
18454
  id: 'park',
@@ -18456,7 +18458,7 @@ var solarized = {
18456
18458
  'source-layer': 'park',
18457
18459
  filter: ['==', '$type', 'Polygon'],
18458
18460
  paint: {
18459
- 'fill-color': '#859900',
18461
+ 'fill-color': '#b8bb26',
18460
18462
  'fill-opacity': {
18461
18463
  base: 1.8,
18462
18464
  stops: [
@@ -18474,7 +18476,7 @@ var solarized = {
18474
18476
  'source-layer': 'park',
18475
18477
  filter: ['==', '$type', 'Polygon'],
18476
18478
  layout: {},
18477
- paint: { 'line-color': 'rgba(133,153,0,0.6)', 'line-dasharray': [3, 3] },
18479
+ paint: { 'line-color': 'rgba(184,187,38,0.6)', 'line-dasharray': [3, 3] },
18478
18480
  },
18479
18481
  {
18480
18482
  id: 'landuse-cemetery',
@@ -18483,7 +18485,7 @@ var solarized = {
18483
18485
  source: 'openmaptiles',
18484
18486
  'source-layer': 'landuse',
18485
18487
  filter: ['==', 'class', 'cemetery'],
18486
- paint: { 'fill-color': '#f2ff99' },
18488
+ paint: { 'fill-color': '#eceeaa' },
18487
18489
  },
18488
18490
  {
18489
18491
  id: 'landuse-hospital',
@@ -18492,7 +18494,7 @@ var solarized = {
18492
18494
  source: 'openmaptiles',
18493
18495
  'source-layer': 'landuse',
18494
18496
  filter: ['==', 'class', 'hospital'],
18495
- paint: { 'fill-color': '#d30102' },
18497
+ paint: { 'fill-color': '#fe8019' },
18496
18498
  },
18497
18499
  {
18498
18500
  id: 'landuse-school',
@@ -18501,7 +18503,7 @@ var solarized = {
18501
18503
  source: 'openmaptiles',
18502
18504
  'source-layer': 'landuse',
18503
18505
  filter: ['==', 'class', 'school'],
18504
- paint: { 'fill-color': 'rgba(211,1,2,0.8)' },
18506
+ paint: { 'fill-color': 'rgba(254,128,25,0.8)' },
18505
18507
  },
18506
18508
  {
18507
18509
  id: 'landuse-railway',
@@ -18510,7 +18512,7 @@ var solarized = {
18510
18512
  source: 'openmaptiles',
18511
18513
  'source-layer': 'landuse',
18512
18514
  filter: ['==', 'class', 'railway'],
18513
- paint: { 'fill-color': 'rgba(58,63,144,0.4)' },
18515
+ paint: { 'fill-color': 'rgba(118,51,8,0.4)' },
18514
18516
  },
18515
18517
  {
18516
18518
  id: 'landcover-wood',
@@ -18520,7 +18522,7 @@ var solarized = {
18520
18522
  'source-layer': 'landcover',
18521
18523
  filter: ['==', 'class', 'wood'],
18522
18524
  paint: {
18523
- 'fill-color': '#2aa198',
18525
+ 'fill-color': '#83a598',
18524
18526
  'fill-opacity': 0.1,
18525
18527
  'fill-outline-color': 'hsla(0, 0%, 0%, 0.03)',
18526
18528
  'fill-antialias': {
@@ -18539,7 +18541,7 @@ var solarized = {
18539
18541
  source: 'openmaptiles',
18540
18542
  'source-layer': 'landcover',
18541
18543
  filter: ['==', 'class', 'grass'],
18542
- paint: { 'fill-color': '#859900', 'fill-opacity': 1 },
18544
+ paint: { 'fill-color': '#b8bb26', 'fill-opacity': 1 },
18543
18545
  },
18544
18546
  {
18545
18547
  id: 'landcover-grass-park',
@@ -18548,7 +18550,7 @@ var solarized = {
18548
18550
  source: 'openmaptiles',
18549
18551
  'source-layer': 'park',
18550
18552
  filter: ['==', 'class', 'public_park'],
18551
- paint: { 'fill-color': '#859900', 'fill-opacity': 0.8 },
18553
+ paint: { 'fill-color': '#b8bb26', 'fill-opacity': 0.8 },
18552
18554
  },
18553
18555
  {
18554
18556
  id: 'waterway-other',
@@ -18559,7 +18561,7 @@ var solarized = {
18559
18561
  filter: ['!in', 'class', 'canal', 'river', 'stream'],
18560
18562
  layout: { 'line-cap': 'round' },
18561
18563
  paint: {
18562
- 'line-color': '#268bd2',
18564
+ 'line-color': '#83a598',
18563
18565
  'line-width': {
18564
18566
  base: 1.3,
18565
18567
  stops: [
@@ -18578,7 +18580,7 @@ var solarized = {
18578
18580
  filter: ['in', 'class', 'canal', 'stream'],
18579
18581
  layout: { 'line-cap': 'round' },
18580
18582
  paint: {
18581
- 'line-color': '#268bd2',
18583
+ 'line-color': '#83a598',
18582
18584
  'line-width': {
18583
18585
  base: 1.3,
18584
18586
  stops: [
@@ -18597,7 +18599,7 @@ var solarized = {
18597
18599
  filter: ['==', 'class', 'river'],
18598
18600
  layout: { 'line-cap': 'round' },
18599
18601
  paint: {
18600
- 'line-color': '#268bd2',
18602
+ 'line-color': '#83a598',
18601
18603
  'line-width': {
18602
18604
  base: 1.2,
18603
18605
  stops: [
@@ -18618,7 +18620,7 @@ var solarized = {
18618
18620
  layout: { visibility: 'visible' },
18619
18621
  paint: {
18620
18622
  'fill-opacity': 1,
18621
- 'fill-color': '#268bd2',
18623
+ 'fill-color': '#83a598',
18622
18624
  'fill-translate': {
18623
18625
  base: 1,
18624
18626
  stops: [
@@ -18635,7 +18637,7 @@ var solarized = {
18635
18637
  source: 'openmaptiles',
18636
18638
  'source-layer': 'water',
18637
18639
  layout: { visibility: 'visible' },
18638
- paint: { 'fill-color': '#1a6091' },
18640
+ paint: { 'fill-color': '#5c7f72' },
18639
18641
  },
18640
18642
  {
18641
18643
  id: 'water-pattern',
@@ -18655,7 +18657,7 @@ var solarized = {
18655
18657
  filter: ['==', 'subclass', 'ice_shelf'],
18656
18658
  layout: { visibility: 'visible' },
18657
18659
  paint: {
18658
- 'fill-color': '#2aa198',
18660
+ 'fill-color': '#83a598',
18659
18661
  'fill-opacity': {
18660
18662
  base: 1,
18661
18663
  stops: [
@@ -18671,7 +18673,7 @@ var solarized = {
18671
18673
  metadata: { 'mapbox:group': '1444849364238.8171' },
18672
18674
  source: 'openmaptiles',
18673
18675
  'source-layer': 'building',
18674
- paint: { 'fill-color': '#eee8d5', 'fill-antialias': true },
18676
+ paint: { 'fill-color': '#928374', 'fill-antialias': true },
18675
18677
  },
18676
18678
  {
18677
18679
  id: 'building-top',
@@ -18689,7 +18691,7 @@ var solarized = {
18689
18691
  ],
18690
18692
  },
18691
18693
  'fill-outline-color': '#dfdbd7',
18692
- 'fill-color': '#fdfcf9',
18694
+ 'fill-color': '#a89c91',
18693
18695
  'fill-opacity': {
18694
18696
  base: 1,
18695
18697
  stops: [
@@ -18708,7 +18710,7 @@ var solarized = {
18708
18710
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
18709
18711
  layout: { 'line-join': 'round' },
18710
18712
  paint: {
18711
- 'line-color': '#6c71c4',
18713
+ 'line-color': '#d65d0e',
18712
18714
  'line-dasharray': [0.5, 0.25],
18713
18715
  'line-width': {
18714
18716
  base: 1.2,
@@ -18729,7 +18731,7 @@ var solarized = {
18729
18731
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor']],
18730
18732
  layout: { 'line-join': 'round' },
18731
18733
  paint: {
18732
- 'line-color': '#6c71c4',
18734
+ 'line-color': '#d65d0e',
18733
18735
  'line-opacity': {
18734
18736
  stops: [
18735
18737
  [12, 0],
@@ -18756,7 +18758,7 @@ var solarized = {
18756
18758
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
18757
18759
  layout: { 'line-join': 'round' },
18758
18760
  paint: {
18759
- 'line-color': '#d33682',
18761
+ 'line-color': '#d65d0e',
18760
18762
  'line-opacity': 1,
18761
18763
  'line-width': {
18762
18764
  base: 1.2,
@@ -18776,7 +18778,7 @@ var solarized = {
18776
18778
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
18777
18779
  layout: { 'line-join': 'round' },
18778
18780
  paint: {
18779
- 'line-color': '#d33682',
18781
+ 'line-color': '#d65d0e',
18780
18782
  'line-width': {
18781
18783
  base: 1.2,
18782
18784
  stops: [
@@ -18797,7 +18799,7 @@ var solarized = {
18797
18799
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
18798
18800
  layout: { 'line-join': 'round', visibility: 'visible' },
18799
18801
  paint: {
18800
- 'line-color': '#d33682',
18802
+ 'line-color': '#d65d0e',
18801
18803
  'line-dasharray': [0.5, 0.25],
18802
18804
  'line-width': {
18803
18805
  base: 1.2,
@@ -18822,7 +18824,7 @@ var solarized = {
18822
18824
  ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'path']],
18823
18825
  ],
18824
18826
  paint: {
18825
- 'line-color': '#9094d3',
18827
+ 'line-color': '#f17626',
18826
18828
  'line-dasharray': [1.5, 0.75],
18827
18829
  'line-width': {
18828
18830
  base: 1.2,
@@ -18842,7 +18844,7 @@ var solarized = {
18842
18844
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
18843
18845
  layout: { 'line-join': 'round' },
18844
18846
  paint: {
18845
- 'line-color': '#9094d3',
18847
+ 'line-color': '#f17626',
18846
18848
  'line-width': {
18847
18849
  base: 1.2,
18848
18850
  stops: [
@@ -18862,7 +18864,7 @@ var solarized = {
18862
18864
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor_road']],
18863
18865
  layout: { 'line-join': 'round' },
18864
18866
  paint: {
18865
- 'line-color': '#9094d3',
18867
+ 'line-color': '#f17626',
18866
18868
  'line-opacity': 1,
18867
18869
  'line-width': {
18868
18870
  base: 1.2,
@@ -18883,7 +18885,7 @@ var solarized = {
18883
18885
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
18884
18886
  layout: { 'line-join': 'round' },
18885
18887
  paint: {
18886
- 'line-color': '#a3a6da',
18888
+ 'line-color': '#f2853e',
18887
18889
  'line-width': {
18888
18890
  base: 1.2,
18889
18891
  stops: [
@@ -18903,7 +18905,7 @@ var solarized = {
18903
18905
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
18904
18906
  layout: { 'line-join': 'round' },
18905
18907
  paint: {
18906
- 'line-color': '#6c71c4',
18908
+ 'line-color': '#d65d0e',
18907
18909
  'line-width': {
18908
18910
  base: 1.2,
18909
18911
  stops: [
@@ -18923,7 +18925,7 @@ var solarized = {
18923
18925
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
18924
18926
  layout: { 'line-join': 'round', visibility: 'visible' },
18925
18927
  paint: {
18926
- 'line-color': 'rgba(108,113,196,0.8)',
18928
+ 'line-color': 'rgba(235,219,178,0.8)',
18927
18929
  'line-width': {
18928
18930
  base: 1.2,
18929
18931
  stops: [
@@ -18942,7 +18944,7 @@ var solarized = {
18942
18944
  'source-layer': 'transportation',
18943
18945
  filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'rail']],
18944
18946
  paint: {
18945
- 'line-color': '#3a3f90',
18947
+ 'line-color': '#763308',
18946
18948
  'line-width': {
18947
18949
  base: 1.4,
18948
18950
  stops: [
@@ -18964,7 +18966,7 @@ var solarized = {
18964
18966
  filter: ['all', ['in', 'class', 'taxiway']],
18965
18967
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
18966
18968
  paint: {
18967
- 'line-color': '#3a3f90',
18969
+ 'line-color': '#763308',
18968
18970
  'line-width': {
18969
18971
  base: 1.5,
18970
18972
  stops: [
@@ -18985,7 +18987,7 @@ var solarized = {
18985
18987
  filter: ['all', ['in', 'class', 'runway']],
18986
18988
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
18987
18989
  paint: {
18988
- 'line-color': '#3a3f90',
18990
+ 'line-color': '#763308',
18989
18991
  'line-width': {
18990
18992
  base: 1.5,
18991
18993
  stops: [
@@ -19013,7 +19015,7 @@ var solarized = {
19013
19015
  [14, 1],
19014
19016
  ],
19015
19017
  },
19016
- 'fill-color': 'rgba(108,113,196,0.5)',
19018
+ 'fill-color': 'rgba(214,93,14,0.5)',
19017
19019
  },
19018
19020
  },
19019
19021
  {
@@ -19026,7 +19028,7 @@ var solarized = {
19026
19028
  filter: ['all', ['in', 'class', 'taxiway'], ['==', '$type', 'LineString']],
19027
19029
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19028
19030
  paint: {
19029
- 'line-color': '#a3a6da',
19031
+ 'line-color': '#f2853e',
19030
19032
  'line-width': {
19031
19033
  base: 1.5,
19032
19034
  stops: [
@@ -19053,7 +19055,7 @@ var solarized = {
19053
19055
  filter: ['all', ['in', 'class', 'runway'], ['==', '$type', 'LineString']],
19054
19056
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19055
19057
  paint: {
19056
- 'line-color': '#a3a6da',
19058
+ 'line-color': '#f2853e',
19057
19059
  'line-width': {
19058
19060
  base: 1.5,
19059
19061
  stops: [
@@ -19079,7 +19081,7 @@ var solarized = {
19079
19081
  filter: ['==', '$type', 'Polygon'],
19080
19082
  layout: { visibility: 'visible' },
19081
19083
  paint: {
19082
- 'fill-color': '#484fb5',
19084
+ 'fill-color': '#a6480b',
19083
19085
  'fill-outline-color': '#cfcdca',
19084
19086
  'fill-opacity': 0.9,
19085
19087
  'fill-antialias': false,
@@ -19095,7 +19097,7 @@ var solarized = {
19095
19097
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
19096
19098
  layout: { 'line-cap': 'round', 'line-join': 'round' },
19097
19099
  paint: {
19098
- 'line-color': '#d33682',
19100
+ 'line-color': '#d65d0e',
19099
19101
  'line-opacity': 1,
19100
19102
  'line-width': {
19101
19103
  base: 1.2,
@@ -19122,7 +19124,7 @@ var solarized = {
19122
19124
  ],
19123
19125
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19124
19126
  paint: {
19125
- 'line-color': '#d33682',
19127
+ 'line-color': '#d65d0e',
19126
19128
  'line-opacity': 1,
19127
19129
  'line-width': {
19128
19130
  base: 1.2,
@@ -19148,7 +19150,7 @@ var solarized = {
19148
19150
  ],
19149
19151
  layout: { 'line-cap': 'round', 'line-join': 'round' },
19150
19152
  paint: {
19151
- 'line-color': 'rgba(108,113,196,0.8)',
19153
+ 'line-color': 'rgba(214,93,14,0.8)',
19152
19154
  'line-opacity': {
19153
19155
  stops: [
19154
19156
  [12, 0],
@@ -19179,7 +19181,7 @@ var solarized = {
19179
19181
  ],
19180
19182
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19181
19183
  paint: {
19182
- 'line-color': '#d33682',
19184
+ 'line-color': '#d65d0e',
19183
19185
  'line-opacity': 1,
19184
19186
  'line-width': {
19185
19187
  base: 1.2,
@@ -19200,7 +19202,7 @@ var solarized = {
19200
19202
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'primary']],
19201
19203
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19202
19204
  paint: {
19203
- 'line-color': '#d33682',
19205
+ 'line-color': '#d65d0e',
19204
19206
  'line-opacity': {
19205
19207
  stops: [
19206
19208
  [7, 0],
@@ -19228,7 +19230,7 @@ var solarized = {
19228
19230
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'trunk']],
19229
19231
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19230
19232
  paint: {
19231
- 'line-color': '#d33682',
19233
+ 'line-color': '#d65d0e',
19232
19234
  'line-opacity': {
19233
19235
  stops: [
19234
19236
  [5, 0],
@@ -19256,7 +19258,7 @@ var solarized = {
19256
19258
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway']],
19257
19259
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19258
19260
  paint: {
19259
- 'line-color': '#d33682',
19261
+ 'line-color': '#d65d0e',
19260
19262
  'line-width': {
19261
19263
  base: 1.2,
19262
19264
  stops: [
@@ -19287,7 +19289,7 @@ var solarized = {
19287
19289
  ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'path']],
19288
19290
  ],
19289
19291
  paint: {
19290
- 'line-color': '#cb4b16',
19292
+ 'line-color': '#fe8019',
19291
19293
  'line-dasharray': [1.5, 0.75],
19292
19294
  'line-width': {
19293
19295
  base: 1.2,
@@ -19308,7 +19310,7 @@ var solarized = {
19308
19310
  filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
19309
19311
  layout: { 'line-cap': 'round', 'line-join': 'round' },
19310
19312
  paint: {
19311
- 'line-color': '#6c71c4',
19313
+ 'line-color': '#ebdbb2',
19312
19314
  'line-width': {
19313
19315
  base: 1.2,
19314
19316
  stops: [
@@ -19334,7 +19336,7 @@ var solarized = {
19334
19336
  ],
19335
19337
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19336
19338
  paint: {
19337
- 'line-color': '#6c71c4',
19339
+ 'line-color': '#ebdbb2',
19338
19340
  'line-width': {
19339
19341
  base: 1.2,
19340
19342
  stops: [
@@ -19359,7 +19361,7 @@ var solarized = {
19359
19361
  ],
19360
19362
  layout: { 'line-cap': 'round', 'line-join': 'round' },
19361
19363
  paint: {
19362
- 'line-color': '#e58ab6',
19364
+ 'line-color': '#f49456',
19363
19365
  'line-opacity': 1,
19364
19366
  'line-width': {
19365
19367
  base: 1.2,
@@ -19384,7 +19386,7 @@ var solarized = {
19384
19386
  ],
19385
19387
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19386
19388
  paint: {
19387
- 'line-color': '#6c71c4',
19389
+ 'line-color': '#ebdbb2',
19388
19390
  'line-width': {
19389
19391
  base: 1.2,
19390
19392
  stops: [
@@ -19408,7 +19410,7 @@ var solarized = {
19408
19410
  ],
19409
19411
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19410
19412
  paint: {
19411
- 'line-color': '#6c71c4',
19413
+ 'line-color': '#ebdbb2',
19412
19414
  'line-width': {
19413
19415
  base: 1.2,
19414
19416
  stops: [
@@ -19432,7 +19434,7 @@ var solarized = {
19432
19434
  ],
19433
19435
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19434
19436
  paint: {
19435
- 'line-color': '#6c71c4',
19437
+ 'line-color': '#ebdbb2',
19436
19438
  'line-width': {
19437
19439
  base: 1.2,
19438
19440
  stops: [
@@ -19457,7 +19459,7 @@ var solarized = {
19457
19459
  ],
19458
19460
  layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
19459
19461
  paint: {
19460
- 'line-color': '#6c71c4',
19462
+ 'line-color': '#ebdbb2',
19461
19463
  'line-width': {
19462
19464
  base: 1.2,
19463
19465
  stops: [
@@ -19480,7 +19482,7 @@ var solarized = {
19480
19482
  ['all', ['==', 'class', 'rail'], ['has', 'service']],
19481
19483
  ],
19482
19484
  paint: {
19483
- 'line-color': 'rgba(58,63,144,0.7)',
19485
+ 'line-color': 'rgba(118,51,8,0.7)',
19484
19486
  'line-width': {
19485
19487
  base: 1.4,
19486
19488
  stops: [
@@ -19503,7 +19505,7 @@ var solarized = {
19503
19505
  ],
19504
19506
  layout: { visibility: 'visible' },
19505
19507
  paint: {
19506
- 'line-color': 'rgba(58,63,144,0.7)',
19508
+ 'line-color': 'rgba(118,51,8,0.7)',
19507
19509
  'line-dasharray': [0.2, 8],
19508
19510
  'line-width': {
19509
19511
  base: 1.4,
@@ -19532,7 +19534,7 @@ var solarized = {
19532
19534
  ],
19533
19535
  ],
19534
19536
  paint: {
19535
- 'line-color': '#3a3f90',
19537
+ 'line-color': '#763308',
19536
19538
  'line-width': {
19537
19539
  base: 1.4,
19538
19540
  stops: [
@@ -19560,7 +19562,7 @@ var solarized = {
19560
19562
  ],
19561
19563
  ],
19562
19564
  paint: {
19563
- 'line-color': '#3a3f90',
19565
+ 'line-color': '#763308',
19564
19566
  'line-dasharray': [0.2, 8],
19565
19567
  'line-width': {
19566
19568
  base: 1.4,
@@ -19581,7 +19583,7 @@ var solarized = {
19581
19583
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
19582
19584
  layout: { 'line-join': 'round' },
19583
19585
  paint: {
19584
- 'line-color': '#d33682',
19586
+ 'line-color': '#d65d0e',
19585
19587
  'line-opacity': 1,
19586
19588
  'line-width': {
19587
19589
  base: 1.2,
@@ -19607,7 +19609,7 @@ var solarized = {
19607
19609
  ],
19608
19610
  layout: { 'line-join': 'round' },
19609
19611
  paint: {
19610
- 'line-color': '#d33682',
19612
+ 'line-color': '#d65d0e',
19611
19613
  'line-opacity': 1,
19612
19614
  'line-width': {
19613
19615
  base: 1.2,
@@ -19629,7 +19631,7 @@ var solarized = {
19629
19631
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
19630
19632
  layout: { 'line-join': 'round' },
19631
19633
  paint: {
19632
- 'line-color': '#d33682',
19634
+ 'line-color': '#d65d0e',
19633
19635
  'line-opacity': 1,
19634
19636
  'line-width': {
19635
19637
  base: 1.2,
@@ -19649,7 +19651,7 @@ var solarized = {
19649
19651
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
19650
19652
  layout: { 'line-join': 'round' },
19651
19653
  paint: {
19652
- 'line-color': '#d33682',
19654
+ 'line-color': '#d65d0e',
19653
19655
  'line-width': {
19654
19656
  base: 1.2,
19655
19657
  stops: [
@@ -19670,7 +19672,7 @@ var solarized = {
19670
19672
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
19671
19673
  layout: { 'line-join': 'round' },
19672
19674
  paint: {
19673
- 'line-color': '#d33682',
19675
+ 'line-color': '#d65d0e',
19674
19676
  'line-width': {
19675
19677
  base: 1.2,
19676
19678
  stops: [
@@ -19694,7 +19696,7 @@ var solarized = {
19694
19696
  ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
19695
19697
  ],
19696
19698
  paint: {
19697
- 'line-color': '#9094d3',
19699
+ 'line-color': '#f17626',
19698
19700
  'line-width': {
19699
19701
  base: 1.2,
19700
19702
  stops: [
@@ -19716,7 +19718,7 @@ var solarized = {
19716
19718
  ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
19717
19719
  ],
19718
19720
  paint: {
19719
- 'line-color': '#cb4b16',
19721
+ 'line-color': '#fe8019',
19720
19722
  'line-width': {
19721
19723
  base: 1.2,
19722
19724
  stops: [
@@ -19736,7 +19738,7 @@ var solarized = {
19736
19738
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
19737
19739
  layout: { 'line-join': 'round' },
19738
19740
  paint: {
19739
- 'line-color': '#6c71c4',
19741
+ 'line-color': '#ebdbb2',
19740
19742
  'line-width': {
19741
19743
  base: 1.2,
19742
19744
  stops: [
@@ -19761,7 +19763,7 @@ var solarized = {
19761
19763
  ],
19762
19764
  layout: { 'line-join': 'round' },
19763
19765
  paint: {
19764
- 'line-color': '#6c71c4',
19766
+ 'line-color': '#ebdbb2',
19765
19767
  'line-width': {
19766
19768
  base: 1.2,
19767
19769
  stops: [
@@ -19782,7 +19784,7 @@ var solarized = {
19782
19784
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
19783
19785
  layout: { 'line-join': 'round' },
19784
19786
  paint: {
19785
- 'line-color': '#6c71c4',
19787
+ 'line-color': '#ebdbb2',
19786
19788
  'line-width': {
19787
19789
  base: 1.2,
19788
19790
  stops: [
@@ -19802,7 +19804,7 @@ var solarized = {
19802
19804
  filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
19803
19805
  layout: { 'line-join': 'round' },
19804
19806
  paint: {
19805
- 'line-color': '#6c71c4',
19807
+ 'line-color': '#ebdbb2',
19806
19808
  'line-width': {
19807
19809
  base: 1.2,
19808
19810
  stops: [
@@ -19822,7 +19824,7 @@ var solarized = {
19822
19824
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
19823
19825
  layout: { 'line-join': 'round' },
19824
19826
  paint: {
19825
- 'line-color': '#6c71c4',
19827
+ 'line-color': '#ebdbb2',
19826
19828
  'line-width': {
19827
19829
  base: 1.2,
19828
19830
  stops: [
@@ -19841,7 +19843,7 @@ var solarized = {
19841
19843
  'source-layer': 'transportation',
19842
19844
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
19843
19845
  paint: {
19844
- 'line-color': '#3a3f90',
19846
+ 'line-color': '#763308',
19845
19847
  'line-width': {
19846
19848
  base: 1.4,
19847
19849
  stops: [
@@ -19860,7 +19862,7 @@ var solarized = {
19860
19862
  'source-layer': 'transportation',
19861
19863
  filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
19862
19864
  paint: {
19863
- 'line-color': '#3a3f90',
19865
+ 'line-color': '#763308',
19864
19866
  'line-dasharray': [0.2, 8],
19865
19867
  'line-width': {
19866
19868
  base: 1.4,
@@ -19880,7 +19882,7 @@ var solarized = {
19880
19882
  filter: ['all', ['in', 'admin_level', 4, 6, 8], ['!=', 'maritime', 1]],
19881
19883
  layout: { 'line-join': 'round' },
19882
19884
  paint: {
19883
- 'line-color': '#268bd2',
19885
+ 'line-color': '#fb4934',
19884
19886
  'line-dasharray': [3, 1, 1, 1],
19885
19887
  'line-width': {
19886
19888
  base: 1.4,
@@ -19900,7 +19902,7 @@ var solarized = {
19900
19902
  filter: ['all', ['==', 'admin_level', 2], ['!=', 'maritime', 1]],
19901
19903
  layout: { 'line-cap': 'round', 'line-join': 'round' },
19902
19904
  paint: {
19903
- 'line-color': '#268bd2',
19905
+ 'line-color': '#fb4934',
19904
19906
  'line-width': {
19905
19907
  base: 1,
19906
19908
  stops: [
@@ -19920,7 +19922,7 @@ var solarized = {
19920
19922
  filter: ['all', ['in', 'admin_level', 2, 4], ['==', 'maritime', 1]],
19921
19923
  layout: { 'line-cap': 'round', 'line-join': 'round' },
19922
19924
  paint: {
19923
- 'line-color': '#268bd2',
19925
+ 'line-color': '#83a598',
19924
19926
  'line-width': {
19925
19927
  base: 1,
19926
19928
  stops: [
@@ -20937,6 +20939,37 @@ var solarized = {
20937
20939
  ],
20938
20940
  };
20939
20941
 
20942
+ var defaultStyleThumbnailPath = 'https://mapcomponents.github.io/react-map-components-maplibre/assets/style_thumbnails/';
20943
+ var SelectStyleButton = function (props) {
20944
+ var layerContext = React__default["default"].useContext(LayerContext);
20945
+ var _a = React__default["default"].useState(false), popupOpen = _a[0], setPopupOpen = _a[1];
20946
+ return (React__default["default"].createElement(React__default["default"].Fragment, null,
20947
+ React__default["default"].createElement(material.Button, { variant: "contained", sx: __assign({ marginTop: '10px' }, props.sx), onClick: function () { return setPopupOpen(true); } },
20948
+ React__default["default"].createElement(WallpaperIcon__default["default"], null)),
20949
+ React__default["default"].createElement(SelectStylePopup, { styles: __spreadArray(__spreadArray([], (props.defaultStyles
20950
+ ? [MonokaiStyle, SolarizedStyle, OceanicNextStyle, MedievalKingdomStyle, GruvboxStyle]
20951
+ : []), true), (props.styles || []), true), styleThumbnailPaths: __assign(__assign({}, props === null || props === void 0 ? void 0 : props.styleThumbnailPaths), (props.defaultStyles
20952
+ ? {
20953
+ Monokai: defaultStyleThumbnailPath + 'monokai.png',
20954
+ Gruvbox: defaultStyleThumbnailPath + 'gruvbox.png',
20955
+ 'Oceanic Next': defaultStyleThumbnailPath + 'oceanic_next.png',
20956
+ Solarized: defaultStyleThumbnailPath + 'solarized.png',
20957
+ 'Medieval Kingdom': defaultStyleThumbnailPath + 'medieval_kingdom.png',
20958
+ }
20959
+ : {})), open: popupOpen, setOpen: setPopupOpen, onSelect: function (style) {
20960
+ // Todo: should be possible without clearing bg layers first & setTimeout
20961
+ layerContext.setBackgroundLayers([]);
20962
+ setTimeout(function () {
20963
+ layerContext.updateStyle(style);
20964
+ }, 100);
20965
+ setPopupOpen(false);
20966
+ } })));
20967
+ };
20968
+ SelectStyleButton.defaultProps = {
20969
+ style: [],
20970
+ defaultStyles: true,
20971
+ };
20972
+
20940
20973
  exports.AddLayerButton = AddLayerButton;
20941
20974
  exports.AddLayerPopup = AddLayerPopup;
20942
20975
  exports.ColorPicker = PaintPropsColorPicker;
@@ -20944,7 +20977,7 @@ exports.ConfirmDialog = ConfirmDialog;
20944
20977
  exports.GeoJsonContext = GeoJsonContext;
20945
20978
  exports.GeoJsonLayerForm = GeoJsonLayerForm;
20946
20979
  exports.GeoJsonProvider = GeoJsonProvider;
20947
- exports.GruvboxStyle = gruvbox;
20980
+ exports.GruvboxStyle = GruvboxStyle;
20948
20981
  exports.LayerContext = LayerContext;
20949
20982
  exports.LayerContextProvider = LayerContextProvider;
20950
20983
  exports.LayerList = LayerList;
@@ -20958,7 +20991,7 @@ exports.MapComponentsProvider = MapComponentsProvider;
20958
20991
  exports.MapContext = MapContext;
20959
20992
  exports.MapLibreGlWrapper = MapLibreGlWrapper;
20960
20993
  exports.MapLibreMap = MapLibreMap;
20961
- exports.MedievalKingdomStyle = medieval_kingdom;
20994
+ exports.MedievalKingdomStyle = MedievalKingdomStyle;
20962
20995
  exports.MlBasicComponent = MlBasicComponent;
20963
20996
  exports.MlCenterPosition = MlCenterPosition;
20964
20997
  exports.MlComponentTemplate = MlComponentTemplate;
@@ -20989,8 +21022,8 @@ exports.MlVectorTileLayer = MlVectorTileLayer;
20989
21022
  exports.MlWmsFeatureInfoPopup = MlWmsFeatureInfoPopup;
20990
21023
  exports.MlWmsLayer = MlWmsLayer;
20991
21024
  exports.MlWmsLoader = MlWmsLoader;
20992
- exports.MonokaiStyle = GruvboxStyle;
20993
- exports.OceanicNextStyle = oceanic_next;
21025
+ exports.MonokaiStyle = MonokaiStyle;
21026
+ exports.OceanicNextStyle = OceanicNextStyle;
20994
21027
  exports.PdfContext = PdfContext;
20995
21028
  exports.PdfForm = PdfForm;
20996
21029
  exports.SelectStyleButton = SelectStyleButton;
@@ -20998,7 +21031,7 @@ exports.SelectStylePopup = SelectStylePopup;
20998
21031
  exports.Sidebar = Sidebar;
20999
21032
  exports.SimpleDataContext = SimpleDataContext;
21000
21033
  exports.SimpleDataProvider = SimpleDataProvider;
21001
- exports.SolarizedStyle = solarized;
21034
+ exports.SolarizedStyle = SolarizedStyle;
21002
21035
  exports.TopToolbar = TopToolbar;
21003
21036
  exports.UploadButton = UploadButton;
21004
21037
  exports.WmsLayerForm = WmsLayerForm;