Skip to content

Commit

Permalink
Add country map for France with all overseas territories
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxime ALAY-EDDINE committed Nov 26, 2024
1 parent 91301bc commit a54d9fb
Show file tree
Hide file tree
Showing 4 changed files with 412 additions and 129 deletions.
1 change: 1 addition & 0 deletions docs/data/countries.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@
"Fiji",
"Finland",
"France",
"France (with overseas)",
"France (regions)",
"French Polynesia",
"Gabon",
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ import ethiopia from './countries/ethiopia.geojson';
import fiji from './countries/fiji.geojson';
import finland from './countries/finland.geojson';
import france from './countries/france.geojson';
import france_overseas from './countries/france_overseas.geojson';
import france_regions from './countries/france_regions.geojson';
import french_polynesia from './countries/french_polynesia.geojson';
import gabon from './countries/gabon.geojson';
Expand Down Expand Up @@ -280,6 +281,7 @@ export const countries = {
fiji,
finland,
france,
france_overseas,
france_regions,
french_polynesia,
gabon,
Expand Down Expand Up @@ -427,6 +429,9 @@ export const countryOptions = Object.keys(countries).map(x => {
if (x === 'france_regions') {
return [x, 'France (regions)'];
}
if (x === 'france_overseas') {
return [x, 'France (with overseas)'];
}
if (x === 'turkey_regions') {
return [x, 'Turkey (regions)'];
}
Expand Down
Loading

0 comments on commit a54d9fb

Please sign in to comment.