You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.0 KiB
48 lines
1.0 KiB
import type { Style } from 'mapbox-gl';
|
|
|
|
export interface MapStyle {
|
|
title: string;
|
|
data: Style | string;
|
|
}
|
|
|
|
export const MapStyles = {
|
|
Streets: {
|
|
title: 'Streets',
|
|
data: 'mapbox://styles/mapbox/streets-v11?optimize=true',
|
|
} as MapStyle,
|
|
Outdoors: {
|
|
title: 'Outdoors',
|
|
data: 'mapbox://styles/mapbox/outdoors-v11?optimize=true',
|
|
} as MapStyle,
|
|
|
|
Light: {
|
|
title: 'Light',
|
|
data: 'mapbox://styles/mapbox/light-v10?optimize=true',
|
|
} as MapStyle,
|
|
Dark: {
|
|
title: 'Dark',
|
|
data: 'mapbox://styles/sachaw/ckwzwm92e1oep14pjunjqlqbo?optimize=true',
|
|
} as MapStyle,
|
|
Satellite: {
|
|
title: 'Satellite',
|
|
|
|
data: {
|
|
version: 8,
|
|
layers: [
|
|
{
|
|
id: 'esri',
|
|
type: 'raster',
|
|
source: 'esri',
|
|
},
|
|
],
|
|
sources: {
|
|
esri: {
|
|
type: 'raster',
|
|
tiles: [
|
|
'https://clarity.maptiles.arcgis.com/arcgis/rest/services/World_Imagery/MapServer/tile/{z}/{y}/{x}',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
} as MapStyle,
|
|
};
|
|
|