fix: ordre géographique N→S (St-Martin, Guadeloupe, Dominique, Martinique, Ste-Lucie, Barbade)

This commit is contained in:
Gwadaking
2026-04-09 01:07:27 -04:00
parent 81cc9736d8
commit 50a9e49468
4 changed files with 5 additions and 5 deletions

View File

@@ -3,12 +3,12 @@ import logoUrl from '../../assets/logo-radarsargasses971.png';
import './Topbar.css';
const ISLANDS = [
{ key: 'saint-martin', label: 'St-Martin', center: [-63.07, 18.07], zoom: 11 },
{ key: 'guadeloupe', label: 'Guadeloupe', center: [-61.55, 16.25], zoom: 9 },
{ key: 'martinique', label: 'Martinique', center: [-61.02, 14.65], zoom: 9 },
{ key: 'dominique', label: 'Dominique', center: [-61.37, 15.41], zoom: 10 },
{ key: 'martinique', label: 'Martinique', center: [-61.02, 14.65], zoom: 9 },
{ key: 'sainte-lucie', label: 'Ste-Lucie', center: [-60.98, 13.90], zoom: 10 },
{ key: 'barbade', label: 'Barbade', center: [-59.55, 13.18], zoom: 10 },
{ key: 'saint-martin', label: 'St-Martin', center: [-63.07, 18.07], zoom: 11 },
];
export default function Topbar({ activeStep, onStepChange, onIslandSelect }) {