@terrestris/vectortiles
Version:
A simple library that makes use of free available world-wide terrestris vectortiles in MapBox MVT format from OpenStreetMap data
27 lines (26 loc) • 627 B
JavaScript
export const style_waterareas = [{
'minResolution': 0,
'maxResolution': 99999,
'style': {
'riverbank': {
'fillColor': '#99B3CC',
'strokeColor': '#99B3CC',
'fillOpacity': 1,
'textFillColor': '#003fff',
'textFillWidth': 3,
'textStrokeColor': '#fff',
'textStrokeWidth': 5,
'textPlacement': 'point'
},
'water': {
'fillColor': '#99B3CC',
'strokeColor': '#99B3CC',
'fillOpacity': 1,
'textFillColor': '#003fff',
'textFillWidth': 3,
'textStrokeColor': '#fff',
'textStrokeWidth': 5,
'textPlacement': 'point'
}
}
}];