demarches-normaliennes/app/javascript/components/shared/maplibre/styles/layers/ign.ts

13 lines
220 B
TypeScript
Raw Normal View History

import type { RasterLayer } from 'maplibre-gl';
const layers: RasterLayer[] = [
{
id: 'ign',
source: 'plan-ign',
type: 'raster',
paint: { 'raster-resampling': 'linear' }
}
];
export default layers;