@mapcomponents/react-maplibre 0.1.74 → 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/CHANGELOG.md +11 -0
- package/dist/hooks/useLayer.d.ts +2 -2
- package/dist/index.d.ts +1 -0
- package/dist/index.esm.js +535 -446
- package/dist/index.esm.js.map +1 -1
- package/dist/ui_components/LayerList/LayerList.stories.d.ts +1 -1
- package/dist/ui_components/LayerList/LayerListItemFactory.d.ts +1 -0
- package/dist/ui_components/SelectStyleButton/SelectStyleButton.d.ts +3 -0
- package/dist/ui_components/SelectStyleButton/SelectStylePopup.d.ts +6 -1
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -3469,27 +3469,32 @@ function useLayer(props) {
|
|
|
3469
3469
|
return;
|
|
3470
3470
|
}
|
|
3471
3471
|
initializedRef.current = true;
|
|
3472
|
-
|
|
3473
|
-
(
|
|
3474
|
-
(
|
|
3475
|
-
|
|
3476
|
-
|
|
3477
|
-
|
|
3478
|
-
|
|
3479
|
-
|
|
3480
|
-
|
|
3481
|
-
|
|
3482
|
-
|
|
3483
|
-
|
|
3484
|
-
|
|
3485
|
-
|
|
3486
|
-
|
|
3487
|
-
|
|
3488
|
-
|
|
3489
|
-
|
|
3490
|
-
|
|
3491
|
-
|
|
3492
|
-
|
|
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 || {}
|
|
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
|
|
7695
|
-
var
|
|
7696
|
-
var
|
|
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
|
|
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 =
|
|
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
|
-
!((
|
|
7808
|
-
|
|
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',
|
|
@@ -7813,6 +7824,62 @@ LayerListItem.defaultProps = {
|
|
|
7813
7824
|
showDeleteButton: false,
|
|
7814
7825
|
};
|
|
7815
7826
|
|
|
7827
|
+
function LayerListItemFactory(props) {
|
|
7828
|
+
var _a, _b;
|
|
7829
|
+
var layerContext = useLayerContext();
|
|
7830
|
+
return (React__default["default"].createElement(React__default["default"].Fragment, null,
|
|
7831
|
+
React__default["default"].createElement(MlOrderLayers, { layerIds: ['labels', 'content', 'background'] }),
|
|
7832
|
+
((_a = layerContext === null || layerContext === void 0 ? void 0 : layerContext.backgroundLayers) === null || _a === void 0 ? void 0 : _a.length) > 0 && (React__default["default"].createElement(LayerListItem, { layerComponent: React__default["default"].createElement(MlVectorTileLayer, __assign({}, layerContext.vtLayerConfig, { layers: layerContext.backgroundLayers, mapId: props === null || props === void 0 ? void 0 : props.mapId, insertBeforeLayer: 'order-background' })), setLayerState: function (state) {
|
|
7833
|
+
layerContext.setBackgroundLayers(state === null || state === void 0 ? void 0 : state.layers);
|
|
7834
|
+
}, visible: true, configurable: true, type: "layer", name: "Background" })),
|
|
7835
|
+
props.layers.map(function (layer, idx) {
|
|
7836
|
+
var _a;
|
|
7837
|
+
if (!(layer === null || layer === void 0 ? void 0 : layer.id))
|
|
7838
|
+
return null;
|
|
7839
|
+
switch (layer.type) {
|
|
7840
|
+
case 'geojson':
|
|
7841
|
+
return (React__default["default"].createElement(React__default["default"].Fragment, null,
|
|
7842
|
+
React__default["default"].createElement(LayerListItem, { key: layer.id, name: (layer === null || layer === void 0 ? void 0 : layer.name) || ((_a = layer === null || layer === void 0 ? void 0 : layer.config) === null || _a === void 0 ? void 0 : _a.type) + ' layer' || 'unnamed layer', layerComponent: React__default["default"].createElement(MlGeoJsonLayer, __assign({}, layer.config, { mapId: props === null || props === void 0 ? void 0 : props.mapId, insertBeforeLayer: (props === null || props === void 0 ? void 0 : props.insertBeforeLayer) || 'order-content' })), setLayerState: function (layerConfig) {
|
|
7843
|
+
var _a;
|
|
7844
|
+
return (_a = props.setLayers) === null || _a === void 0 ? void 0 : _a.call(props, function (current) {
|
|
7845
|
+
var _layers = __spreadArray([], current, true);
|
|
7846
|
+
if (layerConfig === false) {
|
|
7847
|
+
_layers.splice(idx, 1);
|
|
7848
|
+
}
|
|
7849
|
+
else {
|
|
7850
|
+
_layers[idx].config = layerConfig;
|
|
7851
|
+
}
|
|
7852
|
+
return _layers;
|
|
7853
|
+
});
|
|
7854
|
+
}, configurable: true, showDeleteButton: true })));
|
|
7855
|
+
case 'wms':
|
|
7856
|
+
return (React__default["default"].createElement(React__default["default"].Fragment, null,
|
|
7857
|
+
React__default["default"].createElement(MlWmsLoader, __assign({}, layer.config, { key: layer.id, mapId: props === null || props === void 0 ? void 0 : props.mapId, insertBeforeLayer: (props === null || props === void 0 ? void 0 : props.insertBeforeLayer) || 'order-content', onConfigChange: function (layerConfig) {
|
|
7858
|
+
var _a;
|
|
7859
|
+
(_a = props === null || props === void 0 ? void 0 : props.setLayers) === null || _a === void 0 ? void 0 : _a.call(props, function (current) {
|
|
7860
|
+
var _layers = __spreadArray([], current, true);
|
|
7861
|
+
if (layerConfig === false) {
|
|
7862
|
+
_layers.splice(idx, 1);
|
|
7863
|
+
}
|
|
7864
|
+
else {
|
|
7865
|
+
_layers[idx].config.config = layerConfig;
|
|
7866
|
+
}
|
|
7867
|
+
return _layers;
|
|
7868
|
+
});
|
|
7869
|
+
}, showDeleteButton: true }))));
|
|
7870
|
+
default:
|
|
7871
|
+
return null;
|
|
7872
|
+
}
|
|
7873
|
+
}),
|
|
7874
|
+
((_b = layerContext === null || layerContext === void 0 ? void 0 : layerContext.symbolLayers) === null || _b === void 0 ? void 0 : _b.length) > 0 && (React__default["default"].createElement(LayerListItem, { layerComponent: React__default["default"].createElement(MlVectorTileLayer, __assign({}, layerContext.vtLayerConfig, { layers: layerContext.symbolLayers, mapId: props === null || props === void 0 ? void 0 : props.mapId, insertBeforeLayer: 'order-labels' })), setLayerState: function (state) {
|
|
7875
|
+
return layerContext.setSymbolLayers(state === null || state === void 0 ? void 0 : state.layers);
|
|
7876
|
+
}, visible: true, configurable: true, type: "layer", name: "Labels" }))));
|
|
7877
|
+
}
|
|
7878
|
+
LayerListItemFactory.defaultProps = {
|
|
7879
|
+
mapId: undefined,
|
|
7880
|
+
layers: []
|
|
7881
|
+
};
|
|
7882
|
+
|
|
7816
7883
|
var types = [
|
|
7817
7884
|
'fill',
|
|
7818
7885
|
'line',
|
|
@@ -8094,37 +8161,27 @@ var SelectStylePopup = function (props) {
|
|
|
8094
8161
|
var handleCancel = function () {
|
|
8095
8162
|
props.setOpen(false);
|
|
8096
8163
|
};
|
|
8097
|
-
return (React__default["default"].createElement(material.Dialog, { open: props.open, onClose: handleCancel, PaperProps: { sx: { padding: '20px' } } },
|
|
8098
|
-
|
|
8099
|
-
|
|
8100
|
-
|
|
8101
|
-
|
|
8102
|
-
|
|
8103
|
-
var
|
|
8104
|
-
|
|
8105
|
-
|
|
8106
|
-
|
|
8107
|
-
|
|
8108
|
-
|
|
8109
|
-
|
|
8110
|
-
? [MonokaiStyle, SolarizedStyle, OceanicNextStyle, MedievalKingdomStyle, GruvboxStyle]
|
|
8111
|
-
: []), true), (props.styles || []), true), open: popupOpen, setOpen: setPopupOpen, onSelect: function (style) {
|
|
8112
|
-
// Todo: should be possible without clearing bg layers first & setTimeout
|
|
8113
|
-
layerContext.setBackgroundLayers([]);
|
|
8114
|
-
setTimeout(function () {
|
|
8115
|
-
layerContext.updateStyle(style);
|
|
8116
|
-
}, 100);
|
|
8117
|
-
setPopupOpen(false);
|
|
8118
|
-
} })));
|
|
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
|
+
}))));
|
|
8119
8177
|
};
|
|
8120
|
-
|
|
8121
|
-
|
|
8122
|
-
defaultStyles: true,
|
|
8178
|
+
SelectStylePopup.defaultProps = {
|
|
8179
|
+
styleThumbnailPaths: {},
|
|
8123
8180
|
};
|
|
8124
8181
|
|
|
8125
|
-
var
|
|
8182
|
+
var MonokaiStyle = {
|
|
8126
8183
|
version: 8,
|
|
8127
|
-
name: '
|
|
8184
|
+
name: 'Monokai',
|
|
8128
8185
|
center: [8.542, 47.372],
|
|
8129
8186
|
zoom: 11.6,
|
|
8130
8187
|
bearing: 0,
|
|
@@ -8148,7 +8205,7 @@ var GruvboxStyle = {
|
|
|
8148
8205
|
filter: ['==', 'subclass', 'glacier'],
|
|
8149
8206
|
layout: { visibility: 'visible' },
|
|
8150
8207
|
paint: {
|
|
8151
|
-
'fill-color': '#
|
|
8208
|
+
'fill-color': '#AE81FF',
|
|
8152
8209
|
'fill-opacity': {
|
|
8153
8210
|
base: 1,
|
|
8154
8211
|
stops: [
|
|
@@ -8165,7 +8222,7 @@ var GruvboxStyle = {
|
|
|
8165
8222
|
source: 'openmaptiles',
|
|
8166
8223
|
'source-layer': 'landuse',
|
|
8167
8224
|
filter: ['==', 'class', 'residential'],
|
|
8168
|
-
paint: { 'fill-color': '#
|
|
8225
|
+
paint: { 'fill-color': '#75715E' },
|
|
8169
8226
|
},
|
|
8170
8227
|
{
|
|
8171
8228
|
id: 'landuse-commercial',
|
|
@@ -8174,7 +8231,7 @@ var GruvboxStyle = {
|
|
|
8174
8231
|
source: 'openmaptiles',
|
|
8175
8232
|
'source-layer': 'landuse',
|
|
8176
8233
|
filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'commercial']],
|
|
8177
|
-
paint: { 'fill-color': '#
|
|
8234
|
+
paint: { 'fill-color': '#837f6e' },
|
|
8178
8235
|
},
|
|
8179
8236
|
{
|
|
8180
8237
|
id: 'landuse-industrial',
|
|
@@ -8183,7 +8240,7 @@ var GruvboxStyle = {
|
|
|
8183
8240
|
source: 'openmaptiles',
|
|
8184
8241
|
'source-layer': 'landuse',
|
|
8185
8242
|
filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'industrial']],
|
|
8186
|
-
paint: { 'fill-color': '#
|
|
8243
|
+
paint: { 'fill-color': '#918d7e' },
|
|
8187
8244
|
},
|
|
8188
8245
|
{
|
|
8189
8246
|
id: 'park',
|
|
@@ -8193,7 +8250,7 @@ var GruvboxStyle = {
|
|
|
8193
8250
|
'source-layer': 'park',
|
|
8194
8251
|
filter: ['==', '$type', 'Polygon'],
|
|
8195
8252
|
paint: {
|
|
8196
|
-
'fill-color': '#
|
|
8253
|
+
'fill-color': '#A6C22E',
|
|
8197
8254
|
'fill-opacity': {
|
|
8198
8255
|
base: 1.8,
|
|
8199
8256
|
stops: [
|
|
@@ -8211,7 +8268,7 @@ var GruvboxStyle = {
|
|
|
8211
8268
|
'source-layer': 'park',
|
|
8212
8269
|
filter: ['==', '$type', 'Polygon'],
|
|
8213
8270
|
layout: {},
|
|
8214
|
-
paint: { 'line-color': 'rgba(
|
|
8271
|
+
paint: { 'line-color': 'rgba(166,194,46,0.6)', 'line-dasharray': [3, 3] },
|
|
8215
8272
|
},
|
|
8216
8273
|
{
|
|
8217
8274
|
id: 'landuse-cemetery',
|
|
@@ -8220,7 +8277,7 @@ var GruvboxStyle = {
|
|
|
8220
8277
|
source: 'openmaptiles',
|
|
8221
8278
|
'source-layer': 'landuse',
|
|
8222
8279
|
filter: ['==', 'class', 'cemetery'],
|
|
8223
|
-
paint: { 'fill-color': '#
|
|
8280
|
+
paint: { 'fill-color': '#e0ebad' },
|
|
8224
8281
|
},
|
|
8225
8282
|
{
|
|
8226
8283
|
id: 'landuse-hospital',
|
|
@@ -8229,7 +8286,7 @@ var GruvboxStyle = {
|
|
|
8229
8286
|
source: 'openmaptiles',
|
|
8230
8287
|
'source-layer': 'landuse',
|
|
8231
8288
|
filter: ['==', 'class', 'hospital'],
|
|
8232
|
-
paint: { 'fill-color': '#
|
|
8289
|
+
paint: { 'fill-color': '#FD971F' },
|
|
8233
8290
|
},
|
|
8234
8291
|
{
|
|
8235
8292
|
id: 'landuse-school',
|
|
@@ -8238,7 +8295,7 @@ var GruvboxStyle = {
|
|
|
8238
8295
|
source: 'openmaptiles',
|
|
8239
8296
|
'source-layer': 'landuse',
|
|
8240
8297
|
filter: ['==', 'class', 'school'],
|
|
8241
|
-
paint: { 'fill-color': 'rgba(
|
|
8298
|
+
paint: { 'fill-color': 'rgba(253,151,31,0.8)' },
|
|
8242
8299
|
},
|
|
8243
8300
|
{
|
|
8244
8301
|
id: 'landuse-railway',
|
|
@@ -8247,7 +8304,7 @@ var GruvboxStyle = {
|
|
|
8247
8304
|
source: 'openmaptiles',
|
|
8248
8305
|
'source-layer': 'landuse',
|
|
8249
8306
|
filter: ['==', 'class', 'railway'],
|
|
8250
|
-
paint: { 'fill-color': 'rgba(
|
|
8307
|
+
paint: { 'fill-color': 'rgba(18,5,68,0.4)' },
|
|
8251
8308
|
},
|
|
8252
8309
|
{
|
|
8253
8310
|
id: 'landcover-wood',
|
|
@@ -8257,7 +8314,7 @@ var GruvboxStyle = {
|
|
|
8257
8314
|
'source-layer': 'landcover',
|
|
8258
8315
|
filter: ['==', 'class', 'wood'],
|
|
8259
8316
|
paint: {
|
|
8260
|
-
'fill-color': '#
|
|
8317
|
+
'fill-color': '#A6E22E',
|
|
8261
8318
|
'fill-opacity': 0.1,
|
|
8262
8319
|
'fill-outline-color': 'hsla(0, 0%, 0%, 0.03)',
|
|
8263
8320
|
'fill-antialias': {
|
|
@@ -8276,7 +8333,7 @@ var GruvboxStyle = {
|
|
|
8276
8333
|
source: 'openmaptiles',
|
|
8277
8334
|
'source-layer': 'landcover',
|
|
8278
8335
|
filter: ['==', 'class', 'grass'],
|
|
8279
|
-
paint: { 'fill-color': '#
|
|
8336
|
+
paint: { 'fill-color': '#A6C22E', 'fill-opacity': 1 },
|
|
8280
8337
|
},
|
|
8281
8338
|
{
|
|
8282
8339
|
id: 'landcover-grass-park',
|
|
@@ -8285,7 +8342,7 @@ var GruvboxStyle = {
|
|
|
8285
8342
|
source: 'openmaptiles',
|
|
8286
8343
|
'source-layer': 'park',
|
|
8287
8344
|
filter: ['==', 'class', 'public_park'],
|
|
8288
|
-
paint: { 'fill-color': '#
|
|
8345
|
+
paint: { 'fill-color': '#A6C22E', 'fill-opacity': 0.8 },
|
|
8289
8346
|
},
|
|
8290
8347
|
{
|
|
8291
8348
|
id: 'waterway-other',
|
|
@@ -8296,7 +8353,7 @@ var GruvboxStyle = {
|
|
|
8296
8353
|
filter: ['!in', 'class', 'canal', 'river', 'stream'],
|
|
8297
8354
|
layout: { 'line-cap': 'round' },
|
|
8298
8355
|
paint: {
|
|
8299
|
-
'line-color': '#
|
|
8356
|
+
'line-color': '#66D9EF',
|
|
8300
8357
|
'line-width': {
|
|
8301
8358
|
base: 1.3,
|
|
8302
8359
|
stops: [
|
|
@@ -8315,7 +8372,7 @@ var GruvboxStyle = {
|
|
|
8315
8372
|
filter: ['in', 'class', 'canal', 'stream'],
|
|
8316
8373
|
layout: { 'line-cap': 'round' },
|
|
8317
8374
|
paint: {
|
|
8318
|
-
'line-color': '#
|
|
8375
|
+
'line-color': '#66D9EF',
|
|
8319
8376
|
'line-width': {
|
|
8320
8377
|
base: 1.3,
|
|
8321
8378
|
stops: [
|
|
@@ -8334,7 +8391,7 @@ var GruvboxStyle = {
|
|
|
8334
8391
|
filter: ['==', 'class', 'river'],
|
|
8335
8392
|
layout: { 'line-cap': 'round' },
|
|
8336
8393
|
paint: {
|
|
8337
|
-
'line-color': '#
|
|
8394
|
+
'line-color': '#66D9EF',
|
|
8338
8395
|
'line-width': {
|
|
8339
8396
|
base: 1.2,
|
|
8340
8397
|
stops: [
|
|
@@ -8355,7 +8412,7 @@ var GruvboxStyle = {
|
|
|
8355
8412
|
layout: { visibility: 'visible' },
|
|
8356
8413
|
paint: {
|
|
8357
8414
|
'fill-opacity': 1,
|
|
8358
|
-
'fill-color': '#
|
|
8415
|
+
'fill-color': '#66D9EF',
|
|
8359
8416
|
'fill-translate': {
|
|
8360
8417
|
base: 1,
|
|
8361
8418
|
stops: [
|
|
@@ -8372,7 +8429,7 @@ var GruvboxStyle = {
|
|
|
8372
8429
|
source: 'openmaptiles',
|
|
8373
8430
|
'source-layer': 'water',
|
|
8374
8431
|
layout: { visibility: 'visible' },
|
|
8375
|
-
paint: { 'fill-color': '#
|
|
8432
|
+
paint: { 'fill-color': '#21c8e8' },
|
|
8376
8433
|
},
|
|
8377
8434
|
{
|
|
8378
8435
|
id: 'water-pattern',
|
|
@@ -8392,7 +8449,7 @@ var GruvboxStyle = {
|
|
|
8392
8449
|
filter: ['==', 'subclass', 'ice_shelf'],
|
|
8393
8450
|
layout: { visibility: 'visible' },
|
|
8394
8451
|
paint: {
|
|
8395
|
-
'fill-color': '#
|
|
8452
|
+
'fill-color': '#AE81FF',
|
|
8396
8453
|
'fill-opacity': {
|
|
8397
8454
|
base: 1,
|
|
8398
8455
|
stops: [
|
|
@@ -8408,7 +8465,7 @@ var GruvboxStyle = {
|
|
|
8408
8465
|
metadata: { 'mapbox:group': '1444849364238.8171' },
|
|
8409
8466
|
source: 'openmaptiles',
|
|
8410
8467
|
'source-layer': 'building',
|
|
8411
|
-
paint: { 'fill-color': '#
|
|
8468
|
+
paint: { 'fill-color': '#E6DB74', 'fill-antialias': true },
|
|
8412
8469
|
},
|
|
8413
8470
|
{
|
|
8414
8471
|
id: 'building-top',
|
|
@@ -8426,7 +8483,7 @@ var GruvboxStyle = {
|
|
|
8426
8483
|
],
|
|
8427
8484
|
},
|
|
8428
8485
|
'fill-outline-color': '#dfdbd7',
|
|
8429
|
-
'fill-color': '#
|
|
8486
|
+
'fill-color': '#eee69f',
|
|
8430
8487
|
'fill-opacity': {
|
|
8431
8488
|
base: 1,
|
|
8432
8489
|
stops: [
|
|
@@ -8445,7 +8502,7 @@ var GruvboxStyle = {
|
|
|
8445
8502
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
|
|
8446
8503
|
layout: { 'line-join': 'round' },
|
|
8447
8504
|
paint: {
|
|
8448
|
-
'line-color': '#
|
|
8505
|
+
'line-color': '#F92672',
|
|
8449
8506
|
'line-dasharray': [0.5, 0.25],
|
|
8450
8507
|
'line-width': {
|
|
8451
8508
|
base: 1.2,
|
|
@@ -8466,7 +8523,7 @@ var GruvboxStyle = {
|
|
|
8466
8523
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor']],
|
|
8467
8524
|
layout: { 'line-join': 'round' },
|
|
8468
8525
|
paint: {
|
|
8469
|
-
'line-color': '#
|
|
8526
|
+
'line-color': '#F92672',
|
|
8470
8527
|
'line-opacity': {
|
|
8471
8528
|
stops: [
|
|
8472
8529
|
[12, 0],
|
|
@@ -8493,7 +8550,7 @@ var GruvboxStyle = {
|
|
|
8493
8550
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
|
|
8494
8551
|
layout: { 'line-join': 'round' },
|
|
8495
8552
|
paint: {
|
|
8496
|
-
'line-color': '#
|
|
8553
|
+
'line-color': '#F92672',
|
|
8497
8554
|
'line-opacity': 1,
|
|
8498
8555
|
'line-width': {
|
|
8499
8556
|
base: 1.2,
|
|
@@ -8513,7 +8570,7 @@ var GruvboxStyle = {
|
|
|
8513
8570
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
|
|
8514
8571
|
layout: { 'line-join': 'round' },
|
|
8515
8572
|
paint: {
|
|
8516
|
-
'line-color': '#
|
|
8573
|
+
'line-color': '#F92672',
|
|
8517
8574
|
'line-width': {
|
|
8518
8575
|
base: 1.2,
|
|
8519
8576
|
stops: [
|
|
@@ -8534,7 +8591,7 @@ var GruvboxStyle = {
|
|
|
8534
8591
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
|
|
8535
8592
|
layout: { 'line-join': 'round', visibility: 'visible' },
|
|
8536
8593
|
paint: {
|
|
8537
|
-
'line-color': '#
|
|
8594
|
+
'line-color': '#F92672',
|
|
8538
8595
|
'line-dasharray': [0.5, 0.25],
|
|
8539
8596
|
'line-width': {
|
|
8540
8597
|
base: 1.2,
|
|
@@ -8559,7 +8616,7 @@ var GruvboxStyle = {
|
|
|
8559
8616
|
['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'path']],
|
|
8560
8617
|
],
|
|
8561
8618
|
paint: {
|
|
8562
|
-
'line-color': '#
|
|
8619
|
+
'line-color': '#fa5892',
|
|
8563
8620
|
'line-dasharray': [1.5, 0.75],
|
|
8564
8621
|
'line-width': {
|
|
8565
8622
|
base: 1.2,
|
|
@@ -8579,7 +8636,7 @@ var GruvboxStyle = {
|
|
|
8579
8636
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
|
|
8580
8637
|
layout: { 'line-join': 'round' },
|
|
8581
8638
|
paint: {
|
|
8582
|
-
'line-color': '#
|
|
8639
|
+
'line-color': '#fa5892',
|
|
8583
8640
|
'line-width': {
|
|
8584
8641
|
base: 1.2,
|
|
8585
8642
|
stops: [
|
|
@@ -8599,7 +8656,7 @@ var GruvboxStyle = {
|
|
|
8599
8656
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor_road']],
|
|
8600
8657
|
layout: { 'line-join': 'round' },
|
|
8601
8658
|
paint: {
|
|
8602
|
-
'line-color': '#
|
|
8659
|
+
'line-color': '#fa5892',
|
|
8603
8660
|
'line-opacity': 1,
|
|
8604
8661
|
'line-width': {
|
|
8605
8662
|
base: 1.2,
|
|
@@ -8620,7 +8677,7 @@ var GruvboxStyle = {
|
|
|
8620
8677
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
|
|
8621
8678
|
layout: { 'line-join': 'round' },
|
|
8622
8679
|
paint: {
|
|
8623
|
-
'line-color': '#
|
|
8680
|
+
'line-color': '#fb70a2',
|
|
8624
8681
|
'line-width': {
|
|
8625
8682
|
base: 1.2,
|
|
8626
8683
|
stops: [
|
|
@@ -8640,7 +8697,7 @@ var GruvboxStyle = {
|
|
|
8640
8697
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
|
|
8641
8698
|
layout: { 'line-join': 'round' },
|
|
8642
8699
|
paint: {
|
|
8643
|
-
'line-color': '#
|
|
8700
|
+
'line-color': '#F92672',
|
|
8644
8701
|
'line-width': {
|
|
8645
8702
|
base: 1.2,
|
|
8646
8703
|
stops: [
|
|
@@ -8660,7 +8717,7 @@ var GruvboxStyle = {
|
|
|
8660
8717
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
|
|
8661
8718
|
layout: { 'line-join': 'round', visibility: 'visible' },
|
|
8662
8719
|
paint: {
|
|
8663
|
-
'line-color': 'rgba(
|
|
8720
|
+
'line-color': 'rgba(249,38,114,0.8)',
|
|
8664
8721
|
'line-width': {
|
|
8665
8722
|
base: 1.2,
|
|
8666
8723
|
stops: [
|
|
@@ -8679,7 +8736,7 @@ var GruvboxStyle = {
|
|
|
8679
8736
|
'source-layer': 'transportation',
|
|
8680
8737
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'rail']],
|
|
8681
8738
|
paint: {
|
|
8682
|
-
'line-color': '#
|
|
8739
|
+
'line-color': '#b40544',
|
|
8683
8740
|
'line-width': {
|
|
8684
8741
|
base: 1.4,
|
|
8685
8742
|
stops: [
|
|
@@ -8701,7 +8758,7 @@ var GruvboxStyle = {
|
|
|
8701
8758
|
filter: ['all', ['in', 'class', 'taxiway']],
|
|
8702
8759
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
8703
8760
|
paint: {
|
|
8704
|
-
'line-color': '#
|
|
8761
|
+
'line-color': '#b40544',
|
|
8705
8762
|
'line-width': {
|
|
8706
8763
|
base: 1.5,
|
|
8707
8764
|
stops: [
|
|
@@ -8722,7 +8779,7 @@ var GruvboxStyle = {
|
|
|
8722
8779
|
filter: ['all', ['in', 'class', 'runway']],
|
|
8723
8780
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
8724
8781
|
paint: {
|
|
8725
|
-
'line-color': '#
|
|
8782
|
+
'line-color': '#b40544',
|
|
8726
8783
|
'line-width': {
|
|
8727
8784
|
base: 1.5,
|
|
8728
8785
|
stops: [
|
|
@@ -8750,7 +8807,7 @@ var GruvboxStyle = {
|
|
|
8750
8807
|
[14, 1],
|
|
8751
8808
|
],
|
|
8752
8809
|
},
|
|
8753
|
-
'fill-color': 'rgba(
|
|
8810
|
+
'fill-color': 'rgba(249,38,114,0.5)',
|
|
8754
8811
|
},
|
|
8755
8812
|
},
|
|
8756
8813
|
{
|
|
@@ -8763,7 +8820,7 @@ var GruvboxStyle = {
|
|
|
8763
8820
|
filter: ['all', ['in', 'class', 'taxiway'], ['==', '$type', 'LineString']],
|
|
8764
8821
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
8765
8822
|
paint: {
|
|
8766
|
-
'line-color': '#
|
|
8823
|
+
'line-color': '#fb70a2',
|
|
8767
8824
|
'line-width': {
|
|
8768
8825
|
base: 1.5,
|
|
8769
8826
|
stops: [
|
|
@@ -8790,7 +8847,7 @@ var GruvboxStyle = {
|
|
|
8790
8847
|
filter: ['all', ['in', 'class', 'runway'], ['==', '$type', 'LineString']],
|
|
8791
8848
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
8792
8849
|
paint: {
|
|
8793
|
-
'line-color': '#
|
|
8850
|
+
'line-color': '#fb70a2',
|
|
8794
8851
|
'line-width': {
|
|
8795
8852
|
base: 1.5,
|
|
8796
8853
|
stops: [
|
|
@@ -8816,7 +8873,7 @@ var GruvboxStyle = {
|
|
|
8816
8873
|
filter: ['==', '$type', 'Polygon'],
|
|
8817
8874
|
layout: { visibility: 'visible' },
|
|
8818
8875
|
paint: {
|
|
8819
|
-
'fill-color': '#
|
|
8876
|
+
'fill-color': '#e60657',
|
|
8820
8877
|
'fill-outline-color': '#cfcdca',
|
|
8821
8878
|
'fill-opacity': 0.9,
|
|
8822
8879
|
'fill-antialias': false,
|
|
@@ -8832,7 +8889,7 @@ var GruvboxStyle = {
|
|
|
8832
8889
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
|
|
8833
8890
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
8834
8891
|
paint: {
|
|
8835
|
-
'line-color': '#
|
|
8892
|
+
'line-color': '#F92672',
|
|
8836
8893
|
'line-opacity': 1,
|
|
8837
8894
|
'line-width': {
|
|
8838
8895
|
base: 1.2,
|
|
@@ -8859,7 +8916,7 @@ var GruvboxStyle = {
|
|
|
8859
8916
|
],
|
|
8860
8917
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
8861
8918
|
paint: {
|
|
8862
|
-
'line-color': '#
|
|
8919
|
+
'line-color': '#F92672',
|
|
8863
8920
|
'line-opacity': 1,
|
|
8864
8921
|
'line-width': {
|
|
8865
8922
|
base: 1.2,
|
|
@@ -8885,7 +8942,7 @@ var GruvboxStyle = {
|
|
|
8885
8942
|
],
|
|
8886
8943
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
8887
8944
|
paint: {
|
|
8888
|
-
'line-color': 'rgba(
|
|
8945
|
+
'line-color': 'rgba(249,38,114,0.8)',
|
|
8889
8946
|
'line-opacity': {
|
|
8890
8947
|
stops: [
|
|
8891
8948
|
[12, 0],
|
|
@@ -8916,7 +8973,7 @@ var GruvboxStyle = {
|
|
|
8916
8973
|
],
|
|
8917
8974
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
8918
8975
|
paint: {
|
|
8919
|
-
'line-color': '#
|
|
8976
|
+
'line-color': '#F92672',
|
|
8920
8977
|
'line-opacity': 1,
|
|
8921
8978
|
'line-width': {
|
|
8922
8979
|
base: 1.2,
|
|
@@ -8937,7 +8994,7 @@ var GruvboxStyle = {
|
|
|
8937
8994
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'primary']],
|
|
8938
8995
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
8939
8996
|
paint: {
|
|
8940
|
-
'line-color': '#
|
|
8997
|
+
'line-color': '#F92672',
|
|
8941
8998
|
'line-opacity': {
|
|
8942
8999
|
stops: [
|
|
8943
9000
|
[7, 0],
|
|
@@ -8965,7 +9022,7 @@ var GruvboxStyle = {
|
|
|
8965
9022
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'trunk']],
|
|
8966
9023
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
8967
9024
|
paint: {
|
|
8968
|
-
'line-color': '#
|
|
9025
|
+
'line-color': '#F92672',
|
|
8969
9026
|
'line-opacity': {
|
|
8970
9027
|
stops: [
|
|
8971
9028
|
[5, 0],
|
|
@@ -8993,7 +9050,7 @@ var GruvboxStyle = {
|
|
|
8993
9050
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway']],
|
|
8994
9051
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
8995
9052
|
paint: {
|
|
8996
|
-
'line-color': '#
|
|
9053
|
+
'line-color': '#F92672',
|
|
8997
9054
|
'line-width': {
|
|
8998
9055
|
base: 1.2,
|
|
8999
9056
|
stops: [
|
|
@@ -9024,7 +9081,7 @@ var GruvboxStyle = {
|
|
|
9024
9081
|
['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'path']],
|
|
9025
9082
|
],
|
|
9026
9083
|
paint: {
|
|
9027
|
-
'line-color': '#
|
|
9084
|
+
'line-color': '#F8F8F2',
|
|
9028
9085
|
'line-dasharray': [1.5, 0.75],
|
|
9029
9086
|
'line-width': {
|
|
9030
9087
|
base: 1.2,
|
|
@@ -9045,7 +9102,7 @@ var GruvboxStyle = {
|
|
|
9045
9102
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
|
|
9046
9103
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
9047
9104
|
paint: {
|
|
9048
|
-
'line-color': '#
|
|
9105
|
+
'line-color': '#f92672',
|
|
9049
9106
|
'line-width': {
|
|
9050
9107
|
base: 1.2,
|
|
9051
9108
|
stops: [
|
|
@@ -9071,7 +9128,7 @@ var GruvboxStyle = {
|
|
|
9071
9128
|
],
|
|
9072
9129
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
9073
9130
|
paint: {
|
|
9074
|
-
'line-color': '#
|
|
9131
|
+
'line-color': '#F92672',
|
|
9075
9132
|
'line-width': {
|
|
9076
9133
|
base: 1.2,
|
|
9077
9134
|
stops: [
|
|
@@ -9096,7 +9153,7 @@ var GruvboxStyle = {
|
|
|
9096
9153
|
],
|
|
9097
9154
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
9098
9155
|
paint: {
|
|
9099
|
-
'line-color': '#
|
|
9156
|
+
'line-color': '#fc89b2',
|
|
9100
9157
|
'line-opacity': 1,
|
|
9101
9158
|
'line-width': {
|
|
9102
9159
|
base: 1.2,
|
|
@@ -9121,7 +9178,7 @@ var GruvboxStyle = {
|
|
|
9121
9178
|
],
|
|
9122
9179
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
9123
9180
|
paint: {
|
|
9124
|
-
'line-color': '#
|
|
9181
|
+
'line-color': '#F92672',
|
|
9125
9182
|
'line-width': {
|
|
9126
9183
|
base: 1.2,
|
|
9127
9184
|
stops: [
|
|
@@ -9145,7 +9202,7 @@ var GruvboxStyle = {
|
|
|
9145
9202
|
],
|
|
9146
9203
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
9147
9204
|
paint: {
|
|
9148
|
-
'line-color': '#
|
|
9205
|
+
'line-color': '#F92672',
|
|
9149
9206
|
'line-width': {
|
|
9150
9207
|
base: 1.2,
|
|
9151
9208
|
stops: [
|
|
@@ -9169,7 +9226,7 @@ var GruvboxStyle = {
|
|
|
9169
9226
|
],
|
|
9170
9227
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
9171
9228
|
paint: {
|
|
9172
|
-
'line-color': '#
|
|
9229
|
+
'line-color': '#F92672',
|
|
9173
9230
|
'line-width': {
|
|
9174
9231
|
base: 1.2,
|
|
9175
9232
|
stops: [
|
|
@@ -9194,7 +9251,7 @@ var GruvboxStyle = {
|
|
|
9194
9251
|
],
|
|
9195
9252
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
9196
9253
|
paint: {
|
|
9197
|
-
'line-color': '#
|
|
9254
|
+
'line-color': '#f92672',
|
|
9198
9255
|
'line-width': {
|
|
9199
9256
|
base: 1.2,
|
|
9200
9257
|
stops: [
|
|
@@ -9217,7 +9274,7 @@ var GruvboxStyle = {
|
|
|
9217
9274
|
['all', ['==', 'class', 'rail'], ['has', 'service']],
|
|
9218
9275
|
],
|
|
9219
9276
|
paint: {
|
|
9220
|
-
'line-color': 'rgba(
|
|
9277
|
+
'line-color': 'rgba(18,5,68,0.7)',
|
|
9221
9278
|
'line-width': {
|
|
9222
9279
|
base: 1.4,
|
|
9223
9280
|
stops: [
|
|
@@ -9240,7 +9297,7 @@ var GruvboxStyle = {
|
|
|
9240
9297
|
],
|
|
9241
9298
|
layout: { visibility: 'visible' },
|
|
9242
9299
|
paint: {
|
|
9243
|
-
'line-color': 'rgba(
|
|
9300
|
+
'line-color': 'rgba(18,5,68,0.7)',
|
|
9244
9301
|
'line-dasharray': [0.2, 8],
|
|
9245
9302
|
'line-width': {
|
|
9246
9303
|
base: 1.4,
|
|
@@ -9269,7 +9326,7 @@ var GruvboxStyle = {
|
|
|
9269
9326
|
],
|
|
9270
9327
|
],
|
|
9271
9328
|
paint: {
|
|
9272
|
-
'line-color': '#
|
|
9329
|
+
'line-color': '#b40544',
|
|
9273
9330
|
'line-width': {
|
|
9274
9331
|
base: 1.4,
|
|
9275
9332
|
stops: [
|
|
@@ -9297,7 +9354,7 @@ var GruvboxStyle = {
|
|
|
9297
9354
|
],
|
|
9298
9355
|
],
|
|
9299
9356
|
paint: {
|
|
9300
|
-
'line-color': '#
|
|
9357
|
+
'line-color': '#b40544',
|
|
9301
9358
|
'line-dasharray': [0.2, 8],
|
|
9302
9359
|
'line-width': {
|
|
9303
9360
|
base: 1.4,
|
|
@@ -9318,7 +9375,7 @@ var GruvboxStyle = {
|
|
|
9318
9375
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
|
|
9319
9376
|
layout: { 'line-join': 'round' },
|
|
9320
9377
|
paint: {
|
|
9321
|
-
'line-color': '#
|
|
9378
|
+
'line-color': '#F92672',
|
|
9322
9379
|
'line-opacity': 1,
|
|
9323
9380
|
'line-width': {
|
|
9324
9381
|
base: 1.2,
|
|
@@ -9344,7 +9401,7 @@ var GruvboxStyle = {
|
|
|
9344
9401
|
],
|
|
9345
9402
|
layout: { 'line-join': 'round' },
|
|
9346
9403
|
paint: {
|
|
9347
|
-
'line-color': '#
|
|
9404
|
+
'line-color': '#F92672',
|
|
9348
9405
|
'line-opacity': 1,
|
|
9349
9406
|
'line-width': {
|
|
9350
9407
|
base: 1.2,
|
|
@@ -9366,7 +9423,7 @@ var GruvboxStyle = {
|
|
|
9366
9423
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
|
|
9367
9424
|
layout: { 'line-join': 'round' },
|
|
9368
9425
|
paint: {
|
|
9369
|
-
'line-color': '#
|
|
9426
|
+
'line-color': '#F92672',
|
|
9370
9427
|
'line-opacity': 1,
|
|
9371
9428
|
'line-width': {
|
|
9372
9429
|
base: 1.2,
|
|
@@ -9386,7 +9443,7 @@ var GruvboxStyle = {
|
|
|
9386
9443
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
|
|
9387
9444
|
layout: { 'line-join': 'round' },
|
|
9388
9445
|
paint: {
|
|
9389
|
-
'line-color': '#
|
|
9446
|
+
'line-color': '#F92672',
|
|
9390
9447
|
'line-width': {
|
|
9391
9448
|
base: 1.2,
|
|
9392
9449
|
stops: [
|
|
@@ -9407,7 +9464,7 @@ var GruvboxStyle = {
|
|
|
9407
9464
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
|
|
9408
9465
|
layout: { 'line-join': 'round' },
|
|
9409
9466
|
paint: {
|
|
9410
|
-
'line-color': '#
|
|
9467
|
+
'line-color': '#F92672',
|
|
9411
9468
|
'line-width': {
|
|
9412
9469
|
base: 1.2,
|
|
9413
9470
|
stops: [
|
|
@@ -9431,7 +9488,7 @@ var GruvboxStyle = {
|
|
|
9431
9488
|
['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
|
|
9432
9489
|
],
|
|
9433
9490
|
paint: {
|
|
9434
|
-
'line-color': '#
|
|
9491
|
+
'line-color': '#fa5892',
|
|
9435
9492
|
'line-width': {
|
|
9436
9493
|
base: 1.2,
|
|
9437
9494
|
stops: [
|
|
@@ -9453,7 +9510,7 @@ var GruvboxStyle = {
|
|
|
9453
9510
|
['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
|
|
9454
9511
|
],
|
|
9455
9512
|
paint: {
|
|
9456
|
-
'line-color': '#
|
|
9513
|
+
'line-color': '#F8F8F2',
|
|
9457
9514
|
'line-width': {
|
|
9458
9515
|
base: 1.2,
|
|
9459
9516
|
stops: [
|
|
@@ -9473,7 +9530,7 @@ var GruvboxStyle = {
|
|
|
9473
9530
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
|
|
9474
9531
|
layout: { 'line-join': 'round' },
|
|
9475
9532
|
paint: {
|
|
9476
|
-
'line-color': '#
|
|
9533
|
+
'line-color': '#f92672',
|
|
9477
9534
|
'line-width': {
|
|
9478
9535
|
base: 1.2,
|
|
9479
9536
|
stops: [
|
|
@@ -9498,7 +9555,7 @@ var GruvboxStyle = {
|
|
|
9498
9555
|
],
|
|
9499
9556
|
layout: { 'line-join': 'round' },
|
|
9500
9557
|
paint: {
|
|
9501
|
-
'line-color': '#
|
|
9558
|
+
'line-color': '#F92672',
|
|
9502
9559
|
'line-width': {
|
|
9503
9560
|
base: 1.2,
|
|
9504
9561
|
stops: [
|
|
@@ -9519,7 +9576,7 @@ var GruvboxStyle = {
|
|
|
9519
9576
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
|
|
9520
9577
|
layout: { 'line-join': 'round' },
|
|
9521
9578
|
paint: {
|
|
9522
|
-
'line-color': '#
|
|
9579
|
+
'line-color': '#F92672',
|
|
9523
9580
|
'line-width': {
|
|
9524
9581
|
base: 1.2,
|
|
9525
9582
|
stops: [
|
|
@@ -9539,7 +9596,7 @@ var GruvboxStyle = {
|
|
|
9539
9596
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
|
|
9540
9597
|
layout: { 'line-join': 'round' },
|
|
9541
9598
|
paint: {
|
|
9542
|
-
'line-color': '#
|
|
9599
|
+
'line-color': '#F92672',
|
|
9543
9600
|
'line-width': {
|
|
9544
9601
|
base: 1.2,
|
|
9545
9602
|
stops: [
|
|
@@ -9559,7 +9616,7 @@ var GruvboxStyle = {
|
|
|
9559
9616
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
|
|
9560
9617
|
layout: { 'line-join': 'round' },
|
|
9561
9618
|
paint: {
|
|
9562
|
-
'line-color': '#
|
|
9619
|
+
'line-color': '#f92672',
|
|
9563
9620
|
'line-width': {
|
|
9564
9621
|
base: 1.2,
|
|
9565
9622
|
stops: [
|
|
@@ -9578,7 +9635,7 @@ var GruvboxStyle = {
|
|
|
9578
9635
|
'source-layer': 'transportation',
|
|
9579
9636
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
|
|
9580
9637
|
paint: {
|
|
9581
|
-
'line-color': '#
|
|
9638
|
+
'line-color': '#b40544',
|
|
9582
9639
|
'line-width': {
|
|
9583
9640
|
base: 1.4,
|
|
9584
9641
|
stops: [
|
|
@@ -9597,7 +9654,7 @@ var GruvboxStyle = {
|
|
|
9597
9654
|
'source-layer': 'transportation',
|
|
9598
9655
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
|
|
9599
9656
|
paint: {
|
|
9600
|
-
'line-color': '#
|
|
9657
|
+
'line-color': '#b40544',
|
|
9601
9658
|
'line-dasharray': [0.2, 8],
|
|
9602
9659
|
'line-width': {
|
|
9603
9660
|
base: 1.4,
|
|
@@ -9617,7 +9674,7 @@ var GruvboxStyle = {
|
|
|
9617
9674
|
filter: ['all', ['in', 'admin_level', 4, 6, 8], ['!=', 'maritime', 1]],
|
|
9618
9675
|
layout: { 'line-join': 'round' },
|
|
9619
9676
|
paint: {
|
|
9620
|
-
'line-color': '#
|
|
9677
|
+
'line-color': '#E69F66',
|
|
9621
9678
|
'line-dasharray': [3, 1, 1, 1],
|
|
9622
9679
|
'line-width': {
|
|
9623
9680
|
base: 1.4,
|
|
@@ -9637,7 +9694,7 @@ var GruvboxStyle = {
|
|
|
9637
9694
|
filter: ['all', ['==', 'admin_level', 2], ['!=', 'maritime', 1]],
|
|
9638
9695
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
9639
9696
|
paint: {
|
|
9640
|
-
'line-color': '#
|
|
9697
|
+
'line-color': '#E69F66',
|
|
9641
9698
|
'line-width': {
|
|
9642
9699
|
base: 1,
|
|
9643
9700
|
stops: [
|
|
@@ -9657,7 +9714,7 @@ var GruvboxStyle = {
|
|
|
9657
9714
|
filter: ['all', ['in', 'admin_level', 2, 4], ['==', 'maritime', 1]],
|
|
9658
9715
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
9659
9716
|
paint: {
|
|
9660
|
-
'line-color': '#
|
|
9717
|
+
'line-color': '#66D9EF',
|
|
9661
9718
|
'line-width': {
|
|
9662
9719
|
base: 1,
|
|
9663
9720
|
stops: [
|
|
@@ -10674,9 +10731,9 @@ var GruvboxStyle = {
|
|
|
10674
10731
|
],
|
|
10675
10732
|
};
|
|
10676
10733
|
|
|
10677
|
-
var
|
|
10734
|
+
var SolarizedStyle = {
|
|
10678
10735
|
version: 8,
|
|
10679
|
-
name: '
|
|
10736
|
+
name: 'Solarized',
|
|
10680
10737
|
center: [8.542, 47.372],
|
|
10681
10738
|
zoom: 11.6,
|
|
10682
10739
|
bearing: 0,
|
|
@@ -10690,7 +10747,7 @@ var MedievalKingdomStyle = {
|
|
|
10690
10747
|
sprite: config.sprite,
|
|
10691
10748
|
glyphs: config.glyphs,
|
|
10692
10749
|
layers: [
|
|
10693
|
-
{ id: 'background', type: 'background', paint: { 'background-color': '#
|
|
10750
|
+
{ id: 'background', type: 'background', paint: { 'background-color': '#073642' } },
|
|
10694
10751
|
{
|
|
10695
10752
|
id: 'landcover-glacier',
|
|
10696
10753
|
type: 'fill',
|
|
@@ -10700,7 +10757,7 @@ var MedievalKingdomStyle = {
|
|
|
10700
10757
|
filter: ['==', 'subclass', 'glacier'],
|
|
10701
10758
|
layout: { visibility: 'visible' },
|
|
10702
10759
|
paint: {
|
|
10703
|
-
'fill-color': '#
|
|
10760
|
+
'fill-color': '#2aa198',
|
|
10704
10761
|
'fill-opacity': {
|
|
10705
10762
|
base: 1,
|
|
10706
10763
|
stops: [
|
|
@@ -10717,7 +10774,7 @@ var MedievalKingdomStyle = {
|
|
|
10717
10774
|
source: 'openmaptiles',
|
|
10718
10775
|
'source-layer': 'landuse',
|
|
10719
10776
|
filter: ['==', 'class', 'residential'],
|
|
10720
|
-
paint: { 'fill-color': '#
|
|
10777
|
+
paint: { 'fill-color': '#657b83' },
|
|
10721
10778
|
},
|
|
10722
10779
|
{
|
|
10723
10780
|
id: 'landuse-commercial',
|
|
@@ -10726,7 +10783,7 @@ var MedievalKingdomStyle = {
|
|
|
10726
10783
|
source: 'openmaptiles',
|
|
10727
10784
|
'source-layer': 'landuse',
|
|
10728
10785
|
filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'commercial']],
|
|
10729
|
-
paint: { 'fill-color': '#
|
|
10786
|
+
paint: { 'fill-color': '#74888f' },
|
|
10730
10787
|
},
|
|
10731
10788
|
{
|
|
10732
10789
|
id: 'landuse-industrial',
|
|
@@ -10735,7 +10792,7 @@ var MedievalKingdomStyle = {
|
|
|
10735
10792
|
source: 'openmaptiles',
|
|
10736
10793
|
'source-layer': 'landuse',
|
|
10737
10794
|
filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'industrial']],
|
|
10738
|
-
paint: { 'fill-color': '#
|
|
10795
|
+
paint: { 'fill-color': '#84959c' },
|
|
10739
10796
|
},
|
|
10740
10797
|
{
|
|
10741
10798
|
id: 'park',
|
|
@@ -10745,7 +10802,7 @@ var MedievalKingdomStyle = {
|
|
|
10745
10802
|
'source-layer': 'park',
|
|
10746
10803
|
filter: ['==', '$type', 'Polygon'],
|
|
10747
10804
|
paint: {
|
|
10748
|
-
'fill-color': '#
|
|
10805
|
+
'fill-color': '#859900',
|
|
10749
10806
|
'fill-opacity': {
|
|
10750
10807
|
base: 1.8,
|
|
10751
10808
|
stops: [
|
|
@@ -10763,7 +10820,7 @@ var MedievalKingdomStyle = {
|
|
|
10763
10820
|
'source-layer': 'park',
|
|
10764
10821
|
filter: ['==', '$type', 'Polygon'],
|
|
10765
10822
|
layout: {},
|
|
10766
|
-
paint: { 'line-color': 'rgba(
|
|
10823
|
+
paint: { 'line-color': 'rgba(133,153,0,0.6)', 'line-dasharray': [3, 3] },
|
|
10767
10824
|
},
|
|
10768
10825
|
{
|
|
10769
10826
|
id: 'landuse-cemetery',
|
|
@@ -10772,7 +10829,7 @@ var MedievalKingdomStyle = {
|
|
|
10772
10829
|
source: 'openmaptiles',
|
|
10773
10830
|
'source-layer': 'landuse',
|
|
10774
10831
|
filter: ['==', 'class', 'cemetery'],
|
|
10775
|
-
paint: { 'fill-color': '#
|
|
10832
|
+
paint: { 'fill-color': '#f2ff99' },
|
|
10776
10833
|
},
|
|
10777
10834
|
{
|
|
10778
10835
|
id: 'landuse-hospital',
|
|
@@ -10781,7 +10838,7 @@ var MedievalKingdomStyle = {
|
|
|
10781
10838
|
source: 'openmaptiles',
|
|
10782
10839
|
'source-layer': 'landuse',
|
|
10783
10840
|
filter: ['==', 'class', 'hospital'],
|
|
10784
|
-
paint: { 'fill-color': '#
|
|
10841
|
+
paint: { 'fill-color': '#d30102' },
|
|
10785
10842
|
},
|
|
10786
10843
|
{
|
|
10787
10844
|
id: 'landuse-school',
|
|
@@ -10790,7 +10847,7 @@ var MedievalKingdomStyle = {
|
|
|
10790
10847
|
source: 'openmaptiles',
|
|
10791
10848
|
'source-layer': 'landuse',
|
|
10792
10849
|
filter: ['==', 'class', 'school'],
|
|
10793
|
-
paint: { 'fill-color': 'rgba(
|
|
10850
|
+
paint: { 'fill-color': 'rgba(211,1,2,0.8)' },
|
|
10794
10851
|
},
|
|
10795
10852
|
{
|
|
10796
10853
|
id: 'landuse-railway',
|
|
@@ -10799,7 +10856,7 @@ var MedievalKingdomStyle = {
|
|
|
10799
10856
|
source: 'openmaptiles',
|
|
10800
10857
|
'source-layer': 'landuse',
|
|
10801
10858
|
filter: ['==', 'class', 'railway'],
|
|
10802
|
-
paint: { 'fill-color': 'rgba(
|
|
10859
|
+
paint: { 'fill-color': 'rgba(58,63,144,0.4)' },
|
|
10803
10860
|
},
|
|
10804
10861
|
{
|
|
10805
10862
|
id: 'landcover-wood',
|
|
@@ -10809,7 +10866,7 @@ var MedievalKingdomStyle = {
|
|
|
10809
10866
|
'source-layer': 'landcover',
|
|
10810
10867
|
filter: ['==', 'class', 'wood'],
|
|
10811
10868
|
paint: {
|
|
10812
|
-
'fill-color': '#
|
|
10869
|
+
'fill-color': '#2aa198',
|
|
10813
10870
|
'fill-opacity': 0.1,
|
|
10814
10871
|
'fill-outline-color': 'hsla(0, 0%, 0%, 0.03)',
|
|
10815
10872
|
'fill-antialias': {
|
|
@@ -10828,7 +10885,7 @@ var MedievalKingdomStyle = {
|
|
|
10828
10885
|
source: 'openmaptiles',
|
|
10829
10886
|
'source-layer': 'landcover',
|
|
10830
10887
|
filter: ['==', 'class', 'grass'],
|
|
10831
|
-
paint: { 'fill-color': '#
|
|
10888
|
+
paint: { 'fill-color': '#859900', 'fill-opacity': 1 },
|
|
10832
10889
|
},
|
|
10833
10890
|
{
|
|
10834
10891
|
id: 'landcover-grass-park',
|
|
@@ -10837,7 +10894,7 @@ var MedievalKingdomStyle = {
|
|
|
10837
10894
|
source: 'openmaptiles',
|
|
10838
10895
|
'source-layer': 'park',
|
|
10839
10896
|
filter: ['==', 'class', 'public_park'],
|
|
10840
|
-
paint: { 'fill-color': '#
|
|
10897
|
+
paint: { 'fill-color': '#859900', 'fill-opacity': 0.8 },
|
|
10841
10898
|
},
|
|
10842
10899
|
{
|
|
10843
10900
|
id: 'waterway-other',
|
|
@@ -10848,7 +10905,7 @@ var MedievalKingdomStyle = {
|
|
|
10848
10905
|
filter: ['!in', 'class', 'canal', 'river', 'stream'],
|
|
10849
10906
|
layout: { 'line-cap': 'round' },
|
|
10850
10907
|
paint: {
|
|
10851
|
-
'line-color': '#
|
|
10908
|
+
'line-color': '#268bd2',
|
|
10852
10909
|
'line-width': {
|
|
10853
10910
|
base: 1.3,
|
|
10854
10911
|
stops: [
|
|
@@ -10867,7 +10924,7 @@ var MedievalKingdomStyle = {
|
|
|
10867
10924
|
filter: ['in', 'class', 'canal', 'stream'],
|
|
10868
10925
|
layout: { 'line-cap': 'round' },
|
|
10869
10926
|
paint: {
|
|
10870
|
-
'line-color': '#
|
|
10927
|
+
'line-color': '#268bd2',
|
|
10871
10928
|
'line-width': {
|
|
10872
10929
|
base: 1.3,
|
|
10873
10930
|
stops: [
|
|
@@ -10886,7 +10943,7 @@ var MedievalKingdomStyle = {
|
|
|
10886
10943
|
filter: ['==', 'class', 'river'],
|
|
10887
10944
|
layout: { 'line-cap': 'round' },
|
|
10888
10945
|
paint: {
|
|
10889
|
-
'line-color': '#
|
|
10946
|
+
'line-color': '#268bd2',
|
|
10890
10947
|
'line-width': {
|
|
10891
10948
|
base: 1.2,
|
|
10892
10949
|
stops: [
|
|
@@ -10907,7 +10964,7 @@ var MedievalKingdomStyle = {
|
|
|
10907
10964
|
layout: { visibility: 'visible' },
|
|
10908
10965
|
paint: {
|
|
10909
10966
|
'fill-opacity': 1,
|
|
10910
|
-
'fill-color': '#
|
|
10967
|
+
'fill-color': '#268bd2',
|
|
10911
10968
|
'fill-translate': {
|
|
10912
10969
|
base: 1,
|
|
10913
10970
|
stops: [
|
|
@@ -10924,7 +10981,7 @@ var MedievalKingdomStyle = {
|
|
|
10924
10981
|
source: 'openmaptiles',
|
|
10925
10982
|
'source-layer': 'water',
|
|
10926
10983
|
layout: { visibility: 'visible' },
|
|
10927
|
-
paint: { 'fill-color': '#
|
|
10984
|
+
paint: { 'fill-color': '#1a6091' },
|
|
10928
10985
|
},
|
|
10929
10986
|
{
|
|
10930
10987
|
id: 'water-pattern',
|
|
@@ -10944,7 +11001,7 @@ var MedievalKingdomStyle = {
|
|
|
10944
11001
|
filter: ['==', 'subclass', 'ice_shelf'],
|
|
10945
11002
|
layout: { visibility: 'visible' },
|
|
10946
11003
|
paint: {
|
|
10947
|
-
'fill-color': '#
|
|
11004
|
+
'fill-color': '#2aa198',
|
|
10948
11005
|
'fill-opacity': {
|
|
10949
11006
|
base: 1,
|
|
10950
11007
|
stops: [
|
|
@@ -10960,7 +11017,7 @@ var MedievalKingdomStyle = {
|
|
|
10960
11017
|
metadata: { 'mapbox:group': '1444849364238.8171' },
|
|
10961
11018
|
source: 'openmaptiles',
|
|
10962
11019
|
'source-layer': 'building',
|
|
10963
|
-
paint: { 'fill-color': '#
|
|
11020
|
+
paint: { 'fill-color': '#eee8d5', 'fill-antialias': true },
|
|
10964
11021
|
},
|
|
10965
11022
|
{
|
|
10966
11023
|
id: 'building-top',
|
|
@@ -10978,7 +11035,7 @@ var MedievalKingdomStyle = {
|
|
|
10978
11035
|
],
|
|
10979
11036
|
},
|
|
10980
11037
|
'fill-outline-color': '#dfdbd7',
|
|
10981
|
-
'fill-color': '#
|
|
11038
|
+
'fill-color': '#fdfcf9',
|
|
10982
11039
|
'fill-opacity': {
|
|
10983
11040
|
base: 1,
|
|
10984
11041
|
stops: [
|
|
@@ -10997,7 +11054,7 @@ var MedievalKingdomStyle = {
|
|
|
10997
11054
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
|
|
10998
11055
|
layout: { 'line-join': 'round' },
|
|
10999
11056
|
paint: {
|
|
11000
|
-
'line-color': '#
|
|
11057
|
+
'line-color': '#6c71c4',
|
|
11001
11058
|
'line-dasharray': [0.5, 0.25],
|
|
11002
11059
|
'line-width': {
|
|
11003
11060
|
base: 1.2,
|
|
@@ -11018,7 +11075,7 @@ var MedievalKingdomStyle = {
|
|
|
11018
11075
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor']],
|
|
11019
11076
|
layout: { 'line-join': 'round' },
|
|
11020
11077
|
paint: {
|
|
11021
|
-
'line-color': '#
|
|
11078
|
+
'line-color': '#6c71c4',
|
|
11022
11079
|
'line-opacity': {
|
|
11023
11080
|
stops: [
|
|
11024
11081
|
[12, 0],
|
|
@@ -11045,7 +11102,7 @@ var MedievalKingdomStyle = {
|
|
|
11045
11102
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
|
|
11046
11103
|
layout: { 'line-join': 'round' },
|
|
11047
11104
|
paint: {
|
|
11048
|
-
'line-color': '#
|
|
11105
|
+
'line-color': '#d33682',
|
|
11049
11106
|
'line-opacity': 1,
|
|
11050
11107
|
'line-width': {
|
|
11051
11108
|
base: 1.2,
|
|
@@ -11065,7 +11122,7 @@ var MedievalKingdomStyle = {
|
|
|
11065
11122
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
|
|
11066
11123
|
layout: { 'line-join': 'round' },
|
|
11067
11124
|
paint: {
|
|
11068
|
-
'line-color': '#
|
|
11125
|
+
'line-color': '#d33682',
|
|
11069
11126
|
'line-width': {
|
|
11070
11127
|
base: 1.2,
|
|
11071
11128
|
stops: [
|
|
@@ -11086,7 +11143,7 @@ var MedievalKingdomStyle = {
|
|
|
11086
11143
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
|
|
11087
11144
|
layout: { 'line-join': 'round', visibility: 'visible' },
|
|
11088
11145
|
paint: {
|
|
11089
|
-
'line-color': '#
|
|
11146
|
+
'line-color': '#d33682',
|
|
11090
11147
|
'line-dasharray': [0.5, 0.25],
|
|
11091
11148
|
'line-width': {
|
|
11092
11149
|
base: 1.2,
|
|
@@ -11111,7 +11168,7 @@ var MedievalKingdomStyle = {
|
|
|
11111
11168
|
['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'path']],
|
|
11112
11169
|
],
|
|
11113
11170
|
paint: {
|
|
11114
|
-
'line-color': '#
|
|
11171
|
+
'line-color': '#9094d3',
|
|
11115
11172
|
'line-dasharray': [1.5, 0.75],
|
|
11116
11173
|
'line-width': {
|
|
11117
11174
|
base: 1.2,
|
|
@@ -11131,7 +11188,7 @@ var MedievalKingdomStyle = {
|
|
|
11131
11188
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
|
|
11132
11189
|
layout: { 'line-join': 'round' },
|
|
11133
11190
|
paint: {
|
|
11134
|
-
'line-color': '#
|
|
11191
|
+
'line-color': '#9094d3',
|
|
11135
11192
|
'line-width': {
|
|
11136
11193
|
base: 1.2,
|
|
11137
11194
|
stops: [
|
|
@@ -11151,7 +11208,7 @@ var MedievalKingdomStyle = {
|
|
|
11151
11208
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor_road']],
|
|
11152
11209
|
layout: { 'line-join': 'round' },
|
|
11153
11210
|
paint: {
|
|
11154
|
-
'line-color': '#
|
|
11211
|
+
'line-color': '#9094d3',
|
|
11155
11212
|
'line-opacity': 1,
|
|
11156
11213
|
'line-width': {
|
|
11157
11214
|
base: 1.2,
|
|
@@ -11172,7 +11229,7 @@ var MedievalKingdomStyle = {
|
|
|
11172
11229
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
|
|
11173
11230
|
layout: { 'line-join': 'round' },
|
|
11174
11231
|
paint: {
|
|
11175
|
-
'line-color': '#
|
|
11232
|
+
'line-color': '#a3a6da',
|
|
11176
11233
|
'line-width': {
|
|
11177
11234
|
base: 1.2,
|
|
11178
11235
|
stops: [
|
|
@@ -11192,7 +11249,7 @@ var MedievalKingdomStyle = {
|
|
|
11192
11249
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
|
|
11193
11250
|
layout: { 'line-join': 'round' },
|
|
11194
11251
|
paint: {
|
|
11195
|
-
'line-color': '#
|
|
11252
|
+
'line-color': '#6c71c4',
|
|
11196
11253
|
'line-width': {
|
|
11197
11254
|
base: 1.2,
|
|
11198
11255
|
stops: [
|
|
@@ -11212,7 +11269,7 @@ var MedievalKingdomStyle = {
|
|
|
11212
11269
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
|
|
11213
11270
|
layout: { 'line-join': 'round', visibility: 'visible' },
|
|
11214
11271
|
paint: {
|
|
11215
|
-
'line-color': 'rgba(
|
|
11272
|
+
'line-color': 'rgba(108,113,196,0.8)',
|
|
11216
11273
|
'line-width': {
|
|
11217
11274
|
base: 1.2,
|
|
11218
11275
|
stops: [
|
|
@@ -11231,7 +11288,7 @@ var MedievalKingdomStyle = {
|
|
|
11231
11288
|
'source-layer': 'transportation',
|
|
11232
11289
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'rail']],
|
|
11233
11290
|
paint: {
|
|
11234
|
-
'line-color': '#
|
|
11291
|
+
'line-color': '#3a3f90',
|
|
11235
11292
|
'line-width': {
|
|
11236
11293
|
base: 1.4,
|
|
11237
11294
|
stops: [
|
|
@@ -11253,7 +11310,7 @@ var MedievalKingdomStyle = {
|
|
|
11253
11310
|
filter: ['all', ['in', 'class', 'taxiway']],
|
|
11254
11311
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
11255
11312
|
paint: {
|
|
11256
|
-
'line-color': '#
|
|
11313
|
+
'line-color': '#3a3f90',
|
|
11257
11314
|
'line-width': {
|
|
11258
11315
|
base: 1.5,
|
|
11259
11316
|
stops: [
|
|
@@ -11274,7 +11331,7 @@ var MedievalKingdomStyle = {
|
|
|
11274
11331
|
filter: ['all', ['in', 'class', 'runway']],
|
|
11275
11332
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
11276
11333
|
paint: {
|
|
11277
|
-
'line-color': '#
|
|
11334
|
+
'line-color': '#3a3f90',
|
|
11278
11335
|
'line-width': {
|
|
11279
11336
|
base: 1.5,
|
|
11280
11337
|
stops: [
|
|
@@ -11302,7 +11359,7 @@ var MedievalKingdomStyle = {
|
|
|
11302
11359
|
[14, 1],
|
|
11303
11360
|
],
|
|
11304
11361
|
},
|
|
11305
|
-
'fill-color': 'rgba(
|
|
11362
|
+
'fill-color': 'rgba(108,113,196,0.5)',
|
|
11306
11363
|
},
|
|
11307
11364
|
},
|
|
11308
11365
|
{
|
|
@@ -11315,7 +11372,7 @@ var MedievalKingdomStyle = {
|
|
|
11315
11372
|
filter: ['all', ['in', 'class', 'taxiway'], ['==', '$type', 'LineString']],
|
|
11316
11373
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
11317
11374
|
paint: {
|
|
11318
|
-
'line-color': '#
|
|
11375
|
+
'line-color': '#a3a6da',
|
|
11319
11376
|
'line-width': {
|
|
11320
11377
|
base: 1.5,
|
|
11321
11378
|
stops: [
|
|
@@ -11342,7 +11399,7 @@ var MedievalKingdomStyle = {
|
|
|
11342
11399
|
filter: ['all', ['in', 'class', 'runway'], ['==', '$type', 'LineString']],
|
|
11343
11400
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
11344
11401
|
paint: {
|
|
11345
|
-
'line-color': '#
|
|
11402
|
+
'line-color': '#a3a6da',
|
|
11346
11403
|
'line-width': {
|
|
11347
11404
|
base: 1.5,
|
|
11348
11405
|
stops: [
|
|
@@ -11368,7 +11425,7 @@ var MedievalKingdomStyle = {
|
|
|
11368
11425
|
filter: ['==', '$type', 'Polygon'],
|
|
11369
11426
|
layout: { visibility: 'visible' },
|
|
11370
11427
|
paint: {
|
|
11371
|
-
'fill-color': '#
|
|
11428
|
+
'fill-color': '#484fb5',
|
|
11372
11429
|
'fill-outline-color': '#cfcdca',
|
|
11373
11430
|
'fill-opacity': 0.9,
|
|
11374
11431
|
'fill-antialias': false,
|
|
@@ -11384,7 +11441,7 @@ var MedievalKingdomStyle = {
|
|
|
11384
11441
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
|
|
11385
11442
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
11386
11443
|
paint: {
|
|
11387
|
-
'line-color': '#
|
|
11444
|
+
'line-color': '#d33682',
|
|
11388
11445
|
'line-opacity': 1,
|
|
11389
11446
|
'line-width': {
|
|
11390
11447
|
base: 1.2,
|
|
@@ -11411,7 +11468,7 @@ var MedievalKingdomStyle = {
|
|
|
11411
11468
|
],
|
|
11412
11469
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
11413
11470
|
paint: {
|
|
11414
|
-
'line-color': '#
|
|
11471
|
+
'line-color': '#d33682',
|
|
11415
11472
|
'line-opacity': 1,
|
|
11416
11473
|
'line-width': {
|
|
11417
11474
|
base: 1.2,
|
|
@@ -11437,7 +11494,7 @@ var MedievalKingdomStyle = {
|
|
|
11437
11494
|
],
|
|
11438
11495
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
11439
11496
|
paint: {
|
|
11440
|
-
'line-color': 'rgba(
|
|
11497
|
+
'line-color': 'rgba(108,113,196,0.8)',
|
|
11441
11498
|
'line-opacity': {
|
|
11442
11499
|
stops: [
|
|
11443
11500
|
[12, 0],
|
|
@@ -11468,7 +11525,7 @@ var MedievalKingdomStyle = {
|
|
|
11468
11525
|
],
|
|
11469
11526
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
11470
11527
|
paint: {
|
|
11471
|
-
'line-color': '#
|
|
11528
|
+
'line-color': '#d33682',
|
|
11472
11529
|
'line-opacity': 1,
|
|
11473
11530
|
'line-width': {
|
|
11474
11531
|
base: 1.2,
|
|
@@ -11489,7 +11546,7 @@ var MedievalKingdomStyle = {
|
|
|
11489
11546
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'primary']],
|
|
11490
11547
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
11491
11548
|
paint: {
|
|
11492
|
-
'line-color': '#
|
|
11549
|
+
'line-color': '#d33682',
|
|
11493
11550
|
'line-opacity': {
|
|
11494
11551
|
stops: [
|
|
11495
11552
|
[7, 0],
|
|
@@ -11517,7 +11574,7 @@ var MedievalKingdomStyle = {
|
|
|
11517
11574
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'trunk']],
|
|
11518
11575
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
11519
11576
|
paint: {
|
|
11520
|
-
'line-color': '#
|
|
11577
|
+
'line-color': '#d33682',
|
|
11521
11578
|
'line-opacity': {
|
|
11522
11579
|
stops: [
|
|
11523
11580
|
[5, 0],
|
|
@@ -11545,7 +11602,7 @@ var MedievalKingdomStyle = {
|
|
|
11545
11602
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway']],
|
|
11546
11603
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
11547
11604
|
paint: {
|
|
11548
|
-
'line-color': '#
|
|
11605
|
+
'line-color': '#d33682',
|
|
11549
11606
|
'line-width': {
|
|
11550
11607
|
base: 1.2,
|
|
11551
11608
|
stops: [
|
|
@@ -11576,7 +11633,7 @@ var MedievalKingdomStyle = {
|
|
|
11576
11633
|
['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'path']],
|
|
11577
11634
|
],
|
|
11578
11635
|
paint: {
|
|
11579
|
-
'line-color': '#
|
|
11636
|
+
'line-color': '#cb4b16',
|
|
11580
11637
|
'line-dasharray': [1.5, 0.75],
|
|
11581
11638
|
'line-width': {
|
|
11582
11639
|
base: 1.2,
|
|
@@ -11597,7 +11654,7 @@ var MedievalKingdomStyle = {
|
|
|
11597
11654
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
|
|
11598
11655
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
11599
11656
|
paint: {
|
|
11600
|
-
'line-color': '#
|
|
11657
|
+
'line-color': '#6c71c4',
|
|
11601
11658
|
'line-width': {
|
|
11602
11659
|
base: 1.2,
|
|
11603
11660
|
stops: [
|
|
@@ -11623,7 +11680,7 @@ var MedievalKingdomStyle = {
|
|
|
11623
11680
|
],
|
|
11624
11681
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
11625
11682
|
paint: {
|
|
11626
|
-
'line-color': '#
|
|
11683
|
+
'line-color': '#6c71c4',
|
|
11627
11684
|
'line-width': {
|
|
11628
11685
|
base: 1.2,
|
|
11629
11686
|
stops: [
|
|
@@ -11648,7 +11705,7 @@ var MedievalKingdomStyle = {
|
|
|
11648
11705
|
],
|
|
11649
11706
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
11650
11707
|
paint: {
|
|
11651
|
-
'line-color': '#
|
|
11708
|
+
'line-color': '#e58ab6',
|
|
11652
11709
|
'line-opacity': 1,
|
|
11653
11710
|
'line-width': {
|
|
11654
11711
|
base: 1.2,
|
|
@@ -11673,7 +11730,7 @@ var MedievalKingdomStyle = {
|
|
|
11673
11730
|
],
|
|
11674
11731
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
11675
11732
|
paint: {
|
|
11676
|
-
'line-color': '#
|
|
11733
|
+
'line-color': '#6c71c4',
|
|
11677
11734
|
'line-width': {
|
|
11678
11735
|
base: 1.2,
|
|
11679
11736
|
stops: [
|
|
@@ -11697,7 +11754,7 @@ var MedievalKingdomStyle = {
|
|
|
11697
11754
|
],
|
|
11698
11755
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
11699
11756
|
paint: {
|
|
11700
|
-
'line-color': '#
|
|
11757
|
+
'line-color': '#6c71c4',
|
|
11701
11758
|
'line-width': {
|
|
11702
11759
|
base: 1.2,
|
|
11703
11760
|
stops: [
|
|
@@ -11721,7 +11778,7 @@ var MedievalKingdomStyle = {
|
|
|
11721
11778
|
],
|
|
11722
11779
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
11723
11780
|
paint: {
|
|
11724
|
-
'line-color': '#
|
|
11781
|
+
'line-color': '#6c71c4',
|
|
11725
11782
|
'line-width': {
|
|
11726
11783
|
base: 1.2,
|
|
11727
11784
|
stops: [
|
|
@@ -11746,7 +11803,7 @@ var MedievalKingdomStyle = {
|
|
|
11746
11803
|
],
|
|
11747
11804
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
11748
11805
|
paint: {
|
|
11749
|
-
'line-color': '#
|
|
11806
|
+
'line-color': '#6c71c4',
|
|
11750
11807
|
'line-width': {
|
|
11751
11808
|
base: 1.2,
|
|
11752
11809
|
stops: [
|
|
@@ -11769,7 +11826,7 @@ var MedievalKingdomStyle = {
|
|
|
11769
11826
|
['all', ['==', 'class', 'rail'], ['has', 'service']],
|
|
11770
11827
|
],
|
|
11771
11828
|
paint: {
|
|
11772
|
-
'line-color': 'rgba(
|
|
11829
|
+
'line-color': 'rgba(58,63,144,0.7)',
|
|
11773
11830
|
'line-width': {
|
|
11774
11831
|
base: 1.4,
|
|
11775
11832
|
stops: [
|
|
@@ -11792,7 +11849,7 @@ var MedievalKingdomStyle = {
|
|
|
11792
11849
|
],
|
|
11793
11850
|
layout: { visibility: 'visible' },
|
|
11794
11851
|
paint: {
|
|
11795
|
-
'line-color': 'rgba(
|
|
11852
|
+
'line-color': 'rgba(58,63,144,0.7)',
|
|
11796
11853
|
'line-dasharray': [0.2, 8],
|
|
11797
11854
|
'line-width': {
|
|
11798
11855
|
base: 1.4,
|
|
@@ -11821,7 +11878,7 @@ var MedievalKingdomStyle = {
|
|
|
11821
11878
|
],
|
|
11822
11879
|
],
|
|
11823
11880
|
paint: {
|
|
11824
|
-
'line-color': '#
|
|
11881
|
+
'line-color': '#3a3f90',
|
|
11825
11882
|
'line-width': {
|
|
11826
11883
|
base: 1.4,
|
|
11827
11884
|
stops: [
|
|
@@ -11849,7 +11906,7 @@ var MedievalKingdomStyle = {
|
|
|
11849
11906
|
],
|
|
11850
11907
|
],
|
|
11851
11908
|
paint: {
|
|
11852
|
-
'line-color': '#
|
|
11909
|
+
'line-color': '#3a3f90',
|
|
11853
11910
|
'line-dasharray': [0.2, 8],
|
|
11854
11911
|
'line-width': {
|
|
11855
11912
|
base: 1.4,
|
|
@@ -11870,7 +11927,7 @@ var MedievalKingdomStyle = {
|
|
|
11870
11927
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
|
|
11871
11928
|
layout: { 'line-join': 'round' },
|
|
11872
11929
|
paint: {
|
|
11873
|
-
'line-color': '#
|
|
11930
|
+
'line-color': '#d33682',
|
|
11874
11931
|
'line-opacity': 1,
|
|
11875
11932
|
'line-width': {
|
|
11876
11933
|
base: 1.2,
|
|
@@ -11896,7 +11953,7 @@ var MedievalKingdomStyle = {
|
|
|
11896
11953
|
],
|
|
11897
11954
|
layout: { 'line-join': 'round' },
|
|
11898
11955
|
paint: {
|
|
11899
|
-
'line-color': '#
|
|
11956
|
+
'line-color': '#d33682',
|
|
11900
11957
|
'line-opacity': 1,
|
|
11901
11958
|
'line-width': {
|
|
11902
11959
|
base: 1.2,
|
|
@@ -11918,7 +11975,7 @@ var MedievalKingdomStyle = {
|
|
|
11918
11975
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
|
|
11919
11976
|
layout: { 'line-join': 'round' },
|
|
11920
11977
|
paint: {
|
|
11921
|
-
'line-color': '#
|
|
11978
|
+
'line-color': '#d33682',
|
|
11922
11979
|
'line-opacity': 1,
|
|
11923
11980
|
'line-width': {
|
|
11924
11981
|
base: 1.2,
|
|
@@ -11938,7 +11995,7 @@ var MedievalKingdomStyle = {
|
|
|
11938
11995
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
|
|
11939
11996
|
layout: { 'line-join': 'round' },
|
|
11940
11997
|
paint: {
|
|
11941
|
-
'line-color': '#
|
|
11998
|
+
'line-color': '#d33682',
|
|
11942
11999
|
'line-width': {
|
|
11943
12000
|
base: 1.2,
|
|
11944
12001
|
stops: [
|
|
@@ -11959,7 +12016,7 @@ var MedievalKingdomStyle = {
|
|
|
11959
12016
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
|
|
11960
12017
|
layout: { 'line-join': 'round' },
|
|
11961
12018
|
paint: {
|
|
11962
|
-
'line-color': '#
|
|
12019
|
+
'line-color': '#d33682',
|
|
11963
12020
|
'line-width': {
|
|
11964
12021
|
base: 1.2,
|
|
11965
12022
|
stops: [
|
|
@@ -11983,7 +12040,7 @@ var MedievalKingdomStyle = {
|
|
|
11983
12040
|
['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
|
|
11984
12041
|
],
|
|
11985
12042
|
paint: {
|
|
11986
|
-
'line-color': '#
|
|
12043
|
+
'line-color': '#9094d3',
|
|
11987
12044
|
'line-width': {
|
|
11988
12045
|
base: 1.2,
|
|
11989
12046
|
stops: [
|
|
@@ -12005,7 +12062,7 @@ var MedievalKingdomStyle = {
|
|
|
12005
12062
|
['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
|
|
12006
12063
|
],
|
|
12007
12064
|
paint: {
|
|
12008
|
-
'line-color': '#
|
|
12065
|
+
'line-color': '#cb4b16',
|
|
12009
12066
|
'line-width': {
|
|
12010
12067
|
base: 1.2,
|
|
12011
12068
|
stops: [
|
|
@@ -12025,7 +12082,7 @@ var MedievalKingdomStyle = {
|
|
|
12025
12082
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
|
|
12026
12083
|
layout: { 'line-join': 'round' },
|
|
12027
12084
|
paint: {
|
|
12028
|
-
'line-color': '#
|
|
12085
|
+
'line-color': '#6c71c4',
|
|
12029
12086
|
'line-width': {
|
|
12030
12087
|
base: 1.2,
|
|
12031
12088
|
stops: [
|
|
@@ -12050,7 +12107,7 @@ var MedievalKingdomStyle = {
|
|
|
12050
12107
|
],
|
|
12051
12108
|
layout: { 'line-join': 'round' },
|
|
12052
12109
|
paint: {
|
|
12053
|
-
'line-color': '#
|
|
12110
|
+
'line-color': '#6c71c4',
|
|
12054
12111
|
'line-width': {
|
|
12055
12112
|
base: 1.2,
|
|
12056
12113
|
stops: [
|
|
@@ -12071,7 +12128,7 @@ var MedievalKingdomStyle = {
|
|
|
12071
12128
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
|
|
12072
12129
|
layout: { 'line-join': 'round' },
|
|
12073
12130
|
paint: {
|
|
12074
|
-
'line-color': '#
|
|
12131
|
+
'line-color': '#6c71c4',
|
|
12075
12132
|
'line-width': {
|
|
12076
12133
|
base: 1.2,
|
|
12077
12134
|
stops: [
|
|
@@ -12091,7 +12148,7 @@ var MedievalKingdomStyle = {
|
|
|
12091
12148
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
|
|
12092
12149
|
layout: { 'line-join': 'round' },
|
|
12093
12150
|
paint: {
|
|
12094
|
-
'line-color': '#
|
|
12151
|
+
'line-color': '#6c71c4',
|
|
12095
12152
|
'line-width': {
|
|
12096
12153
|
base: 1.2,
|
|
12097
12154
|
stops: [
|
|
@@ -12111,7 +12168,7 @@ var MedievalKingdomStyle = {
|
|
|
12111
12168
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
|
|
12112
12169
|
layout: { 'line-join': 'round' },
|
|
12113
12170
|
paint: {
|
|
12114
|
-
'line-color': '#
|
|
12171
|
+
'line-color': '#6c71c4',
|
|
12115
12172
|
'line-width': {
|
|
12116
12173
|
base: 1.2,
|
|
12117
12174
|
stops: [
|
|
@@ -12130,7 +12187,7 @@ var MedievalKingdomStyle = {
|
|
|
12130
12187
|
'source-layer': 'transportation',
|
|
12131
12188
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
|
|
12132
12189
|
paint: {
|
|
12133
|
-
'line-color': '#
|
|
12190
|
+
'line-color': '#3a3f90',
|
|
12134
12191
|
'line-width': {
|
|
12135
12192
|
base: 1.4,
|
|
12136
12193
|
stops: [
|
|
@@ -12149,7 +12206,7 @@ var MedievalKingdomStyle = {
|
|
|
12149
12206
|
'source-layer': 'transportation',
|
|
12150
12207
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
|
|
12151
12208
|
paint: {
|
|
12152
|
-
'line-color': '#
|
|
12209
|
+
'line-color': '#3a3f90',
|
|
12153
12210
|
'line-dasharray': [0.2, 8],
|
|
12154
12211
|
'line-width': {
|
|
12155
12212
|
base: 1.4,
|
|
@@ -12169,7 +12226,7 @@ var MedievalKingdomStyle = {
|
|
|
12169
12226
|
filter: ['all', ['in', 'admin_level', 4, 6, 8], ['!=', 'maritime', 1]],
|
|
12170
12227
|
layout: { 'line-join': 'round' },
|
|
12171
12228
|
paint: {
|
|
12172
|
-
'line-color': '#
|
|
12229
|
+
'line-color': '#268bd2',
|
|
12173
12230
|
'line-dasharray': [3, 1, 1, 1],
|
|
12174
12231
|
'line-width': {
|
|
12175
12232
|
base: 1.4,
|
|
@@ -12189,7 +12246,7 @@ var MedievalKingdomStyle = {
|
|
|
12189
12246
|
filter: ['all', ['==', 'admin_level', 2], ['!=', 'maritime', 1]],
|
|
12190
12247
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
12191
12248
|
paint: {
|
|
12192
|
-
'line-color': '#
|
|
12249
|
+
'line-color': '#268bd2',
|
|
12193
12250
|
'line-width': {
|
|
12194
12251
|
base: 1,
|
|
12195
12252
|
stops: [
|
|
@@ -12209,7 +12266,7 @@ var MedievalKingdomStyle = {
|
|
|
12209
12266
|
filter: ['all', ['in', 'admin_level', 2, 4], ['==', 'maritime', 1]],
|
|
12210
12267
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
12211
12268
|
paint: {
|
|
12212
|
-
'line-color': '#
|
|
12269
|
+
'line-color': '#268bd2',
|
|
12213
12270
|
'line-width': {
|
|
12214
12271
|
base: 1,
|
|
12215
12272
|
stops: [
|
|
@@ -13226,9 +13283,9 @@ var MedievalKingdomStyle = {
|
|
|
13226
13283
|
],
|
|
13227
13284
|
};
|
|
13228
13285
|
|
|
13229
|
-
var
|
|
13286
|
+
var OceanicNextStyle = {
|
|
13230
13287
|
version: 8,
|
|
13231
|
-
name: '
|
|
13288
|
+
name: 'Oceanic Next',
|
|
13232
13289
|
center: [8.542, 47.372],
|
|
13233
13290
|
zoom: 11.6,
|
|
13234
13291
|
bearing: 0,
|
|
@@ -13252,7 +13309,7 @@ var MonokaiStyle = {
|
|
|
13252
13309
|
filter: ['==', 'subclass', 'glacier'],
|
|
13253
13310
|
layout: { visibility: 'visible' },
|
|
13254
13311
|
paint: {
|
|
13255
|
-
'fill-color': '#
|
|
13312
|
+
'fill-color': '#81a1c1',
|
|
13256
13313
|
'fill-opacity': {
|
|
13257
13314
|
base: 1,
|
|
13258
13315
|
stops: [
|
|
@@ -13269,7 +13326,7 @@ var MonokaiStyle = {
|
|
|
13269
13326
|
source: 'openmaptiles',
|
|
13270
13327
|
'source-layer': 'landuse',
|
|
13271
13328
|
filter: ['==', 'class', 'residential'],
|
|
13272
|
-
paint: { 'fill-color': '#
|
|
13329
|
+
paint: { 'fill-color': '#a3be8c' },
|
|
13273
13330
|
},
|
|
13274
13331
|
{
|
|
13275
13332
|
id: 'landuse-commercial',
|
|
@@ -13278,7 +13335,7 @@ var MonokaiStyle = {
|
|
|
13278
13335
|
source: 'openmaptiles',
|
|
13279
13336
|
'source-layer': 'landuse',
|
|
13280
13337
|
filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'commercial']],
|
|
13281
|
-
paint: { 'fill-color': '#
|
|
13338
|
+
paint: { 'fill-color': '#acc598' },
|
|
13282
13339
|
},
|
|
13283
13340
|
{
|
|
13284
13341
|
id: 'landuse-industrial',
|
|
@@ -13287,7 +13344,7 @@ var MonokaiStyle = {
|
|
|
13287
13344
|
source: 'openmaptiles',
|
|
13288
13345
|
'source-layer': 'landuse',
|
|
13289
13346
|
filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'industrial']],
|
|
13290
|
-
paint: { 'fill-color': '#
|
|
13347
|
+
paint: { 'fill-color': '#b5cba3' },
|
|
13291
13348
|
},
|
|
13292
13349
|
{
|
|
13293
13350
|
id: 'park',
|
|
@@ -13297,7 +13354,7 @@ var MonokaiStyle = {
|
|
|
13297
13354
|
'source-layer': 'park',
|
|
13298
13355
|
filter: ['==', '$type', 'Polygon'],
|
|
13299
13356
|
paint: {
|
|
13300
|
-
'fill-color': '#
|
|
13357
|
+
'fill-color': '#a3be8c',
|
|
13301
13358
|
'fill-opacity': {
|
|
13302
13359
|
base: 1.8,
|
|
13303
13360
|
stops: [
|
|
@@ -13315,7 +13372,7 @@ var MonokaiStyle = {
|
|
|
13315
13372
|
'source-layer': 'park',
|
|
13316
13373
|
filter: ['==', '$type', 'Polygon'],
|
|
13317
13374
|
layout: {},
|
|
13318
|
-
paint: { 'line-color': 'rgba(
|
|
13375
|
+
paint: { 'line-color': 'rgba(163,19,14,0.6)', 'line-dasharray': [3, 3] },
|
|
13319
13376
|
},
|
|
13320
13377
|
{
|
|
13321
13378
|
id: 'landuse-cemetery',
|
|
@@ -13324,7 +13381,7 @@ var MonokaiStyle = {
|
|
|
13324
13381
|
source: 'openmaptiles',
|
|
13325
13382
|
'source-layer': 'landuse',
|
|
13326
13383
|
filter: ['==', 'class', 'cemetery'],
|
|
13327
|
-
paint: { 'fill-color': '#
|
|
13384
|
+
paint: { 'fill-color': '#cbdabe' },
|
|
13328
13385
|
},
|
|
13329
13386
|
{
|
|
13330
13387
|
id: 'landuse-hospital',
|
|
@@ -13333,7 +13390,7 @@ var MonokaiStyle = {
|
|
|
13333
13390
|
source: 'openmaptiles',
|
|
13334
13391
|
'source-layer': 'landuse',
|
|
13335
13392
|
filter: ['==', 'class', 'hospital'],
|
|
13336
|
-
paint: { 'fill-color': '#
|
|
13393
|
+
paint: { 'fill-color': '#b48ead' },
|
|
13337
13394
|
},
|
|
13338
13395
|
{
|
|
13339
13396
|
id: 'landuse-school',
|
|
@@ -13342,7 +13399,7 @@ var MonokaiStyle = {
|
|
|
13342
13399
|
source: 'openmaptiles',
|
|
13343
13400
|
'source-layer': 'landuse',
|
|
13344
13401
|
filter: ['==', 'class', 'school'],
|
|
13345
|
-
paint: { 'fill-color': 'rgba(
|
|
13402
|
+
paint: { 'fill-color': 'rgba(18,142,173,0.8)' },
|
|
13346
13403
|
},
|
|
13347
13404
|
{
|
|
13348
13405
|
id: 'landuse-railway',
|
|
@@ -13351,7 +13408,7 @@ var MonokaiStyle = {
|
|
|
13351
13408
|
source: 'openmaptiles',
|
|
13352
13409
|
'source-layer': 'landuse',
|
|
13353
13410
|
filter: ['==', 'class', 'railway'],
|
|
13354
|
-
paint: { 'fill-color': 'rgba(
|
|
13411
|
+
paint: { 'fill-color': 'rgba(118,51,8,0.4)' },
|
|
13355
13412
|
},
|
|
13356
13413
|
{
|
|
13357
13414
|
id: 'landcover-wood',
|
|
@@ -13361,7 +13418,7 @@ var MonokaiStyle = {
|
|
|
13361
13418
|
'source-layer': 'landcover',
|
|
13362
13419
|
filter: ['==', 'class', 'wood'],
|
|
13363
13420
|
paint: {
|
|
13364
|
-
'fill-color': '#
|
|
13421
|
+
'fill-color': '#81a1c1',
|
|
13365
13422
|
'fill-opacity': 0.1,
|
|
13366
13423
|
'fill-outline-color': 'hsla(0, 0%, 0%, 0.03)',
|
|
13367
13424
|
'fill-antialias': {
|
|
@@ -13380,7 +13437,7 @@ var MonokaiStyle = {
|
|
|
13380
13437
|
source: 'openmaptiles',
|
|
13381
13438
|
'source-layer': 'landcover',
|
|
13382
13439
|
filter: ['==', 'class', 'grass'],
|
|
13383
|
-
paint: { 'fill-color': '#
|
|
13440
|
+
paint: { 'fill-color': '#a3be8c', 'fill-opacity': 1 },
|
|
13384
13441
|
},
|
|
13385
13442
|
{
|
|
13386
13443
|
id: 'landcover-grass-park',
|
|
@@ -13389,7 +13446,7 @@ var MonokaiStyle = {
|
|
|
13389
13446
|
source: 'openmaptiles',
|
|
13390
13447
|
'source-layer': 'park',
|
|
13391
13448
|
filter: ['==', 'class', 'public_park'],
|
|
13392
|
-
paint: { 'fill-color': '#
|
|
13449
|
+
paint: { 'fill-color': '#a3be8c', 'fill-opacity': 0.8 },
|
|
13393
13450
|
},
|
|
13394
13451
|
{
|
|
13395
13452
|
id: 'waterway-other',
|
|
@@ -13400,7 +13457,7 @@ var MonokaiStyle = {
|
|
|
13400
13457
|
filter: ['!in', 'class', 'canal', 'river', 'stream'],
|
|
13401
13458
|
layout: { 'line-cap': 'round' },
|
|
13402
13459
|
paint: {
|
|
13403
|
-
'line-color': '#
|
|
13460
|
+
'line-color': '#8fbcbb',
|
|
13404
13461
|
'line-width': {
|
|
13405
13462
|
base: 1.3,
|
|
13406
13463
|
stops: [
|
|
@@ -13419,7 +13476,7 @@ var MonokaiStyle = {
|
|
|
13419
13476
|
filter: ['in', 'class', 'canal', 'stream'],
|
|
13420
13477
|
layout: { 'line-cap': 'round' },
|
|
13421
13478
|
paint: {
|
|
13422
|
-
'line-color': '#
|
|
13479
|
+
'line-color': '#8fbcbb',
|
|
13423
13480
|
'line-width': {
|
|
13424
13481
|
base: 1.3,
|
|
13425
13482
|
stops: [
|
|
@@ -13438,7 +13495,7 @@ var MonokaiStyle = {
|
|
|
13438
13495
|
filter: ['==', 'class', 'river'],
|
|
13439
13496
|
layout: { 'line-cap': 'round' },
|
|
13440
13497
|
paint: {
|
|
13441
|
-
'line-color': '#
|
|
13498
|
+
'line-color': '#8fbcbb',
|
|
13442
13499
|
'line-width': {
|
|
13443
13500
|
base: 1.2,
|
|
13444
13501
|
stops: [
|
|
@@ -13459,7 +13516,7 @@ var MonokaiStyle = {
|
|
|
13459
13516
|
layout: { visibility: 'visible' },
|
|
13460
13517
|
paint: {
|
|
13461
13518
|
'fill-opacity': 1,
|
|
13462
|
-
'fill-color': '#
|
|
13519
|
+
'fill-color': '#8fbcbb',
|
|
13463
13520
|
'fill-translate': {
|
|
13464
13521
|
base: 1,
|
|
13465
13522
|
stops: [
|
|
@@ -13476,7 +13533,7 @@ var MonokaiStyle = {
|
|
|
13476
13533
|
source: 'openmaptiles',
|
|
13477
13534
|
'source-layer': 'water',
|
|
13478
13535
|
layout: { visibility: 'visible' },
|
|
13479
|
-
paint: { 'fill-color': '#
|
|
13536
|
+
paint: { 'fill-color': '#5f9f9e' },
|
|
13480
13537
|
},
|
|
13481
13538
|
{
|
|
13482
13539
|
id: 'water-pattern',
|
|
@@ -13496,7 +13553,7 @@ var MonokaiStyle = {
|
|
|
13496
13553
|
filter: ['==', 'subclass', 'ice_shelf'],
|
|
13497
13554
|
layout: { visibility: 'visible' },
|
|
13498
13555
|
paint: {
|
|
13499
|
-
'fill-color': '#
|
|
13556
|
+
'fill-color': '#81a1c1',
|
|
13500
13557
|
'fill-opacity': {
|
|
13501
13558
|
base: 1,
|
|
13502
13559
|
stops: [
|
|
@@ -13512,7 +13569,7 @@ var MonokaiStyle = {
|
|
|
13512
13569
|
metadata: { 'mapbox:group': '1444849364238.8171' },
|
|
13513
13570
|
source: 'openmaptiles',
|
|
13514
13571
|
'source-layer': 'building',
|
|
13515
|
-
paint: { 'fill-color': '#
|
|
13572
|
+
paint: { 'fill-color': '#65737e', 'fill-antialias': true },
|
|
13516
13573
|
},
|
|
13517
13574
|
{
|
|
13518
13575
|
id: 'building-top',
|
|
@@ -13530,7 +13587,7 @@ var MonokaiStyle = {
|
|
|
13530
13587
|
],
|
|
13531
13588
|
},
|
|
13532
13589
|
'fill-outline-color': '#dfdbd7',
|
|
13533
|
-
'fill-color': '#
|
|
13590
|
+
'fill-color': '#7e8d98',
|
|
13534
13591
|
'fill-opacity': {
|
|
13535
13592
|
base: 1,
|
|
13536
13593
|
stops: [
|
|
@@ -13549,7 +13606,7 @@ var MonokaiStyle = {
|
|
|
13549
13606
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
|
|
13550
13607
|
layout: { 'line-join': 'round' },
|
|
13551
13608
|
paint: {
|
|
13552
|
-
'line-color': '#
|
|
13609
|
+
'line-color': '#d65d0e',
|
|
13553
13610
|
'line-dasharray': [0.5, 0.25],
|
|
13554
13611
|
'line-width': {
|
|
13555
13612
|
base: 1.2,
|
|
@@ -13570,7 +13627,7 @@ var MonokaiStyle = {
|
|
|
13570
13627
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor']],
|
|
13571
13628
|
layout: { 'line-join': 'round' },
|
|
13572
13629
|
paint: {
|
|
13573
|
-
'line-color': '#
|
|
13630
|
+
'line-color': '#d65d0e',
|
|
13574
13631
|
'line-opacity': {
|
|
13575
13632
|
stops: [
|
|
13576
13633
|
[12, 0],
|
|
@@ -13597,7 +13654,7 @@ var MonokaiStyle = {
|
|
|
13597
13654
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
|
|
13598
13655
|
layout: { 'line-join': 'round' },
|
|
13599
13656
|
paint: {
|
|
13600
|
-
'line-color': '#
|
|
13657
|
+
'line-color': '#d65d0e',
|
|
13601
13658
|
'line-opacity': 1,
|
|
13602
13659
|
'line-width': {
|
|
13603
13660
|
base: 1.2,
|
|
@@ -13617,7 +13674,7 @@ var MonokaiStyle = {
|
|
|
13617
13674
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
|
|
13618
13675
|
layout: { 'line-join': 'round' },
|
|
13619
13676
|
paint: {
|
|
13620
|
-
'line-color': '#
|
|
13677
|
+
'line-color': '#d65d0e',
|
|
13621
13678
|
'line-width': {
|
|
13622
13679
|
base: 1.2,
|
|
13623
13680
|
stops: [
|
|
@@ -13638,7 +13695,7 @@ var MonokaiStyle = {
|
|
|
13638
13695
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
|
|
13639
13696
|
layout: { 'line-join': 'round', visibility: 'visible' },
|
|
13640
13697
|
paint: {
|
|
13641
|
-
'line-color': '#
|
|
13698
|
+
'line-color': '#d65d0e',
|
|
13642
13699
|
'line-dasharray': [0.5, 0.25],
|
|
13643
13700
|
'line-width': {
|
|
13644
13701
|
base: 1.2,
|
|
@@ -13663,7 +13720,7 @@ var MonokaiStyle = {
|
|
|
13663
13720
|
['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'path']],
|
|
13664
13721
|
],
|
|
13665
13722
|
paint: {
|
|
13666
|
-
'line-color': '#
|
|
13723
|
+
'line-color': '#f17626',
|
|
13667
13724
|
'line-dasharray': [1.5, 0.75],
|
|
13668
13725
|
'line-width': {
|
|
13669
13726
|
base: 1.2,
|
|
@@ -13683,7 +13740,7 @@ var MonokaiStyle = {
|
|
|
13683
13740
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
|
|
13684
13741
|
layout: { 'line-join': 'round' },
|
|
13685
13742
|
paint: {
|
|
13686
|
-
'line-color': '#
|
|
13743
|
+
'line-color': '#f17626',
|
|
13687
13744
|
'line-width': {
|
|
13688
13745
|
base: 1.2,
|
|
13689
13746
|
stops: [
|
|
@@ -13703,7 +13760,7 @@ var MonokaiStyle = {
|
|
|
13703
13760
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor_road']],
|
|
13704
13761
|
layout: { 'line-join': 'round' },
|
|
13705
13762
|
paint: {
|
|
13706
|
-
'line-color': '#
|
|
13763
|
+
'line-color': '#f17626',
|
|
13707
13764
|
'line-opacity': 1,
|
|
13708
13765
|
'line-width': {
|
|
13709
13766
|
base: 1.2,
|
|
@@ -13724,7 +13781,7 @@ var MonokaiStyle = {
|
|
|
13724
13781
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
|
|
13725
13782
|
layout: { 'line-join': 'round' },
|
|
13726
13783
|
paint: {
|
|
13727
|
-
'line-color': '#
|
|
13784
|
+
'line-color': '#f2853e',
|
|
13728
13785
|
'line-width': {
|
|
13729
13786
|
base: 1.2,
|
|
13730
13787
|
stops: [
|
|
@@ -13744,7 +13801,7 @@ var MonokaiStyle = {
|
|
|
13744
13801
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
|
|
13745
13802
|
layout: { 'line-join': 'round' },
|
|
13746
13803
|
paint: {
|
|
13747
|
-
'line-color': '#
|
|
13804
|
+
'line-color': '#d65d0e',
|
|
13748
13805
|
'line-width': {
|
|
13749
13806
|
base: 1.2,
|
|
13750
13807
|
stops: [
|
|
@@ -13764,7 +13821,7 @@ var MonokaiStyle = {
|
|
|
13764
13821
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
|
|
13765
13822
|
layout: { 'line-join': 'round', visibility: 'visible' },
|
|
13766
13823
|
paint: {
|
|
13767
|
-
'line-color': 'rgba(
|
|
13824
|
+
'line-color': 'rgba(235,219,178,0.8)',
|
|
13768
13825
|
'line-width': {
|
|
13769
13826
|
base: 1.2,
|
|
13770
13827
|
stops: [
|
|
@@ -13783,7 +13840,7 @@ var MonokaiStyle = {
|
|
|
13783
13840
|
'source-layer': 'transportation',
|
|
13784
13841
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'rail']],
|
|
13785
13842
|
paint: {
|
|
13786
|
-
'line-color': '#
|
|
13843
|
+
'line-color': '#763308',
|
|
13787
13844
|
'line-width': {
|
|
13788
13845
|
base: 1.4,
|
|
13789
13846
|
stops: [
|
|
@@ -13805,7 +13862,7 @@ var MonokaiStyle = {
|
|
|
13805
13862
|
filter: ['all', ['in', 'class', 'taxiway']],
|
|
13806
13863
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
13807
13864
|
paint: {
|
|
13808
|
-
'line-color': '#
|
|
13865
|
+
'line-color': '#763308',
|
|
13809
13866
|
'line-width': {
|
|
13810
13867
|
base: 1.5,
|
|
13811
13868
|
stops: [
|
|
@@ -13826,7 +13883,7 @@ var MonokaiStyle = {
|
|
|
13826
13883
|
filter: ['all', ['in', 'class', 'runway']],
|
|
13827
13884
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
13828
13885
|
paint: {
|
|
13829
|
-
'line-color': '#
|
|
13886
|
+
'line-color': '#763308',
|
|
13830
13887
|
'line-width': {
|
|
13831
13888
|
base: 1.5,
|
|
13832
13889
|
stops: [
|
|
@@ -13854,7 +13911,7 @@ var MonokaiStyle = {
|
|
|
13854
13911
|
[14, 1],
|
|
13855
13912
|
],
|
|
13856
13913
|
},
|
|
13857
|
-
'fill-color': 'rgba(
|
|
13914
|
+
'fill-color': 'rgba(214,93,14,0.5)',
|
|
13858
13915
|
},
|
|
13859
13916
|
},
|
|
13860
13917
|
{
|
|
@@ -13867,7 +13924,7 @@ var MonokaiStyle = {
|
|
|
13867
13924
|
filter: ['all', ['in', 'class', 'taxiway'], ['==', '$type', 'LineString']],
|
|
13868
13925
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
13869
13926
|
paint: {
|
|
13870
|
-
'line-color': '#
|
|
13927
|
+
'line-color': '#f2853e',
|
|
13871
13928
|
'line-width': {
|
|
13872
13929
|
base: 1.5,
|
|
13873
13930
|
stops: [
|
|
@@ -13894,7 +13951,7 @@ var MonokaiStyle = {
|
|
|
13894
13951
|
filter: ['all', ['in', 'class', 'runway'], ['==', '$type', 'LineString']],
|
|
13895
13952
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
13896
13953
|
paint: {
|
|
13897
|
-
'line-color': '#
|
|
13954
|
+
'line-color': '#f2853e',
|
|
13898
13955
|
'line-width': {
|
|
13899
13956
|
base: 1.5,
|
|
13900
13957
|
stops: [
|
|
@@ -13920,7 +13977,7 @@ var MonokaiStyle = {
|
|
|
13920
13977
|
filter: ['==', '$type', 'Polygon'],
|
|
13921
13978
|
layout: { visibility: 'visible' },
|
|
13922
13979
|
paint: {
|
|
13923
|
-
'fill-color': '#
|
|
13980
|
+
'fill-color': '#a6480b',
|
|
13924
13981
|
'fill-outline-color': '#cfcdca',
|
|
13925
13982
|
'fill-opacity': 0.9,
|
|
13926
13983
|
'fill-antialias': false,
|
|
@@ -13936,7 +13993,7 @@ var MonokaiStyle = {
|
|
|
13936
13993
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
|
|
13937
13994
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
13938
13995
|
paint: {
|
|
13939
|
-
'line-color': '#
|
|
13996
|
+
'line-color': '#d65d0e',
|
|
13940
13997
|
'line-opacity': 1,
|
|
13941
13998
|
'line-width': {
|
|
13942
13999
|
base: 1.2,
|
|
@@ -13963,7 +14020,7 @@ var MonokaiStyle = {
|
|
|
13963
14020
|
],
|
|
13964
14021
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
13965
14022
|
paint: {
|
|
13966
|
-
'line-color': '#
|
|
14023
|
+
'line-color': '#d65d0e',
|
|
13967
14024
|
'line-opacity': 1,
|
|
13968
14025
|
'line-width': {
|
|
13969
14026
|
base: 1.2,
|
|
@@ -13989,7 +14046,7 @@ var MonokaiStyle = {
|
|
|
13989
14046
|
],
|
|
13990
14047
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
13991
14048
|
paint: {
|
|
13992
|
-
'line-color': 'rgba(
|
|
14049
|
+
'line-color': 'rgba(214,93,14,0.8)',
|
|
13993
14050
|
'line-opacity': {
|
|
13994
14051
|
stops: [
|
|
13995
14052
|
[12, 0],
|
|
@@ -14020,7 +14077,7 @@ var MonokaiStyle = {
|
|
|
14020
14077
|
],
|
|
14021
14078
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
14022
14079
|
paint: {
|
|
14023
|
-
'line-color': '#
|
|
14080
|
+
'line-color': '#d65d0e',
|
|
14024
14081
|
'line-opacity': 1,
|
|
14025
14082
|
'line-width': {
|
|
14026
14083
|
base: 1.2,
|
|
@@ -14041,7 +14098,7 @@ var MonokaiStyle = {
|
|
|
14041
14098
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'primary']],
|
|
14042
14099
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
14043
14100
|
paint: {
|
|
14044
|
-
'line-color': '#
|
|
14101
|
+
'line-color': '#d65d0e',
|
|
14045
14102
|
'line-opacity': {
|
|
14046
14103
|
stops: [
|
|
14047
14104
|
[7, 0],
|
|
@@ -14069,7 +14126,7 @@ var MonokaiStyle = {
|
|
|
14069
14126
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'trunk']],
|
|
14070
14127
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
14071
14128
|
paint: {
|
|
14072
|
-
'line-color': '#
|
|
14129
|
+
'line-color': '#d65d0e',
|
|
14073
14130
|
'line-opacity': {
|
|
14074
14131
|
stops: [
|
|
14075
14132
|
[5, 0],
|
|
@@ -14097,7 +14154,7 @@ var MonokaiStyle = {
|
|
|
14097
14154
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway']],
|
|
14098
14155
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
14099
14156
|
paint: {
|
|
14100
|
-
'line-color': '#
|
|
14157
|
+
'line-color': '#d65d0e',
|
|
14101
14158
|
'line-width': {
|
|
14102
14159
|
base: 1.2,
|
|
14103
14160
|
stops: [
|
|
@@ -14128,7 +14185,7 @@ var MonokaiStyle = {
|
|
|
14128
14185
|
['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'path']],
|
|
14129
14186
|
],
|
|
14130
14187
|
paint: {
|
|
14131
|
-
'line-color': '#
|
|
14188
|
+
'line-color': '#b48ead',
|
|
14132
14189
|
'line-dasharray': [1.5, 0.75],
|
|
14133
14190
|
'line-width': {
|
|
14134
14191
|
base: 1.2,
|
|
@@ -14149,7 +14206,7 @@ var MonokaiStyle = {
|
|
|
14149
14206
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
|
|
14150
14207
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
14151
14208
|
paint: {
|
|
14152
|
-
'line-color': '#
|
|
14209
|
+
'line-color': '#ebdbb2',
|
|
14153
14210
|
'line-width': {
|
|
14154
14211
|
base: 1.2,
|
|
14155
14212
|
stops: [
|
|
@@ -14175,7 +14232,7 @@ var MonokaiStyle = {
|
|
|
14175
14232
|
],
|
|
14176
14233
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
14177
14234
|
paint: {
|
|
14178
|
-
'line-color': '#
|
|
14235
|
+
'line-color': '#ebdbb2',
|
|
14179
14236
|
'line-width': {
|
|
14180
14237
|
base: 1.2,
|
|
14181
14238
|
stops: [
|
|
@@ -14200,7 +14257,7 @@ var MonokaiStyle = {
|
|
|
14200
14257
|
],
|
|
14201
14258
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
14202
14259
|
paint: {
|
|
14203
|
-
'line-color': '#
|
|
14260
|
+
'line-color': '#f49456',
|
|
14204
14261
|
'line-opacity': 1,
|
|
14205
14262
|
'line-width': {
|
|
14206
14263
|
base: 1.2,
|
|
@@ -14225,7 +14282,7 @@ var MonokaiStyle = {
|
|
|
14225
14282
|
],
|
|
14226
14283
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
14227
14284
|
paint: {
|
|
14228
|
-
'line-color': '#
|
|
14285
|
+
'line-color': '#ebdbb2',
|
|
14229
14286
|
'line-width': {
|
|
14230
14287
|
base: 1.2,
|
|
14231
14288
|
stops: [
|
|
@@ -14249,7 +14306,7 @@ var MonokaiStyle = {
|
|
|
14249
14306
|
],
|
|
14250
14307
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
14251
14308
|
paint: {
|
|
14252
|
-
'line-color': '#
|
|
14309
|
+
'line-color': '#ebdbb2',
|
|
14253
14310
|
'line-width': {
|
|
14254
14311
|
base: 1.2,
|
|
14255
14312
|
stops: [
|
|
@@ -14273,7 +14330,7 @@ var MonokaiStyle = {
|
|
|
14273
14330
|
],
|
|
14274
14331
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
14275
14332
|
paint: {
|
|
14276
|
-
'line-color': '#
|
|
14333
|
+
'line-color': '#ebdbb2',
|
|
14277
14334
|
'line-width': {
|
|
14278
14335
|
base: 1.2,
|
|
14279
14336
|
stops: [
|
|
@@ -14298,7 +14355,7 @@ var MonokaiStyle = {
|
|
|
14298
14355
|
],
|
|
14299
14356
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
14300
14357
|
paint: {
|
|
14301
|
-
'line-color': '#
|
|
14358
|
+
'line-color': '#ebdbb2',
|
|
14302
14359
|
'line-width': {
|
|
14303
14360
|
base: 1.2,
|
|
14304
14361
|
stops: [
|
|
@@ -14321,7 +14378,7 @@ var MonokaiStyle = {
|
|
|
14321
14378
|
['all', ['==', 'class', 'rail'], ['has', 'service']],
|
|
14322
14379
|
],
|
|
14323
14380
|
paint: {
|
|
14324
|
-
'line-color': 'rgba(
|
|
14381
|
+
'line-color': 'rgba(118,51,8,0.7)',
|
|
14325
14382
|
'line-width': {
|
|
14326
14383
|
base: 1.4,
|
|
14327
14384
|
stops: [
|
|
@@ -14344,7 +14401,7 @@ var MonokaiStyle = {
|
|
|
14344
14401
|
],
|
|
14345
14402
|
layout: { visibility: 'visible' },
|
|
14346
14403
|
paint: {
|
|
14347
|
-
'line-color': 'rgba(
|
|
14404
|
+
'line-color': 'rgba(118,51,8,0.7)',
|
|
14348
14405
|
'line-dasharray': [0.2, 8],
|
|
14349
14406
|
'line-width': {
|
|
14350
14407
|
base: 1.4,
|
|
@@ -14373,7 +14430,7 @@ var MonokaiStyle = {
|
|
|
14373
14430
|
],
|
|
14374
14431
|
],
|
|
14375
14432
|
paint: {
|
|
14376
|
-
'line-color': '#
|
|
14433
|
+
'line-color': '#763308',
|
|
14377
14434
|
'line-width': {
|
|
14378
14435
|
base: 1.4,
|
|
14379
14436
|
stops: [
|
|
@@ -14401,7 +14458,7 @@ var MonokaiStyle = {
|
|
|
14401
14458
|
],
|
|
14402
14459
|
],
|
|
14403
14460
|
paint: {
|
|
14404
|
-
'line-color': '#
|
|
14461
|
+
'line-color': '#763308',
|
|
14405
14462
|
'line-dasharray': [0.2, 8],
|
|
14406
14463
|
'line-width': {
|
|
14407
14464
|
base: 1.4,
|
|
@@ -14422,7 +14479,7 @@ var MonokaiStyle = {
|
|
|
14422
14479
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
|
|
14423
14480
|
layout: { 'line-join': 'round' },
|
|
14424
14481
|
paint: {
|
|
14425
|
-
'line-color': '#
|
|
14482
|
+
'line-color': '#d65d0e',
|
|
14426
14483
|
'line-opacity': 1,
|
|
14427
14484
|
'line-width': {
|
|
14428
14485
|
base: 1.2,
|
|
@@ -14448,7 +14505,7 @@ var MonokaiStyle = {
|
|
|
14448
14505
|
],
|
|
14449
14506
|
layout: { 'line-join': 'round' },
|
|
14450
14507
|
paint: {
|
|
14451
|
-
'line-color': '#
|
|
14508
|
+
'line-color': '#d65d0e',
|
|
14452
14509
|
'line-opacity': 1,
|
|
14453
14510
|
'line-width': {
|
|
14454
14511
|
base: 1.2,
|
|
@@ -14470,7 +14527,7 @@ var MonokaiStyle = {
|
|
|
14470
14527
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
|
|
14471
14528
|
layout: { 'line-join': 'round' },
|
|
14472
14529
|
paint: {
|
|
14473
|
-
'line-color': '#
|
|
14530
|
+
'line-color': '#d65d0e',
|
|
14474
14531
|
'line-opacity': 1,
|
|
14475
14532
|
'line-width': {
|
|
14476
14533
|
base: 1.2,
|
|
@@ -14490,7 +14547,7 @@ var MonokaiStyle = {
|
|
|
14490
14547
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
|
|
14491
14548
|
layout: { 'line-join': 'round' },
|
|
14492
14549
|
paint: {
|
|
14493
|
-
'line-color': '#
|
|
14550
|
+
'line-color': '#d65d0e',
|
|
14494
14551
|
'line-width': {
|
|
14495
14552
|
base: 1.2,
|
|
14496
14553
|
stops: [
|
|
@@ -14511,7 +14568,7 @@ var MonokaiStyle = {
|
|
|
14511
14568
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
|
|
14512
14569
|
layout: { 'line-join': 'round' },
|
|
14513
14570
|
paint: {
|
|
14514
|
-
'line-color': '#
|
|
14571
|
+
'line-color': '#d65d0e',
|
|
14515
14572
|
'line-width': {
|
|
14516
14573
|
base: 1.2,
|
|
14517
14574
|
stops: [
|
|
@@ -14535,7 +14592,7 @@ var MonokaiStyle = {
|
|
|
14535
14592
|
['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
|
|
14536
14593
|
],
|
|
14537
14594
|
paint: {
|
|
14538
|
-
'line-color': '#
|
|
14595
|
+
'line-color': '#f17626',
|
|
14539
14596
|
'line-width': {
|
|
14540
14597
|
base: 1.2,
|
|
14541
14598
|
stops: [
|
|
@@ -14557,7 +14614,7 @@ var MonokaiStyle = {
|
|
|
14557
14614
|
['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
|
|
14558
14615
|
],
|
|
14559
14616
|
paint: {
|
|
14560
|
-
'line-color': '#
|
|
14617
|
+
'line-color': '#b48ead',
|
|
14561
14618
|
'line-width': {
|
|
14562
14619
|
base: 1.2,
|
|
14563
14620
|
stops: [
|
|
@@ -14577,7 +14634,7 @@ var MonokaiStyle = {
|
|
|
14577
14634
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
|
|
14578
14635
|
layout: { 'line-join': 'round' },
|
|
14579
14636
|
paint: {
|
|
14580
|
-
'line-color': '#
|
|
14637
|
+
'line-color': '#ebdbb2',
|
|
14581
14638
|
'line-width': {
|
|
14582
14639
|
base: 1.2,
|
|
14583
14640
|
stops: [
|
|
@@ -14602,7 +14659,7 @@ var MonokaiStyle = {
|
|
|
14602
14659
|
],
|
|
14603
14660
|
layout: { 'line-join': 'round' },
|
|
14604
14661
|
paint: {
|
|
14605
|
-
'line-color': '#
|
|
14662
|
+
'line-color': '#ebdbb2',
|
|
14606
14663
|
'line-width': {
|
|
14607
14664
|
base: 1.2,
|
|
14608
14665
|
stops: [
|
|
@@ -14623,7 +14680,7 @@ var MonokaiStyle = {
|
|
|
14623
14680
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
|
|
14624
14681
|
layout: { 'line-join': 'round' },
|
|
14625
14682
|
paint: {
|
|
14626
|
-
'line-color': '#
|
|
14683
|
+
'line-color': '#ebdbb2',
|
|
14627
14684
|
'line-width': {
|
|
14628
14685
|
base: 1.2,
|
|
14629
14686
|
stops: [
|
|
@@ -14643,7 +14700,7 @@ var MonokaiStyle = {
|
|
|
14643
14700
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
|
|
14644
14701
|
layout: { 'line-join': 'round' },
|
|
14645
14702
|
paint: {
|
|
14646
|
-
'line-color': '#
|
|
14703
|
+
'line-color': '#ebdbb2',
|
|
14647
14704
|
'line-width': {
|
|
14648
14705
|
base: 1.2,
|
|
14649
14706
|
stops: [
|
|
@@ -14663,7 +14720,7 @@ var MonokaiStyle = {
|
|
|
14663
14720
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
|
|
14664
14721
|
layout: { 'line-join': 'round' },
|
|
14665
14722
|
paint: {
|
|
14666
|
-
'line-color': '#
|
|
14723
|
+
'line-color': '#ebdbb2',
|
|
14667
14724
|
'line-width': {
|
|
14668
14725
|
base: 1.2,
|
|
14669
14726
|
stops: [
|
|
@@ -14682,7 +14739,7 @@ var MonokaiStyle = {
|
|
|
14682
14739
|
'source-layer': 'transportation',
|
|
14683
14740
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
|
|
14684
14741
|
paint: {
|
|
14685
|
-
'line-color': '#
|
|
14742
|
+
'line-color': '#763308',
|
|
14686
14743
|
'line-width': {
|
|
14687
14744
|
base: 1.4,
|
|
14688
14745
|
stops: [
|
|
@@ -14701,7 +14758,7 @@ var MonokaiStyle = {
|
|
|
14701
14758
|
'source-layer': 'transportation',
|
|
14702
14759
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
|
|
14703
14760
|
paint: {
|
|
14704
|
-
'line-color': '#
|
|
14761
|
+
'line-color': '#763308',
|
|
14705
14762
|
'line-dasharray': [0.2, 8],
|
|
14706
14763
|
'line-width': {
|
|
14707
14764
|
base: 1.4,
|
|
@@ -14721,7 +14778,7 @@ var MonokaiStyle = {
|
|
|
14721
14778
|
filter: ['all', ['in', 'admin_level', 4, 6, 8], ['!=', 'maritime', 1]],
|
|
14722
14779
|
layout: { 'line-join': 'round' },
|
|
14723
14780
|
paint: {
|
|
14724
|
-
'line-color': '#
|
|
14781
|
+
'line-color': '#8fbcbb',
|
|
14725
14782
|
'line-dasharray': [3, 1, 1, 1],
|
|
14726
14783
|
'line-width': {
|
|
14727
14784
|
base: 1.4,
|
|
@@ -14741,7 +14798,7 @@ var MonokaiStyle = {
|
|
|
14741
14798
|
filter: ['all', ['==', 'admin_level', 2], ['!=', 'maritime', 1]],
|
|
14742
14799
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
14743
14800
|
paint: {
|
|
14744
|
-
'line-color': '#
|
|
14801
|
+
'line-color': '#8fbcbb',
|
|
14745
14802
|
'line-width': {
|
|
14746
14803
|
base: 1,
|
|
14747
14804
|
stops: [
|
|
@@ -14761,7 +14818,7 @@ var MonokaiStyle = {
|
|
|
14761
14818
|
filter: ['all', ['in', 'admin_level', 2, 4], ['==', 'maritime', 1]],
|
|
14762
14819
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
14763
14820
|
paint: {
|
|
14764
|
-
'line-color': '#
|
|
14821
|
+
'line-color': '#8fbcbb',
|
|
14765
14822
|
'line-width': {
|
|
14766
14823
|
base: 1,
|
|
14767
14824
|
stops: [
|
|
@@ -15778,9 +15835,9 @@ var MonokaiStyle = {
|
|
|
15778
15835
|
],
|
|
15779
15836
|
};
|
|
15780
15837
|
|
|
15781
|
-
var
|
|
15838
|
+
var MedievalKingdomStyle = {
|
|
15782
15839
|
version: 8,
|
|
15783
|
-
name: '
|
|
15840
|
+
name: 'Medieval Kingdom',
|
|
15784
15841
|
center: [8.542, 47.372],
|
|
15785
15842
|
zoom: 11.6,
|
|
15786
15843
|
bearing: 0,
|
|
@@ -15794,7 +15851,7 @@ var OceanicNextStyle = {
|
|
|
15794
15851
|
sprite: config.sprite,
|
|
15795
15852
|
glyphs: config.glyphs,
|
|
15796
15853
|
layers: [
|
|
15797
|
-
{ id: 'background', type: 'background', paint: { 'background-color': '#
|
|
15854
|
+
{ id: 'background', type: 'background', paint: { 'background-color': '#ffd1a8' } },
|
|
15798
15855
|
{
|
|
15799
15856
|
id: 'landcover-glacier',
|
|
15800
15857
|
type: 'fill',
|
|
@@ -15804,7 +15861,7 @@ var OceanicNextStyle = {
|
|
|
15804
15861
|
filter: ['==', 'subclass', 'glacier'],
|
|
15805
15862
|
layout: { visibility: 'visible' },
|
|
15806
15863
|
paint: {
|
|
15807
|
-
'fill-color': '#
|
|
15864
|
+
'fill-color': '#228B22',
|
|
15808
15865
|
'fill-opacity': {
|
|
15809
15866
|
base: 1,
|
|
15810
15867
|
stops: [
|
|
@@ -15821,7 +15878,7 @@ var OceanicNextStyle = {
|
|
|
15821
15878
|
source: 'openmaptiles',
|
|
15822
15879
|
'source-layer': 'landuse',
|
|
15823
15880
|
filter: ['==', 'class', 'residential'],
|
|
15824
|
-
paint: { 'fill-color': '#
|
|
15881
|
+
paint: { 'fill-color': '#bfa677' },
|
|
15825
15882
|
},
|
|
15826
15883
|
{
|
|
15827
15884
|
id: 'landuse-commercial',
|
|
@@ -15830,7 +15887,7 @@ var OceanicNextStyle = {
|
|
|
15830
15887
|
source: 'openmaptiles',
|
|
15831
15888
|
'source-layer': 'landuse',
|
|
15832
15889
|
filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'commercial']],
|
|
15833
|
-
paint: { 'fill-color': '#
|
|
15890
|
+
paint: { 'fill-color': '#c5af85' },
|
|
15834
15891
|
},
|
|
15835
15892
|
{
|
|
15836
15893
|
id: 'landuse-industrial',
|
|
@@ -15839,7 +15896,7 @@ var OceanicNextStyle = {
|
|
|
15839
15896
|
source: 'openmaptiles',
|
|
15840
15897
|
'source-layer': 'landuse',
|
|
15841
15898
|
filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'industrial']],
|
|
15842
|
-
paint: { 'fill-color': '#
|
|
15899
|
+
paint: { 'fill-color': '#ccb892' },
|
|
15843
15900
|
},
|
|
15844
15901
|
{
|
|
15845
15902
|
id: 'park',
|
|
@@ -15849,7 +15906,7 @@ var OceanicNextStyle = {
|
|
|
15849
15906
|
'source-layer': 'park',
|
|
15850
15907
|
filter: ['==', '$type', 'Polygon'],
|
|
15851
15908
|
paint: {
|
|
15852
|
-
'fill-color': '#
|
|
15909
|
+
'fill-color': '#556B2F',
|
|
15853
15910
|
'fill-opacity': {
|
|
15854
15911
|
base: 1.8,
|
|
15855
15912
|
stops: [
|
|
@@ -15867,7 +15924,7 @@ var OceanicNextStyle = {
|
|
|
15867
15924
|
'source-layer': 'park',
|
|
15868
15925
|
filter: ['==', '$type', 'Polygon'],
|
|
15869
15926
|
layout: {},
|
|
15870
|
-
paint: { 'line-color': 'rgba(
|
|
15927
|
+
paint: { 'line-color': 'rgba(85,107,47,0.6)', 'line-dasharray': [3, 3] },
|
|
15871
15928
|
},
|
|
15872
15929
|
{
|
|
15873
15930
|
id: 'landuse-cemetery',
|
|
@@ -15876,7 +15933,7 @@ var OceanicNextStyle = {
|
|
|
15876
15933
|
source: 'openmaptiles',
|
|
15877
15934
|
'source-layer': 'landuse',
|
|
15878
15935
|
filter: ['==', 'class', 'cemetery'],
|
|
15879
|
-
paint: { 'fill-color': '#
|
|
15936
|
+
paint: { 'fill-color': '#d1e0b8' },
|
|
15880
15937
|
},
|
|
15881
15938
|
{
|
|
15882
15939
|
id: 'landuse-hospital',
|
|
@@ -15885,7 +15942,7 @@ var OceanicNextStyle = {
|
|
|
15885
15942
|
source: 'openmaptiles',
|
|
15886
15943
|
'source-layer': 'landuse',
|
|
15887
15944
|
filter: ['==', 'class', 'hospital'],
|
|
15888
|
-
paint: { 'fill-color': '#
|
|
15945
|
+
paint: { 'fill-color': '#FFC0CB' },
|
|
15889
15946
|
},
|
|
15890
15947
|
{
|
|
15891
15948
|
id: 'landuse-school',
|
|
@@ -15894,7 +15951,7 @@ var OceanicNextStyle = {
|
|
|
15894
15951
|
source: 'openmaptiles',
|
|
15895
15952
|
'source-layer': 'landuse',
|
|
15896
15953
|
filter: ['==', 'class', 'school'],
|
|
15897
|
-
paint: { 'fill-color': 'rgba(
|
|
15954
|
+
paint: { 'fill-color': 'rgba(255,192,203,0.8)' },
|
|
15898
15955
|
},
|
|
15899
15956
|
{
|
|
15900
15957
|
id: 'landuse-railway',
|
|
@@ -15903,7 +15960,7 @@ var OceanicNextStyle = {
|
|
|
15903
15960
|
source: 'openmaptiles',
|
|
15904
15961
|
'source-layer': 'landuse',
|
|
15905
15962
|
filter: ['==', 'class', 'railway'],
|
|
15906
|
-
paint: { 'fill-color': 'rgba(
|
|
15963
|
+
paint: { 'fill-color': 'rgba(149,46,46,0.4)' },
|
|
15907
15964
|
},
|
|
15908
15965
|
{
|
|
15909
15966
|
id: 'landcover-wood',
|
|
@@ -15913,7 +15970,7 @@ var OceanicNextStyle = {
|
|
|
15913
15970
|
'source-layer': 'landcover',
|
|
15914
15971
|
filter: ['==', 'class', 'wood'],
|
|
15915
15972
|
paint: {
|
|
15916
|
-
'fill-color': '#
|
|
15973
|
+
'fill-color': '#228B22',
|
|
15917
15974
|
'fill-opacity': 0.1,
|
|
15918
15975
|
'fill-outline-color': 'hsla(0, 0%, 0%, 0.03)',
|
|
15919
15976
|
'fill-antialias': {
|
|
@@ -15932,7 +15989,7 @@ var OceanicNextStyle = {
|
|
|
15932
15989
|
source: 'openmaptiles',
|
|
15933
15990
|
'source-layer': 'landcover',
|
|
15934
15991
|
filter: ['==', 'class', 'grass'],
|
|
15935
|
-
paint: { 'fill-color': '#
|
|
15992
|
+
paint: { 'fill-color': '#556B2F', 'fill-opacity': 1 },
|
|
15936
15993
|
},
|
|
15937
15994
|
{
|
|
15938
15995
|
id: 'landcover-grass-park',
|
|
@@ -15941,7 +15998,7 @@ var OceanicNextStyle = {
|
|
|
15941
15998
|
source: 'openmaptiles',
|
|
15942
15999
|
'source-layer': 'park',
|
|
15943
16000
|
filter: ['==', 'class', 'public_park'],
|
|
15944
|
-
paint: { 'fill-color': '#
|
|
16001
|
+
paint: { 'fill-color': '#556B2F', 'fill-opacity': 0.8 },
|
|
15945
16002
|
},
|
|
15946
16003
|
{
|
|
15947
16004
|
id: 'waterway-other',
|
|
@@ -15952,7 +16009,7 @@ var OceanicNextStyle = {
|
|
|
15952
16009
|
filter: ['!in', 'class', 'canal', 'river', 'stream'],
|
|
15953
16010
|
layout: { 'line-cap': 'round' },
|
|
15954
16011
|
paint: {
|
|
15955
|
-
'line-color': '#
|
|
16012
|
+
'line-color': '#1E90FF',
|
|
15956
16013
|
'line-width': {
|
|
15957
16014
|
base: 1.3,
|
|
15958
16015
|
stops: [
|
|
@@ -15971,7 +16028,7 @@ var OceanicNextStyle = {
|
|
|
15971
16028
|
filter: ['in', 'class', 'canal', 'stream'],
|
|
15972
16029
|
layout: { 'line-cap': 'round' },
|
|
15973
16030
|
paint: {
|
|
15974
|
-
'line-color': '#
|
|
16031
|
+
'line-color': '#1E90FF',
|
|
15975
16032
|
'line-width': {
|
|
15976
16033
|
base: 1.3,
|
|
15977
16034
|
stops: [
|
|
@@ -15990,7 +16047,7 @@ var OceanicNextStyle = {
|
|
|
15990
16047
|
filter: ['==', 'class', 'river'],
|
|
15991
16048
|
layout: { 'line-cap': 'round' },
|
|
15992
16049
|
paint: {
|
|
15993
|
-
'line-color': '#
|
|
16050
|
+
'line-color': '#1E90FF',
|
|
15994
16051
|
'line-width': {
|
|
15995
16052
|
base: 1.2,
|
|
15996
16053
|
stops: [
|
|
@@ -16011,7 +16068,7 @@ var OceanicNextStyle = {
|
|
|
16011
16068
|
layout: { visibility: 'visible' },
|
|
16012
16069
|
paint: {
|
|
16013
16070
|
'fill-opacity': 1,
|
|
16014
|
-
'fill-color': '#
|
|
16071
|
+
'fill-color': '#1E90FF',
|
|
16015
16072
|
'fill-translate': {
|
|
16016
16073
|
base: 1,
|
|
16017
16074
|
stops: [
|
|
@@ -16028,7 +16085,7 @@ var OceanicNextStyle = {
|
|
|
16028
16085
|
source: 'openmaptiles',
|
|
16029
16086
|
'source-layer': 'water',
|
|
16030
16087
|
layout: { visibility: 'visible' },
|
|
16031
|
-
paint: { 'fill-color': '#
|
|
16088
|
+
paint: { 'fill-color': '#006ad1' },
|
|
16032
16089
|
},
|
|
16033
16090
|
{
|
|
16034
16091
|
id: 'water-pattern',
|
|
@@ -16048,7 +16105,7 @@ var OceanicNextStyle = {
|
|
|
16048
16105
|
filter: ['==', 'subclass', 'ice_shelf'],
|
|
16049
16106
|
layout: { visibility: 'visible' },
|
|
16050
16107
|
paint: {
|
|
16051
|
-
'fill-color': '#
|
|
16108
|
+
'fill-color': '#228B22',
|
|
16052
16109
|
'fill-opacity': {
|
|
16053
16110
|
base: 1,
|
|
16054
16111
|
stops: [
|
|
@@ -16064,7 +16121,7 @@ var OceanicNextStyle = {
|
|
|
16064
16121
|
metadata: { 'mapbox:group': '1444849364238.8171' },
|
|
16065
16122
|
source: 'openmaptiles',
|
|
16066
16123
|
'source-layer': 'building',
|
|
16067
|
-
paint: { 'fill-color': '#
|
|
16124
|
+
paint: { 'fill-color': '#f9e9cb', 'fill-antialias': true },
|
|
16068
16125
|
},
|
|
16069
16126
|
{
|
|
16070
16127
|
id: 'building-top',
|
|
@@ -16082,7 +16139,7 @@ var OceanicNextStyle = {
|
|
|
16082
16139
|
],
|
|
16083
16140
|
},
|
|
16084
16141
|
'fill-outline-color': '#dfdbd7',
|
|
16085
|
-
'fill-color': '#
|
|
16142
|
+
'fill-color': '#fefcf9',
|
|
16086
16143
|
'fill-opacity': {
|
|
16087
16144
|
base: 1,
|
|
16088
16145
|
stops: [
|
|
@@ -16101,7 +16158,7 @@ var OceanicNextStyle = {
|
|
|
16101
16158
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
|
|
16102
16159
|
layout: { 'line-join': 'round' },
|
|
16103
16160
|
paint: {
|
|
16104
|
-
'line-color': '#
|
|
16161
|
+
'line-color': '#CD5C5C',
|
|
16105
16162
|
'line-dasharray': [0.5, 0.25],
|
|
16106
16163
|
'line-width': {
|
|
16107
16164
|
base: 1.2,
|
|
@@ -16122,7 +16179,7 @@ var OceanicNextStyle = {
|
|
|
16122
16179
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor']],
|
|
16123
16180
|
layout: { 'line-join': 'round' },
|
|
16124
16181
|
paint: {
|
|
16125
|
-
'line-color': '#
|
|
16182
|
+
'line-color': '#CD5C5C',
|
|
16126
16183
|
'line-opacity': {
|
|
16127
16184
|
stops: [
|
|
16128
16185
|
[12, 0],
|
|
@@ -16149,7 +16206,7 @@ var OceanicNextStyle = {
|
|
|
16149
16206
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
|
|
16150
16207
|
layout: { 'line-join': 'round' },
|
|
16151
16208
|
paint: {
|
|
16152
|
-
'line-color': '#
|
|
16209
|
+
'line-color': '#CD5C5C',
|
|
16153
16210
|
'line-opacity': 1,
|
|
16154
16211
|
'line-width': {
|
|
16155
16212
|
base: 1.2,
|
|
@@ -16169,7 +16226,7 @@ var OceanicNextStyle = {
|
|
|
16169
16226
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
|
|
16170
16227
|
layout: { 'line-join': 'round' },
|
|
16171
16228
|
paint: {
|
|
16172
|
-
'line-color': '#
|
|
16229
|
+
'line-color': '#CD5C5C',
|
|
16173
16230
|
'line-width': {
|
|
16174
16231
|
base: 1.2,
|
|
16175
16232
|
stops: [
|
|
@@ -16190,7 +16247,7 @@ var OceanicNextStyle = {
|
|
|
16190
16247
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
|
|
16191
16248
|
layout: { 'line-join': 'round', visibility: 'visible' },
|
|
16192
16249
|
paint: {
|
|
16193
|
-
'line-color': '#
|
|
16250
|
+
'line-color': '#CD5C5C',
|
|
16194
16251
|
'line-dasharray': [0.5, 0.25],
|
|
16195
16252
|
'line-width': {
|
|
16196
16253
|
base: 1.2,
|
|
@@ -16215,7 +16272,7 @@ var OceanicNextStyle = {
|
|
|
16215
16272
|
['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'path']],
|
|
16216
16273
|
],
|
|
16217
16274
|
paint: {
|
|
16218
|
-
'line-color': '#
|
|
16275
|
+
'line-color': '#d98383',
|
|
16219
16276
|
'line-dasharray': [1.5, 0.75],
|
|
16220
16277
|
'line-width': {
|
|
16221
16278
|
base: 1.2,
|
|
@@ -16235,7 +16292,7 @@ var OceanicNextStyle = {
|
|
|
16235
16292
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
|
|
16236
16293
|
layout: { 'line-join': 'round' },
|
|
16237
16294
|
paint: {
|
|
16238
|
-
'line-color': '#
|
|
16295
|
+
'line-color': '#d98383',
|
|
16239
16296
|
'line-width': {
|
|
16240
16297
|
base: 1.2,
|
|
16241
16298
|
stops: [
|
|
@@ -16255,7 +16312,7 @@ var OceanicNextStyle = {
|
|
|
16255
16312
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor_road']],
|
|
16256
16313
|
layout: { 'line-join': 'round' },
|
|
16257
16314
|
paint: {
|
|
16258
|
-
'line-color': '#
|
|
16315
|
+
'line-color': '#d98383',
|
|
16259
16316
|
'line-opacity': 1,
|
|
16260
16317
|
'line-width': {
|
|
16261
16318
|
base: 1.2,
|
|
@@ -16276,7 +16333,7 @@ var OceanicNextStyle = {
|
|
|
16276
16333
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
|
|
16277
16334
|
layout: { 'line-join': 'round' },
|
|
16278
16335
|
paint: {
|
|
16279
|
-
'line-color': '#
|
|
16336
|
+
'line-color': '#df9797',
|
|
16280
16337
|
'line-width': {
|
|
16281
16338
|
base: 1.2,
|
|
16282
16339
|
stops: [
|
|
@@ -16296,7 +16353,7 @@ var OceanicNextStyle = {
|
|
|
16296
16353
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
|
|
16297
16354
|
layout: { 'line-join': 'round' },
|
|
16298
16355
|
paint: {
|
|
16299
|
-
'line-color': '#
|
|
16356
|
+
'line-color': '#CD5C5C',
|
|
16300
16357
|
'line-width': {
|
|
16301
16358
|
base: 1.2,
|
|
16302
16359
|
stops: [
|
|
@@ -16316,7 +16373,7 @@ var OceanicNextStyle = {
|
|
|
16316
16373
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
|
|
16317
16374
|
layout: { 'line-join': 'round', visibility: 'visible' },
|
|
16318
16375
|
paint: {
|
|
16319
|
-
'line-color': 'rgba(
|
|
16376
|
+
'line-color': 'rgba(139,94,6,0.8)',
|
|
16320
16377
|
'line-width': {
|
|
16321
16378
|
base: 1.2,
|
|
16322
16379
|
stops: [
|
|
@@ -16335,7 +16392,7 @@ var OceanicNextStyle = {
|
|
|
16335
16392
|
'source-layer': 'transportation',
|
|
16336
16393
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'rail']],
|
|
16337
16394
|
paint: {
|
|
16338
|
-
'line-color': '#
|
|
16395
|
+
'line-color': '#952e2e',
|
|
16339
16396
|
'line-width': {
|
|
16340
16397
|
base: 1.4,
|
|
16341
16398
|
stops: [
|
|
@@ -16357,7 +16414,7 @@ var OceanicNextStyle = {
|
|
|
16357
16414
|
filter: ['all', ['in', 'class', 'taxiway']],
|
|
16358
16415
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
16359
16416
|
paint: {
|
|
16360
|
-
'line-color': '#
|
|
16417
|
+
'line-color': '#952e2e',
|
|
16361
16418
|
'line-width': {
|
|
16362
16419
|
base: 1.5,
|
|
16363
16420
|
stops: [
|
|
@@ -16378,7 +16435,7 @@ var OceanicNextStyle = {
|
|
|
16378
16435
|
filter: ['all', ['in', 'class', 'runway']],
|
|
16379
16436
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
16380
16437
|
paint: {
|
|
16381
|
-
'line-color': '#
|
|
16438
|
+
'line-color': '#952e2e',
|
|
16382
16439
|
'line-width': {
|
|
16383
16440
|
base: 1.5,
|
|
16384
16441
|
stops: [
|
|
@@ -16406,7 +16463,7 @@ var OceanicNextStyle = {
|
|
|
16406
16463
|
[14, 1],
|
|
16407
16464
|
],
|
|
16408
16465
|
},
|
|
16409
|
-
'fill-color': 'rgba(
|
|
16466
|
+
'fill-color': 'rgba(205,92,92,0.5)',
|
|
16410
16467
|
},
|
|
16411
16468
|
},
|
|
16412
16469
|
{
|
|
@@ -16419,7 +16476,7 @@ var OceanicNextStyle = {
|
|
|
16419
16476
|
filter: ['all', ['in', 'class', 'taxiway'], ['==', '$type', 'LineString']],
|
|
16420
16477
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
16421
16478
|
paint: {
|
|
16422
|
-
'line-color': '#
|
|
16479
|
+
'line-color': '#df9797',
|
|
16423
16480
|
'line-width': {
|
|
16424
16481
|
base: 1.5,
|
|
16425
16482
|
stops: [
|
|
@@ -16446,7 +16503,7 @@ var OceanicNextStyle = {
|
|
|
16446
16503
|
filter: ['all', ['in', 'class', 'runway'], ['==', '$type', 'LineString']],
|
|
16447
16504
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
16448
16505
|
paint: {
|
|
16449
|
-
'line-color': '#
|
|
16506
|
+
'line-color': '#df9797',
|
|
16450
16507
|
'line-width': {
|
|
16451
16508
|
base: 1.5,
|
|
16452
16509
|
stops: [
|
|
@@ -16472,7 +16529,7 @@ var OceanicNextStyle = {
|
|
|
16472
16529
|
filter: ['==', '$type', 'Polygon'],
|
|
16473
16530
|
layout: { visibility: 'visible' },
|
|
16474
16531
|
paint: {
|
|
16475
|
-
'fill-color': '#
|
|
16532
|
+
'fill-color': '#bc3a3a',
|
|
16476
16533
|
'fill-outline-color': '#cfcdca',
|
|
16477
16534
|
'fill-opacity': 0.9,
|
|
16478
16535
|
'fill-antialias': false,
|
|
@@ -16488,7 +16545,7 @@ var OceanicNextStyle = {
|
|
|
16488
16545
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
|
|
16489
16546
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
16490
16547
|
paint: {
|
|
16491
|
-
'line-color': '#
|
|
16548
|
+
'line-color': '#CD5C5C',
|
|
16492
16549
|
'line-opacity': 1,
|
|
16493
16550
|
'line-width': {
|
|
16494
16551
|
base: 1.2,
|
|
@@ -16515,7 +16572,7 @@ var OceanicNextStyle = {
|
|
|
16515
16572
|
],
|
|
16516
16573
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
16517
16574
|
paint: {
|
|
16518
|
-
'line-color': '#
|
|
16575
|
+
'line-color': '#CD5C5C',
|
|
16519
16576
|
'line-opacity': 1,
|
|
16520
16577
|
'line-width': {
|
|
16521
16578
|
base: 1.2,
|
|
@@ -16541,7 +16598,7 @@ var OceanicNextStyle = {
|
|
|
16541
16598
|
],
|
|
16542
16599
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
16543
16600
|
paint: {
|
|
16544
|
-
'line-color': 'rgba(
|
|
16601
|
+
'line-color': 'rgba(205,92,92,0.8)',
|
|
16545
16602
|
'line-opacity': {
|
|
16546
16603
|
stops: [
|
|
16547
16604
|
[12, 0],
|
|
@@ -16572,7 +16629,7 @@ var OceanicNextStyle = {
|
|
|
16572
16629
|
],
|
|
16573
16630
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
16574
16631
|
paint: {
|
|
16575
|
-
'line-color': '#
|
|
16632
|
+
'line-color': '#CD5C5C',
|
|
16576
16633
|
'line-opacity': 1,
|
|
16577
16634
|
'line-width': {
|
|
16578
16635
|
base: 1.2,
|
|
@@ -16593,7 +16650,7 @@ var OceanicNextStyle = {
|
|
|
16593
16650
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'primary']],
|
|
16594
16651
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
16595
16652
|
paint: {
|
|
16596
|
-
'line-color': '#
|
|
16653
|
+
'line-color': '#CD5C5C',
|
|
16597
16654
|
'line-opacity': {
|
|
16598
16655
|
stops: [
|
|
16599
16656
|
[7, 0],
|
|
@@ -16621,7 +16678,7 @@ var OceanicNextStyle = {
|
|
|
16621
16678
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'trunk']],
|
|
16622
16679
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
16623
16680
|
paint: {
|
|
16624
|
-
'line-color': '#
|
|
16681
|
+
'line-color': '#CD5C5C',
|
|
16625
16682
|
'line-opacity': {
|
|
16626
16683
|
stops: [
|
|
16627
16684
|
[5, 0],
|
|
@@ -16649,7 +16706,7 @@ var OceanicNextStyle = {
|
|
|
16649
16706
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway']],
|
|
16650
16707
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
16651
16708
|
paint: {
|
|
16652
|
-
'line-color': '#
|
|
16709
|
+
'line-color': '#CD5C5C',
|
|
16653
16710
|
'line-width': {
|
|
16654
16711
|
base: 1.2,
|
|
16655
16712
|
stops: [
|
|
@@ -16680,7 +16737,7 @@ var OceanicNextStyle = {
|
|
|
16680
16737
|
['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'path']],
|
|
16681
16738
|
],
|
|
16682
16739
|
paint: {
|
|
16683
|
-
'line-color': '#
|
|
16740
|
+
'line-color': '#FFC0CB',
|
|
16684
16741
|
'line-dasharray': [1.5, 0.75],
|
|
16685
16742
|
'line-width': {
|
|
16686
16743
|
base: 1.2,
|
|
@@ -16701,7 +16758,7 @@ var OceanicNextStyle = {
|
|
|
16701
16758
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
|
|
16702
16759
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
16703
16760
|
paint: {
|
|
16704
|
-
'line-color': '#
|
|
16761
|
+
'line-color': '#8b5e3c',
|
|
16705
16762
|
'line-width': {
|
|
16706
16763
|
base: 1.2,
|
|
16707
16764
|
stops: [
|
|
@@ -16727,7 +16784,7 @@ var OceanicNextStyle = {
|
|
|
16727
16784
|
],
|
|
16728
16785
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
16729
16786
|
paint: {
|
|
16730
|
-
'line-color': '#
|
|
16787
|
+
'line-color': '#8B5E3C',
|
|
16731
16788
|
'line-width': {
|
|
16732
16789
|
base: 1.2,
|
|
16733
16790
|
stops: [
|
|
@@ -16752,7 +16809,7 @@ var OceanicNextStyle = {
|
|
|
16752
16809
|
],
|
|
16753
16810
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
16754
16811
|
paint: {
|
|
16755
|
-
'line-color': '#
|
|
16812
|
+
'line-color': '#e5aaaa',
|
|
16756
16813
|
'line-opacity': 1,
|
|
16757
16814
|
'line-width': {
|
|
16758
16815
|
base: 1.2,
|
|
@@ -16777,7 +16834,7 @@ var OceanicNextStyle = {
|
|
|
16777
16834
|
],
|
|
16778
16835
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
16779
16836
|
paint: {
|
|
16780
|
-
'line-color': '#
|
|
16837
|
+
'line-color': '#8B5E3C',
|
|
16781
16838
|
'line-width': {
|
|
16782
16839
|
base: 1.2,
|
|
16783
16840
|
stops: [
|
|
@@ -16801,7 +16858,7 @@ var OceanicNextStyle = {
|
|
|
16801
16858
|
],
|
|
16802
16859
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
16803
16860
|
paint: {
|
|
16804
|
-
'line-color': '#
|
|
16861
|
+
'line-color': '#8B5E3C',
|
|
16805
16862
|
'line-width': {
|
|
16806
16863
|
base: 1.2,
|
|
16807
16864
|
stops: [
|
|
@@ -16825,7 +16882,7 @@ var OceanicNextStyle = {
|
|
|
16825
16882
|
],
|
|
16826
16883
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
16827
16884
|
paint: {
|
|
16828
|
-
'line-color': '#
|
|
16885
|
+
'line-color': '#8B5E3C',
|
|
16829
16886
|
'line-width': {
|
|
16830
16887
|
base: 1.2,
|
|
16831
16888
|
stops: [
|
|
@@ -16850,7 +16907,7 @@ var OceanicNextStyle = {
|
|
|
16850
16907
|
],
|
|
16851
16908
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
16852
16909
|
paint: {
|
|
16853
|
-
'line-color': '#
|
|
16910
|
+
'line-color': '#8b5e3c',
|
|
16854
16911
|
'line-width': {
|
|
16855
16912
|
base: 1.2,
|
|
16856
16913
|
stops: [
|
|
@@ -16873,7 +16930,7 @@ var OceanicNextStyle = {
|
|
|
16873
16930
|
['all', ['==', 'class', 'rail'], ['has', 'service']],
|
|
16874
16931
|
],
|
|
16875
16932
|
paint: {
|
|
16876
|
-
'line-color': 'rgba(
|
|
16933
|
+
'line-color': 'rgba(149,46,46,0.7)',
|
|
16877
16934
|
'line-width': {
|
|
16878
16935
|
base: 1.4,
|
|
16879
16936
|
stops: [
|
|
@@ -16896,7 +16953,7 @@ var OceanicNextStyle = {
|
|
|
16896
16953
|
],
|
|
16897
16954
|
layout: { visibility: 'visible' },
|
|
16898
16955
|
paint: {
|
|
16899
|
-
'line-color': 'rgba(
|
|
16956
|
+
'line-color': 'rgba(149,46,46,0.7)',
|
|
16900
16957
|
'line-dasharray': [0.2, 8],
|
|
16901
16958
|
'line-width': {
|
|
16902
16959
|
base: 1.4,
|
|
@@ -16925,7 +16982,7 @@ var OceanicNextStyle = {
|
|
|
16925
16982
|
],
|
|
16926
16983
|
],
|
|
16927
16984
|
paint: {
|
|
16928
|
-
'line-color': '#
|
|
16985
|
+
'line-color': '#952e2e',
|
|
16929
16986
|
'line-width': {
|
|
16930
16987
|
base: 1.4,
|
|
16931
16988
|
stops: [
|
|
@@ -16953,7 +17010,7 @@ var OceanicNextStyle = {
|
|
|
16953
17010
|
],
|
|
16954
17011
|
],
|
|
16955
17012
|
paint: {
|
|
16956
|
-
'line-color': '#
|
|
17013
|
+
'line-color': '#952e2e',
|
|
16957
17014
|
'line-dasharray': [0.2, 8],
|
|
16958
17015
|
'line-width': {
|
|
16959
17016
|
base: 1.4,
|
|
@@ -16974,7 +17031,7 @@ var OceanicNextStyle = {
|
|
|
16974
17031
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
|
|
16975
17032
|
layout: { 'line-join': 'round' },
|
|
16976
17033
|
paint: {
|
|
16977
|
-
'line-color': '#
|
|
17034
|
+
'line-color': '#CD5C5C',
|
|
16978
17035
|
'line-opacity': 1,
|
|
16979
17036
|
'line-width': {
|
|
16980
17037
|
base: 1.2,
|
|
@@ -17000,7 +17057,7 @@ var OceanicNextStyle = {
|
|
|
17000
17057
|
],
|
|
17001
17058
|
layout: { 'line-join': 'round' },
|
|
17002
17059
|
paint: {
|
|
17003
|
-
'line-color': '#
|
|
17060
|
+
'line-color': '#CD5C5C',
|
|
17004
17061
|
'line-opacity': 1,
|
|
17005
17062
|
'line-width': {
|
|
17006
17063
|
base: 1.2,
|
|
@@ -17022,7 +17079,7 @@ var OceanicNextStyle = {
|
|
|
17022
17079
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
|
|
17023
17080
|
layout: { 'line-join': 'round' },
|
|
17024
17081
|
paint: {
|
|
17025
|
-
'line-color': '#
|
|
17082
|
+
'line-color': '#CD5C5C',
|
|
17026
17083
|
'line-opacity': 1,
|
|
17027
17084
|
'line-width': {
|
|
17028
17085
|
base: 1.2,
|
|
@@ -17042,7 +17099,7 @@ var OceanicNextStyle = {
|
|
|
17042
17099
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
|
|
17043
17100
|
layout: { 'line-join': 'round' },
|
|
17044
17101
|
paint: {
|
|
17045
|
-
'line-color': '#
|
|
17102
|
+
'line-color': '#CD5C5C',
|
|
17046
17103
|
'line-width': {
|
|
17047
17104
|
base: 1.2,
|
|
17048
17105
|
stops: [
|
|
@@ -17063,7 +17120,7 @@ var OceanicNextStyle = {
|
|
|
17063
17120
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
|
|
17064
17121
|
layout: { 'line-join': 'round' },
|
|
17065
17122
|
paint: {
|
|
17066
|
-
'line-color': '#
|
|
17123
|
+
'line-color': '#CD5C5C',
|
|
17067
17124
|
'line-width': {
|
|
17068
17125
|
base: 1.2,
|
|
17069
17126
|
stops: [
|
|
@@ -17087,7 +17144,7 @@ var OceanicNextStyle = {
|
|
|
17087
17144
|
['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
|
|
17088
17145
|
],
|
|
17089
17146
|
paint: {
|
|
17090
|
-
'line-color': '#
|
|
17147
|
+
'line-color': '#d98383',
|
|
17091
17148
|
'line-width': {
|
|
17092
17149
|
base: 1.2,
|
|
17093
17150
|
stops: [
|
|
@@ -17109,7 +17166,7 @@ var OceanicNextStyle = {
|
|
|
17109
17166
|
['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
|
|
17110
17167
|
],
|
|
17111
17168
|
paint: {
|
|
17112
|
-
'line-color': '#
|
|
17169
|
+
'line-color': '#FFC0CB',
|
|
17113
17170
|
'line-width': {
|
|
17114
17171
|
base: 1.2,
|
|
17115
17172
|
stops: [
|
|
@@ -17129,7 +17186,7 @@ var OceanicNextStyle = {
|
|
|
17129
17186
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
|
|
17130
17187
|
layout: { 'line-join': 'round' },
|
|
17131
17188
|
paint: {
|
|
17132
|
-
'line-color': '#
|
|
17189
|
+
'line-color': '#8b5e3c',
|
|
17133
17190
|
'line-width': {
|
|
17134
17191
|
base: 1.2,
|
|
17135
17192
|
stops: [
|
|
@@ -17154,7 +17211,7 @@ var OceanicNextStyle = {
|
|
|
17154
17211
|
],
|
|
17155
17212
|
layout: { 'line-join': 'round' },
|
|
17156
17213
|
paint: {
|
|
17157
|
-
'line-color': '#
|
|
17214
|
+
'line-color': '#8B5E3C',
|
|
17158
17215
|
'line-width': {
|
|
17159
17216
|
base: 1.2,
|
|
17160
17217
|
stops: [
|
|
@@ -17175,7 +17232,7 @@ var OceanicNextStyle = {
|
|
|
17175
17232
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
|
|
17176
17233
|
layout: { 'line-join': 'round' },
|
|
17177
17234
|
paint: {
|
|
17178
|
-
'line-color': '#
|
|
17235
|
+
'line-color': '#8B5E3C',
|
|
17179
17236
|
'line-width': {
|
|
17180
17237
|
base: 1.2,
|
|
17181
17238
|
stops: [
|
|
@@ -17195,7 +17252,7 @@ var OceanicNextStyle = {
|
|
|
17195
17252
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
|
|
17196
17253
|
layout: { 'line-join': 'round' },
|
|
17197
17254
|
paint: {
|
|
17198
|
-
'line-color': '#
|
|
17255
|
+
'line-color': '#8B5E3C',
|
|
17199
17256
|
'line-width': {
|
|
17200
17257
|
base: 1.2,
|
|
17201
17258
|
stops: [
|
|
@@ -17215,7 +17272,7 @@ var OceanicNextStyle = {
|
|
|
17215
17272
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
|
|
17216
17273
|
layout: { 'line-join': 'round' },
|
|
17217
17274
|
paint: {
|
|
17218
|
-
'line-color': '#
|
|
17275
|
+
'line-color': '#8b5e3c',
|
|
17219
17276
|
'line-width': {
|
|
17220
17277
|
base: 1.2,
|
|
17221
17278
|
stops: [
|
|
@@ -17234,7 +17291,7 @@ var OceanicNextStyle = {
|
|
|
17234
17291
|
'source-layer': 'transportation',
|
|
17235
17292
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
|
|
17236
17293
|
paint: {
|
|
17237
|
-
'line-color': '#
|
|
17294
|
+
'line-color': '#952e2e',
|
|
17238
17295
|
'line-width': {
|
|
17239
17296
|
base: 1.4,
|
|
17240
17297
|
stops: [
|
|
@@ -17253,7 +17310,7 @@ var OceanicNextStyle = {
|
|
|
17253
17310
|
'source-layer': 'transportation',
|
|
17254
17311
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
|
|
17255
17312
|
paint: {
|
|
17256
|
-
'line-color': '#
|
|
17313
|
+
'line-color': '#952e2e',
|
|
17257
17314
|
'line-dasharray': [0.2, 8],
|
|
17258
17315
|
'line-width': {
|
|
17259
17316
|
base: 1.4,
|
|
@@ -17273,7 +17330,7 @@ var OceanicNextStyle = {
|
|
|
17273
17330
|
filter: ['all', ['in', 'admin_level', 4, 6, 8], ['!=', 'maritime', 1]],
|
|
17274
17331
|
layout: { 'line-join': 'round' },
|
|
17275
17332
|
paint: {
|
|
17276
|
-
'line-color': '#
|
|
17333
|
+
'line-color': '#A0522D',
|
|
17277
17334
|
'line-dasharray': [3, 1, 1, 1],
|
|
17278
17335
|
'line-width': {
|
|
17279
17336
|
base: 1.4,
|
|
@@ -17293,7 +17350,7 @@ var OceanicNextStyle = {
|
|
|
17293
17350
|
filter: ['all', ['==', 'admin_level', 2], ['!=', 'maritime', 1]],
|
|
17294
17351
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
17295
17352
|
paint: {
|
|
17296
|
-
'line-color': '#
|
|
17353
|
+
'line-color': '#A0522D',
|
|
17297
17354
|
'line-width': {
|
|
17298
17355
|
base: 1,
|
|
17299
17356
|
stops: [
|
|
@@ -17313,7 +17370,7 @@ var OceanicNextStyle = {
|
|
|
17313
17370
|
filter: ['all', ['in', 'admin_level', 2, 4], ['==', 'maritime', 1]],
|
|
17314
17371
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
17315
17372
|
paint: {
|
|
17316
|
-
'line-color': '#
|
|
17373
|
+
'line-color': '#1E90FF',
|
|
17317
17374
|
'line-width': {
|
|
17318
17375
|
base: 1,
|
|
17319
17376
|
stops: [
|
|
@@ -18330,9 +18387,9 @@ var OceanicNextStyle = {
|
|
|
18330
18387
|
],
|
|
18331
18388
|
};
|
|
18332
18389
|
|
|
18333
|
-
var
|
|
18390
|
+
var GruvboxStyle = {
|
|
18334
18391
|
version: 8,
|
|
18335
|
-
name: '
|
|
18392
|
+
name: 'Gruvbox',
|
|
18336
18393
|
center: [8.542, 47.372],
|
|
18337
18394
|
zoom: 11.6,
|
|
18338
18395
|
bearing: 0,
|
|
@@ -18346,7 +18403,7 @@ var SolarizedStyle = {
|
|
|
18346
18403
|
sprite: config.sprite,
|
|
18347
18404
|
glyphs: config.glyphs,
|
|
18348
18405
|
layers: [
|
|
18349
|
-
{ id: 'background', type: 'background', paint: { 'background-color': '#
|
|
18406
|
+
{ id: 'background', type: 'background', paint: { 'background-color': '#282822' } },
|
|
18350
18407
|
{
|
|
18351
18408
|
id: 'landcover-glacier',
|
|
18352
18409
|
type: 'fill',
|
|
@@ -18356,7 +18413,7 @@ var SolarizedStyle = {
|
|
|
18356
18413
|
filter: ['==', 'subclass', 'glacier'],
|
|
18357
18414
|
layout: { visibility: 'visible' },
|
|
18358
18415
|
paint: {
|
|
18359
|
-
'fill-color': '#
|
|
18416
|
+
'fill-color': '#83a598',
|
|
18360
18417
|
'fill-opacity': {
|
|
18361
18418
|
base: 1,
|
|
18362
18419
|
stops: [
|
|
@@ -18373,7 +18430,7 @@ var SolarizedStyle = {
|
|
|
18373
18430
|
source: 'openmaptiles',
|
|
18374
18431
|
'source-layer': 'landuse',
|
|
18375
18432
|
filter: ['==', 'class', 'residential'],
|
|
18376
|
-
paint: { 'fill-color': '#
|
|
18433
|
+
paint: { 'fill-color': '#b8bb26' },
|
|
18377
18434
|
},
|
|
18378
18435
|
{
|
|
18379
18436
|
id: 'landuse-commercial',
|
|
@@ -18382,7 +18439,7 @@ var SolarizedStyle = {
|
|
|
18382
18439
|
source: 'openmaptiles',
|
|
18383
18440
|
'source-layer': 'landuse',
|
|
18384
18441
|
filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'commercial']],
|
|
18385
|
-
paint: { 'fill-color': '#
|
|
18442
|
+
paint: { 'fill-color': '#bfc23c' },
|
|
18386
18443
|
},
|
|
18387
18444
|
{
|
|
18388
18445
|
id: 'landuse-industrial',
|
|
@@ -18391,7 +18448,7 @@ var SolarizedStyle = {
|
|
|
18391
18448
|
source: 'openmaptiles',
|
|
18392
18449
|
'source-layer': 'landuse',
|
|
18393
18450
|
filter: ['all', ['==', '$type', 'Polygon'], ['==', 'class', 'industrial']],
|
|
18394
|
-
paint: { 'fill-color': '#
|
|
18451
|
+
paint: { 'fill-color': '#c6c951' },
|
|
18395
18452
|
},
|
|
18396
18453
|
{
|
|
18397
18454
|
id: 'park',
|
|
@@ -18401,7 +18458,7 @@ var SolarizedStyle = {
|
|
|
18401
18458
|
'source-layer': 'park',
|
|
18402
18459
|
filter: ['==', '$type', 'Polygon'],
|
|
18403
18460
|
paint: {
|
|
18404
|
-
'fill-color': '#
|
|
18461
|
+
'fill-color': '#b8bb26',
|
|
18405
18462
|
'fill-opacity': {
|
|
18406
18463
|
base: 1.8,
|
|
18407
18464
|
stops: [
|
|
@@ -18419,7 +18476,7 @@ var SolarizedStyle = {
|
|
|
18419
18476
|
'source-layer': 'park',
|
|
18420
18477
|
filter: ['==', '$type', 'Polygon'],
|
|
18421
18478
|
layout: {},
|
|
18422
|
-
paint: { 'line-color': 'rgba(
|
|
18479
|
+
paint: { 'line-color': 'rgba(184,187,38,0.6)', 'line-dasharray': [3, 3] },
|
|
18423
18480
|
},
|
|
18424
18481
|
{
|
|
18425
18482
|
id: 'landuse-cemetery',
|
|
@@ -18428,7 +18485,7 @@ var SolarizedStyle = {
|
|
|
18428
18485
|
source: 'openmaptiles',
|
|
18429
18486
|
'source-layer': 'landuse',
|
|
18430
18487
|
filter: ['==', 'class', 'cemetery'],
|
|
18431
|
-
paint: { 'fill-color': '#
|
|
18488
|
+
paint: { 'fill-color': '#eceeaa' },
|
|
18432
18489
|
},
|
|
18433
18490
|
{
|
|
18434
18491
|
id: 'landuse-hospital',
|
|
@@ -18437,7 +18494,7 @@ var SolarizedStyle = {
|
|
|
18437
18494
|
source: 'openmaptiles',
|
|
18438
18495
|
'source-layer': 'landuse',
|
|
18439
18496
|
filter: ['==', 'class', 'hospital'],
|
|
18440
|
-
paint: { 'fill-color': '#
|
|
18497
|
+
paint: { 'fill-color': '#fe8019' },
|
|
18441
18498
|
},
|
|
18442
18499
|
{
|
|
18443
18500
|
id: 'landuse-school',
|
|
@@ -18446,7 +18503,7 @@ var SolarizedStyle = {
|
|
|
18446
18503
|
source: 'openmaptiles',
|
|
18447
18504
|
'source-layer': 'landuse',
|
|
18448
18505
|
filter: ['==', 'class', 'school'],
|
|
18449
|
-
paint: { 'fill-color': 'rgba(
|
|
18506
|
+
paint: { 'fill-color': 'rgba(254,128,25,0.8)' },
|
|
18450
18507
|
},
|
|
18451
18508
|
{
|
|
18452
18509
|
id: 'landuse-railway',
|
|
@@ -18455,7 +18512,7 @@ var SolarizedStyle = {
|
|
|
18455
18512
|
source: 'openmaptiles',
|
|
18456
18513
|
'source-layer': 'landuse',
|
|
18457
18514
|
filter: ['==', 'class', 'railway'],
|
|
18458
|
-
paint: { 'fill-color': 'rgba(
|
|
18515
|
+
paint: { 'fill-color': 'rgba(118,51,8,0.4)' },
|
|
18459
18516
|
},
|
|
18460
18517
|
{
|
|
18461
18518
|
id: 'landcover-wood',
|
|
@@ -18465,7 +18522,7 @@ var SolarizedStyle = {
|
|
|
18465
18522
|
'source-layer': 'landcover',
|
|
18466
18523
|
filter: ['==', 'class', 'wood'],
|
|
18467
18524
|
paint: {
|
|
18468
|
-
'fill-color': '#
|
|
18525
|
+
'fill-color': '#83a598',
|
|
18469
18526
|
'fill-opacity': 0.1,
|
|
18470
18527
|
'fill-outline-color': 'hsla(0, 0%, 0%, 0.03)',
|
|
18471
18528
|
'fill-antialias': {
|
|
@@ -18484,7 +18541,7 @@ var SolarizedStyle = {
|
|
|
18484
18541
|
source: 'openmaptiles',
|
|
18485
18542
|
'source-layer': 'landcover',
|
|
18486
18543
|
filter: ['==', 'class', 'grass'],
|
|
18487
|
-
paint: { 'fill-color': '#
|
|
18544
|
+
paint: { 'fill-color': '#b8bb26', 'fill-opacity': 1 },
|
|
18488
18545
|
},
|
|
18489
18546
|
{
|
|
18490
18547
|
id: 'landcover-grass-park',
|
|
@@ -18493,7 +18550,7 @@ var SolarizedStyle = {
|
|
|
18493
18550
|
source: 'openmaptiles',
|
|
18494
18551
|
'source-layer': 'park',
|
|
18495
18552
|
filter: ['==', 'class', 'public_park'],
|
|
18496
|
-
paint: { 'fill-color': '#
|
|
18553
|
+
paint: { 'fill-color': '#b8bb26', 'fill-opacity': 0.8 },
|
|
18497
18554
|
},
|
|
18498
18555
|
{
|
|
18499
18556
|
id: 'waterway-other',
|
|
@@ -18504,7 +18561,7 @@ var SolarizedStyle = {
|
|
|
18504
18561
|
filter: ['!in', 'class', 'canal', 'river', 'stream'],
|
|
18505
18562
|
layout: { 'line-cap': 'round' },
|
|
18506
18563
|
paint: {
|
|
18507
|
-
'line-color': '#
|
|
18564
|
+
'line-color': '#83a598',
|
|
18508
18565
|
'line-width': {
|
|
18509
18566
|
base: 1.3,
|
|
18510
18567
|
stops: [
|
|
@@ -18523,7 +18580,7 @@ var SolarizedStyle = {
|
|
|
18523
18580
|
filter: ['in', 'class', 'canal', 'stream'],
|
|
18524
18581
|
layout: { 'line-cap': 'round' },
|
|
18525
18582
|
paint: {
|
|
18526
|
-
'line-color': '#
|
|
18583
|
+
'line-color': '#83a598',
|
|
18527
18584
|
'line-width': {
|
|
18528
18585
|
base: 1.3,
|
|
18529
18586
|
stops: [
|
|
@@ -18542,7 +18599,7 @@ var SolarizedStyle = {
|
|
|
18542
18599
|
filter: ['==', 'class', 'river'],
|
|
18543
18600
|
layout: { 'line-cap': 'round' },
|
|
18544
18601
|
paint: {
|
|
18545
|
-
'line-color': '#
|
|
18602
|
+
'line-color': '#83a598',
|
|
18546
18603
|
'line-width': {
|
|
18547
18604
|
base: 1.2,
|
|
18548
18605
|
stops: [
|
|
@@ -18563,7 +18620,7 @@ var SolarizedStyle = {
|
|
|
18563
18620
|
layout: { visibility: 'visible' },
|
|
18564
18621
|
paint: {
|
|
18565
18622
|
'fill-opacity': 1,
|
|
18566
|
-
'fill-color': '#
|
|
18623
|
+
'fill-color': '#83a598',
|
|
18567
18624
|
'fill-translate': {
|
|
18568
18625
|
base: 1,
|
|
18569
18626
|
stops: [
|
|
@@ -18580,7 +18637,7 @@ var SolarizedStyle = {
|
|
|
18580
18637
|
source: 'openmaptiles',
|
|
18581
18638
|
'source-layer': 'water',
|
|
18582
18639
|
layout: { visibility: 'visible' },
|
|
18583
|
-
paint: { 'fill-color': '#
|
|
18640
|
+
paint: { 'fill-color': '#5c7f72' },
|
|
18584
18641
|
},
|
|
18585
18642
|
{
|
|
18586
18643
|
id: 'water-pattern',
|
|
@@ -18600,7 +18657,7 @@ var SolarizedStyle = {
|
|
|
18600
18657
|
filter: ['==', 'subclass', 'ice_shelf'],
|
|
18601
18658
|
layout: { visibility: 'visible' },
|
|
18602
18659
|
paint: {
|
|
18603
|
-
'fill-color': '#
|
|
18660
|
+
'fill-color': '#83a598',
|
|
18604
18661
|
'fill-opacity': {
|
|
18605
18662
|
base: 1,
|
|
18606
18663
|
stops: [
|
|
@@ -18616,7 +18673,7 @@ var SolarizedStyle = {
|
|
|
18616
18673
|
metadata: { 'mapbox:group': '1444849364238.8171' },
|
|
18617
18674
|
source: 'openmaptiles',
|
|
18618
18675
|
'source-layer': 'building',
|
|
18619
|
-
paint: { 'fill-color': '#
|
|
18676
|
+
paint: { 'fill-color': '#928374', 'fill-antialias': true },
|
|
18620
18677
|
},
|
|
18621
18678
|
{
|
|
18622
18679
|
id: 'building-top',
|
|
@@ -18634,7 +18691,7 @@ var SolarizedStyle = {
|
|
|
18634
18691
|
],
|
|
18635
18692
|
},
|
|
18636
18693
|
'fill-outline-color': '#dfdbd7',
|
|
18637
|
-
'fill-color': '#
|
|
18694
|
+
'fill-color': '#a89c91',
|
|
18638
18695
|
'fill-opacity': {
|
|
18639
18696
|
base: 1,
|
|
18640
18697
|
stops: [
|
|
@@ -18653,7 +18710,7 @@ var SolarizedStyle = {
|
|
|
18653
18710
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
|
|
18654
18711
|
layout: { 'line-join': 'round' },
|
|
18655
18712
|
paint: {
|
|
18656
|
-
'line-color': '#
|
|
18713
|
+
'line-color': '#d65d0e',
|
|
18657
18714
|
'line-dasharray': [0.5, 0.25],
|
|
18658
18715
|
'line-width': {
|
|
18659
18716
|
base: 1.2,
|
|
@@ -18674,7 +18731,7 @@ var SolarizedStyle = {
|
|
|
18674
18731
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor']],
|
|
18675
18732
|
layout: { 'line-join': 'round' },
|
|
18676
18733
|
paint: {
|
|
18677
|
-
'line-color': '#
|
|
18734
|
+
'line-color': '#d65d0e',
|
|
18678
18735
|
'line-opacity': {
|
|
18679
18736
|
stops: [
|
|
18680
18737
|
[12, 0],
|
|
@@ -18701,7 +18758,7 @@ var SolarizedStyle = {
|
|
|
18701
18758
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
|
|
18702
18759
|
layout: { 'line-join': 'round' },
|
|
18703
18760
|
paint: {
|
|
18704
|
-
'line-color': '#
|
|
18761
|
+
'line-color': '#d65d0e',
|
|
18705
18762
|
'line-opacity': 1,
|
|
18706
18763
|
'line-width': {
|
|
18707
18764
|
base: 1.2,
|
|
@@ -18721,7 +18778,7 @@ var SolarizedStyle = {
|
|
|
18721
18778
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
|
|
18722
18779
|
layout: { 'line-join': 'round' },
|
|
18723
18780
|
paint: {
|
|
18724
|
-
'line-color': '#
|
|
18781
|
+
'line-color': '#d65d0e',
|
|
18725
18782
|
'line-width': {
|
|
18726
18783
|
base: 1.2,
|
|
18727
18784
|
stops: [
|
|
@@ -18742,7 +18799,7 @@ var SolarizedStyle = {
|
|
|
18742
18799
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
|
|
18743
18800
|
layout: { 'line-join': 'round', visibility: 'visible' },
|
|
18744
18801
|
paint: {
|
|
18745
|
-
'line-color': '#
|
|
18802
|
+
'line-color': '#d65d0e',
|
|
18746
18803
|
'line-dasharray': [0.5, 0.25],
|
|
18747
18804
|
'line-width': {
|
|
18748
18805
|
base: 1.2,
|
|
@@ -18767,7 +18824,7 @@ var SolarizedStyle = {
|
|
|
18767
18824
|
['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'path']],
|
|
18768
18825
|
],
|
|
18769
18826
|
paint: {
|
|
18770
|
-
'line-color': '#
|
|
18827
|
+
'line-color': '#f17626',
|
|
18771
18828
|
'line-dasharray': [1.5, 0.75],
|
|
18772
18829
|
'line-width': {
|
|
18773
18830
|
base: 1.2,
|
|
@@ -18787,7 +18844,7 @@ var SolarizedStyle = {
|
|
|
18787
18844
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'service', 'track']],
|
|
18788
18845
|
layout: { 'line-join': 'round' },
|
|
18789
18846
|
paint: {
|
|
18790
|
-
'line-color': '#
|
|
18847
|
+
'line-color': '#f17626',
|
|
18791
18848
|
'line-width': {
|
|
18792
18849
|
base: 1.2,
|
|
18793
18850
|
stops: [
|
|
@@ -18807,7 +18864,7 @@ var SolarizedStyle = {
|
|
|
18807
18864
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'minor_road']],
|
|
18808
18865
|
layout: { 'line-join': 'round' },
|
|
18809
18866
|
paint: {
|
|
18810
|
-
'line-color': '#
|
|
18867
|
+
'line-color': '#f17626',
|
|
18811
18868
|
'line-opacity': 1,
|
|
18812
18869
|
'line-width': {
|
|
18813
18870
|
base: 1.2,
|
|
@@ -18828,7 +18885,7 @@ var SolarizedStyle = {
|
|
|
18828
18885
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'secondary', 'tertiary']],
|
|
18829
18886
|
layout: { 'line-join': 'round' },
|
|
18830
18887
|
paint: {
|
|
18831
|
-
'line-color': '#
|
|
18888
|
+
'line-color': '#f2853e',
|
|
18832
18889
|
'line-width': {
|
|
18833
18890
|
base: 1.2,
|
|
18834
18891
|
stops: [
|
|
@@ -18848,7 +18905,7 @@ var SolarizedStyle = {
|
|
|
18848
18905
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['in', 'class', 'primary', 'trunk']],
|
|
18849
18906
|
layout: { 'line-join': 'round' },
|
|
18850
18907
|
paint: {
|
|
18851
|
-
'line-color': '#
|
|
18908
|
+
'line-color': '#d65d0e',
|
|
18852
18909
|
'line-width': {
|
|
18853
18910
|
base: 1.2,
|
|
18854
18911
|
stops: [
|
|
@@ -18868,7 +18925,7 @@ var SolarizedStyle = {
|
|
|
18868
18925
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'motorway']],
|
|
18869
18926
|
layout: { 'line-join': 'round', visibility: 'visible' },
|
|
18870
18927
|
paint: {
|
|
18871
|
-
'line-color': 'rgba(
|
|
18928
|
+
'line-color': 'rgba(235,219,178,0.8)',
|
|
18872
18929
|
'line-width': {
|
|
18873
18930
|
base: 1.2,
|
|
18874
18931
|
stops: [
|
|
@@ -18887,7 +18944,7 @@ var SolarizedStyle = {
|
|
|
18887
18944
|
'source-layer': 'transportation',
|
|
18888
18945
|
filter: ['all', ['==', 'brunnel', 'tunnel'], ['==', 'class', 'rail']],
|
|
18889
18946
|
paint: {
|
|
18890
|
-
'line-color': '#
|
|
18947
|
+
'line-color': '#763308',
|
|
18891
18948
|
'line-width': {
|
|
18892
18949
|
base: 1.4,
|
|
18893
18950
|
stops: [
|
|
@@ -18909,7 +18966,7 @@ var SolarizedStyle = {
|
|
|
18909
18966
|
filter: ['all', ['in', 'class', 'taxiway']],
|
|
18910
18967
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
18911
18968
|
paint: {
|
|
18912
|
-
'line-color': '#
|
|
18969
|
+
'line-color': '#763308',
|
|
18913
18970
|
'line-width': {
|
|
18914
18971
|
base: 1.5,
|
|
18915
18972
|
stops: [
|
|
@@ -18930,7 +18987,7 @@ var SolarizedStyle = {
|
|
|
18930
18987
|
filter: ['all', ['in', 'class', 'runway']],
|
|
18931
18988
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
18932
18989
|
paint: {
|
|
18933
|
-
'line-color': '#
|
|
18990
|
+
'line-color': '#763308',
|
|
18934
18991
|
'line-width': {
|
|
18935
18992
|
base: 1.5,
|
|
18936
18993
|
stops: [
|
|
@@ -18958,7 +19015,7 @@ var SolarizedStyle = {
|
|
|
18958
19015
|
[14, 1],
|
|
18959
19016
|
],
|
|
18960
19017
|
},
|
|
18961
|
-
'fill-color': 'rgba(
|
|
19018
|
+
'fill-color': 'rgba(214,93,14,0.5)',
|
|
18962
19019
|
},
|
|
18963
19020
|
},
|
|
18964
19021
|
{
|
|
@@ -18971,7 +19028,7 @@ var SolarizedStyle = {
|
|
|
18971
19028
|
filter: ['all', ['in', 'class', 'taxiway'], ['==', '$type', 'LineString']],
|
|
18972
19029
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
18973
19030
|
paint: {
|
|
18974
|
-
'line-color': '#
|
|
19031
|
+
'line-color': '#f2853e',
|
|
18975
19032
|
'line-width': {
|
|
18976
19033
|
base: 1.5,
|
|
18977
19034
|
stops: [
|
|
@@ -18998,7 +19055,7 @@ var SolarizedStyle = {
|
|
|
18998
19055
|
filter: ['all', ['in', 'class', 'runway'], ['==', '$type', 'LineString']],
|
|
18999
19056
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
19000
19057
|
paint: {
|
|
19001
|
-
'line-color': '#
|
|
19058
|
+
'line-color': '#f2853e',
|
|
19002
19059
|
'line-width': {
|
|
19003
19060
|
base: 1.5,
|
|
19004
19061
|
stops: [
|
|
@@ -19024,7 +19081,7 @@ var SolarizedStyle = {
|
|
|
19024
19081
|
filter: ['==', '$type', 'Polygon'],
|
|
19025
19082
|
layout: { visibility: 'visible' },
|
|
19026
19083
|
paint: {
|
|
19027
|
-
'fill-color': '#
|
|
19084
|
+
'fill-color': '#a6480b',
|
|
19028
19085
|
'fill-outline-color': '#cfcdca',
|
|
19029
19086
|
'fill-opacity': 0.9,
|
|
19030
19087
|
'fill-antialias': false,
|
|
@@ -19040,7 +19097,7 @@ var SolarizedStyle = {
|
|
|
19040
19097
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
|
|
19041
19098
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
19042
19099
|
paint: {
|
|
19043
|
-
'line-color': '#
|
|
19100
|
+
'line-color': '#d65d0e',
|
|
19044
19101
|
'line-opacity': 1,
|
|
19045
19102
|
'line-width': {
|
|
19046
19103
|
base: 1.2,
|
|
@@ -19067,7 +19124,7 @@ var SolarizedStyle = {
|
|
|
19067
19124
|
],
|
|
19068
19125
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
19069
19126
|
paint: {
|
|
19070
|
-
'line-color': '#
|
|
19127
|
+
'line-color': '#d65d0e',
|
|
19071
19128
|
'line-opacity': 1,
|
|
19072
19129
|
'line-width': {
|
|
19073
19130
|
base: 1.2,
|
|
@@ -19093,7 +19150,7 @@ var SolarizedStyle = {
|
|
|
19093
19150
|
],
|
|
19094
19151
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
19095
19152
|
paint: {
|
|
19096
|
-
'line-color': 'rgba(
|
|
19153
|
+
'line-color': 'rgba(214,93,14,0.8)',
|
|
19097
19154
|
'line-opacity': {
|
|
19098
19155
|
stops: [
|
|
19099
19156
|
[12, 0],
|
|
@@ -19124,7 +19181,7 @@ var SolarizedStyle = {
|
|
|
19124
19181
|
],
|
|
19125
19182
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
19126
19183
|
paint: {
|
|
19127
|
-
'line-color': '#
|
|
19184
|
+
'line-color': '#d65d0e',
|
|
19128
19185
|
'line-opacity': 1,
|
|
19129
19186
|
'line-width': {
|
|
19130
19187
|
base: 1.2,
|
|
@@ -19145,7 +19202,7 @@ var SolarizedStyle = {
|
|
|
19145
19202
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'primary']],
|
|
19146
19203
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
19147
19204
|
paint: {
|
|
19148
|
-
'line-color': '#
|
|
19205
|
+
'line-color': '#d65d0e',
|
|
19149
19206
|
'line-opacity': {
|
|
19150
19207
|
stops: [
|
|
19151
19208
|
[7, 0],
|
|
@@ -19173,7 +19230,7 @@ var SolarizedStyle = {
|
|
|
19173
19230
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['in', 'class', 'trunk']],
|
|
19174
19231
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
19175
19232
|
paint: {
|
|
19176
|
-
'line-color': '#
|
|
19233
|
+
'line-color': '#d65d0e',
|
|
19177
19234
|
'line-opacity': {
|
|
19178
19235
|
stops: [
|
|
19179
19236
|
[5, 0],
|
|
@@ -19201,7 +19258,7 @@ var SolarizedStyle = {
|
|
|
19201
19258
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway']],
|
|
19202
19259
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
19203
19260
|
paint: {
|
|
19204
|
-
'line-color': '#
|
|
19261
|
+
'line-color': '#d65d0e',
|
|
19205
19262
|
'line-width': {
|
|
19206
19263
|
base: 1.2,
|
|
19207
19264
|
stops: [
|
|
@@ -19232,7 +19289,7 @@ var SolarizedStyle = {
|
|
|
19232
19289
|
['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'path']],
|
|
19233
19290
|
],
|
|
19234
19291
|
paint: {
|
|
19235
|
-
'line-color': '#
|
|
19292
|
+
'line-color': '#fe8019',
|
|
19236
19293
|
'line-dasharray': [1.5, 0.75],
|
|
19237
19294
|
'line-width': {
|
|
19238
19295
|
base: 1.2,
|
|
@@ -19253,7 +19310,7 @@ var SolarizedStyle = {
|
|
|
19253
19310
|
filter: ['all', ['!in', 'brunnel', 'bridge', 'tunnel'], ['==', 'class', 'motorway_link']],
|
|
19254
19311
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
19255
19312
|
paint: {
|
|
19256
|
-
'line-color': '#
|
|
19313
|
+
'line-color': '#ebdbb2',
|
|
19257
19314
|
'line-width': {
|
|
19258
19315
|
base: 1.2,
|
|
19259
19316
|
stops: [
|
|
@@ -19279,7 +19336,7 @@ var SolarizedStyle = {
|
|
|
19279
19336
|
],
|
|
19280
19337
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
19281
19338
|
paint: {
|
|
19282
|
-
'line-color': '#
|
|
19339
|
+
'line-color': '#ebdbb2',
|
|
19283
19340
|
'line-width': {
|
|
19284
19341
|
base: 1.2,
|
|
19285
19342
|
stops: [
|
|
@@ -19304,7 +19361,7 @@ var SolarizedStyle = {
|
|
|
19304
19361
|
],
|
|
19305
19362
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
19306
19363
|
paint: {
|
|
19307
|
-
'line-color': '#
|
|
19364
|
+
'line-color': '#f49456',
|
|
19308
19365
|
'line-opacity': 1,
|
|
19309
19366
|
'line-width': {
|
|
19310
19367
|
base: 1.2,
|
|
@@ -19329,7 +19386,7 @@ var SolarizedStyle = {
|
|
|
19329
19386
|
],
|
|
19330
19387
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
19331
19388
|
paint: {
|
|
19332
|
-
'line-color': '#
|
|
19389
|
+
'line-color': '#ebdbb2',
|
|
19333
19390
|
'line-width': {
|
|
19334
19391
|
base: 1.2,
|
|
19335
19392
|
stops: [
|
|
@@ -19353,7 +19410,7 @@ var SolarizedStyle = {
|
|
|
19353
19410
|
],
|
|
19354
19411
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
19355
19412
|
paint: {
|
|
19356
|
-
'line-color': '#
|
|
19413
|
+
'line-color': '#ebdbb2',
|
|
19357
19414
|
'line-width': {
|
|
19358
19415
|
base: 1.2,
|
|
19359
19416
|
stops: [
|
|
@@ -19377,7 +19434,7 @@ var SolarizedStyle = {
|
|
|
19377
19434
|
],
|
|
19378
19435
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
19379
19436
|
paint: {
|
|
19380
|
-
'line-color': '#
|
|
19437
|
+
'line-color': '#ebdbb2',
|
|
19381
19438
|
'line-width': {
|
|
19382
19439
|
base: 1.2,
|
|
19383
19440
|
stops: [
|
|
@@ -19402,7 +19459,7 @@ var SolarizedStyle = {
|
|
|
19402
19459
|
],
|
|
19403
19460
|
layout: { 'line-cap': 'round', 'line-join': 'round', visibility: 'visible' },
|
|
19404
19461
|
paint: {
|
|
19405
|
-
'line-color': '#
|
|
19462
|
+
'line-color': '#ebdbb2',
|
|
19406
19463
|
'line-width': {
|
|
19407
19464
|
base: 1.2,
|
|
19408
19465
|
stops: [
|
|
@@ -19425,7 +19482,7 @@ var SolarizedStyle = {
|
|
|
19425
19482
|
['all', ['==', 'class', 'rail'], ['has', 'service']],
|
|
19426
19483
|
],
|
|
19427
19484
|
paint: {
|
|
19428
|
-
'line-color': 'rgba(
|
|
19485
|
+
'line-color': 'rgba(118,51,8,0.7)',
|
|
19429
19486
|
'line-width': {
|
|
19430
19487
|
base: 1.4,
|
|
19431
19488
|
stops: [
|
|
@@ -19448,7 +19505,7 @@ var SolarizedStyle = {
|
|
|
19448
19505
|
],
|
|
19449
19506
|
layout: { visibility: 'visible' },
|
|
19450
19507
|
paint: {
|
|
19451
|
-
'line-color': 'rgba(
|
|
19508
|
+
'line-color': 'rgba(118,51,8,0.7)',
|
|
19452
19509
|
'line-dasharray': [0.2, 8],
|
|
19453
19510
|
'line-width': {
|
|
19454
19511
|
base: 1.4,
|
|
@@ -19477,7 +19534,7 @@ var SolarizedStyle = {
|
|
|
19477
19534
|
],
|
|
19478
19535
|
],
|
|
19479
19536
|
paint: {
|
|
19480
|
-
'line-color': '#
|
|
19537
|
+
'line-color': '#763308',
|
|
19481
19538
|
'line-width': {
|
|
19482
19539
|
base: 1.4,
|
|
19483
19540
|
stops: [
|
|
@@ -19505,7 +19562,7 @@ var SolarizedStyle = {
|
|
|
19505
19562
|
],
|
|
19506
19563
|
],
|
|
19507
19564
|
paint: {
|
|
19508
|
-
'line-color': '#
|
|
19565
|
+
'line-color': '#763308',
|
|
19509
19566
|
'line-dasharray': [0.2, 8],
|
|
19510
19567
|
'line-width': {
|
|
19511
19568
|
base: 1.4,
|
|
@@ -19526,7 +19583,7 @@ var SolarizedStyle = {
|
|
|
19526
19583
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
|
|
19527
19584
|
layout: { 'line-join': 'round' },
|
|
19528
19585
|
paint: {
|
|
19529
|
-
'line-color': '#
|
|
19586
|
+
'line-color': '#d65d0e',
|
|
19530
19587
|
'line-opacity': 1,
|
|
19531
19588
|
'line-width': {
|
|
19532
19589
|
base: 1.2,
|
|
@@ -19552,7 +19609,7 @@ var SolarizedStyle = {
|
|
|
19552
19609
|
],
|
|
19553
19610
|
layout: { 'line-join': 'round' },
|
|
19554
19611
|
paint: {
|
|
19555
|
-
'line-color': '#
|
|
19612
|
+
'line-color': '#d65d0e',
|
|
19556
19613
|
'line-opacity': 1,
|
|
19557
19614
|
'line-width': {
|
|
19558
19615
|
base: 1.2,
|
|
@@ -19574,7 +19631,7 @@ var SolarizedStyle = {
|
|
|
19574
19631
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
|
|
19575
19632
|
layout: { 'line-join': 'round' },
|
|
19576
19633
|
paint: {
|
|
19577
|
-
'line-color': '#
|
|
19634
|
+
'line-color': '#d65d0e',
|
|
19578
19635
|
'line-opacity': 1,
|
|
19579
19636
|
'line-width': {
|
|
19580
19637
|
base: 1.2,
|
|
@@ -19594,7 +19651,7 @@ var SolarizedStyle = {
|
|
|
19594
19651
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
|
|
19595
19652
|
layout: { 'line-join': 'round' },
|
|
19596
19653
|
paint: {
|
|
19597
|
-
'line-color': '#
|
|
19654
|
+
'line-color': '#d65d0e',
|
|
19598
19655
|
'line-width': {
|
|
19599
19656
|
base: 1.2,
|
|
19600
19657
|
stops: [
|
|
@@ -19615,7 +19672,7 @@ var SolarizedStyle = {
|
|
|
19615
19672
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
|
|
19616
19673
|
layout: { 'line-join': 'round' },
|
|
19617
19674
|
paint: {
|
|
19618
|
-
'line-color': '#
|
|
19675
|
+
'line-color': '#d65d0e',
|
|
19619
19676
|
'line-width': {
|
|
19620
19677
|
base: 1.2,
|
|
19621
19678
|
stops: [
|
|
@@ -19639,7 +19696,7 @@ var SolarizedStyle = {
|
|
|
19639
19696
|
['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
|
|
19640
19697
|
],
|
|
19641
19698
|
paint: {
|
|
19642
|
-
'line-color': '#
|
|
19699
|
+
'line-color': '#f17626',
|
|
19643
19700
|
'line-width': {
|
|
19644
19701
|
base: 1.2,
|
|
19645
19702
|
stops: [
|
|
@@ -19661,7 +19718,7 @@ var SolarizedStyle = {
|
|
|
19661
19718
|
['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'path']],
|
|
19662
19719
|
],
|
|
19663
19720
|
paint: {
|
|
19664
|
-
'line-color': '#
|
|
19721
|
+
'line-color': '#fe8019',
|
|
19665
19722
|
'line-width': {
|
|
19666
19723
|
base: 1.2,
|
|
19667
19724
|
stops: [
|
|
@@ -19681,7 +19738,7 @@ var SolarizedStyle = {
|
|
|
19681
19738
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway_link']],
|
|
19682
19739
|
layout: { 'line-join': 'round' },
|
|
19683
19740
|
paint: {
|
|
19684
|
-
'line-color': '#
|
|
19741
|
+
'line-color': '#ebdbb2',
|
|
19685
19742
|
'line-width': {
|
|
19686
19743
|
base: 1.2,
|
|
19687
19744
|
stops: [
|
|
@@ -19706,7 +19763,7 @@ var SolarizedStyle = {
|
|
|
19706
19763
|
],
|
|
19707
19764
|
layout: { 'line-join': 'round' },
|
|
19708
19765
|
paint: {
|
|
19709
|
-
'line-color': '#
|
|
19766
|
+
'line-color': '#ebdbb2',
|
|
19710
19767
|
'line-width': {
|
|
19711
19768
|
base: 1.2,
|
|
19712
19769
|
stops: [
|
|
@@ -19727,7 +19784,7 @@ var SolarizedStyle = {
|
|
|
19727
19784
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'secondary', 'tertiary']],
|
|
19728
19785
|
layout: { 'line-join': 'round' },
|
|
19729
19786
|
paint: {
|
|
19730
|
-
'line-color': '#
|
|
19787
|
+
'line-color': '#ebdbb2',
|
|
19731
19788
|
'line-width': {
|
|
19732
19789
|
base: 1.2,
|
|
19733
19790
|
stops: [
|
|
@@ -19747,7 +19804,7 @@ var SolarizedStyle = {
|
|
|
19747
19804
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['in', 'class', 'primary', 'trunk']],
|
|
19748
19805
|
layout: { 'line-join': 'round' },
|
|
19749
19806
|
paint: {
|
|
19750
|
-
'line-color': '#
|
|
19807
|
+
'line-color': '#ebdbb2',
|
|
19751
19808
|
'line-width': {
|
|
19752
19809
|
base: 1.2,
|
|
19753
19810
|
stops: [
|
|
@@ -19767,7 +19824,7 @@ var SolarizedStyle = {
|
|
|
19767
19824
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'motorway']],
|
|
19768
19825
|
layout: { 'line-join': 'round' },
|
|
19769
19826
|
paint: {
|
|
19770
|
-
'line-color': '#
|
|
19827
|
+
'line-color': '#ebdbb2',
|
|
19771
19828
|
'line-width': {
|
|
19772
19829
|
base: 1.2,
|
|
19773
19830
|
stops: [
|
|
@@ -19786,7 +19843,7 @@ var SolarizedStyle = {
|
|
|
19786
19843
|
'source-layer': 'transportation',
|
|
19787
19844
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
|
|
19788
19845
|
paint: {
|
|
19789
|
-
'line-color': '#
|
|
19846
|
+
'line-color': '#763308',
|
|
19790
19847
|
'line-width': {
|
|
19791
19848
|
base: 1.4,
|
|
19792
19849
|
stops: [
|
|
@@ -19805,7 +19862,7 @@ var SolarizedStyle = {
|
|
|
19805
19862
|
'source-layer': 'transportation',
|
|
19806
19863
|
filter: ['all', ['==', 'brunnel', 'bridge'], ['==', 'class', 'rail']],
|
|
19807
19864
|
paint: {
|
|
19808
|
-
'line-color': '#
|
|
19865
|
+
'line-color': '#763308',
|
|
19809
19866
|
'line-dasharray': [0.2, 8],
|
|
19810
19867
|
'line-width': {
|
|
19811
19868
|
base: 1.4,
|
|
@@ -19825,7 +19882,7 @@ var SolarizedStyle = {
|
|
|
19825
19882
|
filter: ['all', ['in', 'admin_level', 4, 6, 8], ['!=', 'maritime', 1]],
|
|
19826
19883
|
layout: { 'line-join': 'round' },
|
|
19827
19884
|
paint: {
|
|
19828
|
-
'line-color': '#
|
|
19885
|
+
'line-color': '#fb4934',
|
|
19829
19886
|
'line-dasharray': [3, 1, 1, 1],
|
|
19830
19887
|
'line-width': {
|
|
19831
19888
|
base: 1.4,
|
|
@@ -19845,7 +19902,7 @@ var SolarizedStyle = {
|
|
|
19845
19902
|
filter: ['all', ['==', 'admin_level', 2], ['!=', 'maritime', 1]],
|
|
19846
19903
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
19847
19904
|
paint: {
|
|
19848
|
-
'line-color': '#
|
|
19905
|
+
'line-color': '#fb4934',
|
|
19849
19906
|
'line-width': {
|
|
19850
19907
|
base: 1,
|
|
19851
19908
|
stops: [
|
|
@@ -19865,7 +19922,7 @@ var SolarizedStyle = {
|
|
|
19865
19922
|
filter: ['all', ['in', 'admin_level', 2, 4], ['==', 'maritime', 1]],
|
|
19866
19923
|
layout: { 'line-cap': 'round', 'line-join': 'round' },
|
|
19867
19924
|
paint: {
|
|
19868
|
-
'line-color': '#
|
|
19925
|
+
'line-color': '#83a598',
|
|
19869
19926
|
'line-width': {
|
|
19870
19927
|
base: 1,
|
|
19871
19928
|
stops: [
|
|
@@ -20882,6 +20939,37 @@ var SolarizedStyle = {
|
|
|
20882
20939
|
],
|
|
20883
20940
|
};
|
|
20884
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
|
+
|
|
20885
20973
|
exports.AddLayerButton = AddLayerButton;
|
|
20886
20974
|
exports.AddLayerPopup = AddLayerPopup;
|
|
20887
20975
|
exports.ColorPicker = PaintPropsColorPicker;
|
|
@@ -20895,6 +20983,7 @@ exports.LayerContextProvider = LayerContextProvider;
|
|
|
20895
20983
|
exports.LayerList = LayerList;
|
|
20896
20984
|
exports.LayerListFolder = LayerListFolder;
|
|
20897
20985
|
exports.LayerListItem = LayerListItem;
|
|
20986
|
+
exports.LayerListItemFactory = LayerListItemFactory;
|
|
20898
20987
|
exports.LayerListItemVectorLayer = LayerListItemVectorLayer;
|
|
20899
20988
|
exports.LayerPropertyForm = LayerPropertyForm;
|
|
20900
20989
|
exports.LayerTypeForm = LayerTypeForm;
|