16 lines
705 B
TypeScript
16 lines
705 B
TypeScript
// mapStyles.ts
|
|
export const MAPBOX_STYLES = {
|
|
Standard: 'mapbox://styles/mapbox/standard',
|
|
StandardSatellite: 'mapbox://styles/mapbox/standard-satellite',
|
|
Streets: 'mapbox://styles/mapbox/streets-v12',
|
|
Outdoors: 'mapbox://styles/mapbox/outdoors-v12',
|
|
Light: 'mapbox://styles/mapbox/light-v11',
|
|
Dark: 'mapbox://styles/mapbox/dark-v11',
|
|
Satellite: 'mapbox://styles/mapbox/satellite-v9',
|
|
SatelliteStreets: 'mapbox://styles/mapbox/satellite-streets-v12',
|
|
NavigationDay: 'mapbox://styles/mapbox/navigation-day-v1',
|
|
NavigationNight: 'mapbox://styles/mapbox/navigation-night-v1',
|
|
} as const;
|
|
|
|
export type MapboxStyle = (typeof MAPBOX_STYLES)[keyof typeof MAPBOX_STYLES];
|