demarches-normaliennes/app/javascript/components/shared/mapbox/styles/index.js

30 lines
726 B
JavaScript
Raw Normal View History

import baseStyle, { buildOptionalLayers, getLayerName } from './base';
import orthoStyle from './layers/ortho';
import vectorStyle from './layers/vector';
import ignLayers from './layers/ign';
2020-10-15 17:22:08 +02:00
export { getLayerName };
export function getMapStyle(id, optionalLayers) {
const style = { ...baseStyle, id };
2020-10-15 17:22:08 +02:00
switch (id) {
2020-10-15 17:22:08 +02:00
case 'ortho':
style.layers = orthoStyle;
style.name = 'Photographies aériennes';
2020-10-15 17:22:08 +02:00
break;
case 'vector':
style.layers = vectorStyle;
style.name = 'Carte OSM';
2020-10-15 17:22:08 +02:00
break;
case 'ign':
style.layers = ignLayers;
style.name = 'Carte IGN';
2020-10-15 17:22:08 +02:00
break;
}
style.layers = style.layers.concat(buildOptionalLayers(optionalLayers));
2020-10-15 17:22:08 +02:00
return style;
2020-10-15 17:22:08 +02:00
}