feat(country-map): add map for France with all overseas territories (#31037)
Co-authored-by: Maxime ALAY-EDDINE <maxime@galeax.com>
This commit is contained in:
parent
c0feb99f0e
commit
e788b858d0
|
|
@ -63,6 +63,7 @@
|
||||||
"Fiji",
|
"Fiji",
|
||||||
"Finland",
|
"Finland",
|
||||||
"France",
|
"France",
|
||||||
|
"France (with overseas)",
|
||||||
"France (regions)",
|
"France (regions)",
|
||||||
"French Polynesia",
|
"French Polynesia",
|
||||||
"Gabon",
|
"Gabon",
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -80,6 +80,7 @@ import ethiopia from './countries/ethiopia.geojson';
|
||||||
import fiji from './countries/fiji.geojson';
|
import fiji from './countries/fiji.geojson';
|
||||||
import finland from './countries/finland.geojson';
|
import finland from './countries/finland.geojson';
|
||||||
import france from './countries/france.geojson';
|
import france from './countries/france.geojson';
|
||||||
|
import france_overseas from './countries/france_overseas.geojson';
|
||||||
import france_regions from './countries/france_regions.geojson';
|
import france_regions from './countries/france_regions.geojson';
|
||||||
import french_polynesia from './countries/french_polynesia.geojson';
|
import french_polynesia from './countries/french_polynesia.geojson';
|
||||||
import gabon from './countries/gabon.geojson';
|
import gabon from './countries/gabon.geojson';
|
||||||
|
|
@ -280,6 +281,7 @@ export const countries = {
|
||||||
fiji,
|
fiji,
|
||||||
finland,
|
finland,
|
||||||
france,
|
france,
|
||||||
|
france_overseas,
|
||||||
france_regions,
|
france_regions,
|
||||||
french_polynesia,
|
french_polynesia,
|
||||||
gabon,
|
gabon,
|
||||||
|
|
@ -427,6 +429,9 @@ export const countryOptions = Object.keys(countries).map(x => {
|
||||||
if (x === 'france_regions') {
|
if (x === 'france_regions') {
|
||||||
return [x, 'France (regions)'];
|
return [x, 'France (regions)'];
|
||||||
}
|
}
|
||||||
|
if (x === 'france_overseas') {
|
||||||
|
return [x, 'France (with overseas)'];
|
||||||
|
}
|
||||||
if (x === 'turkey_regions') {
|
if (x === 'turkey_regions') {
|
||||||
return [x, 'Turkey (regions)'];
|
return [x, 'Turkey (regions)'];
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue