feat: Add Turkey's regions to country map visualization (#27455)

This commit is contained in:
İSKENDER ÜLGEN OĞUL 2024-03-14 23:20:39 +03:00 committed by GitHub
parent 7f19d296b1
commit 6b529a4b68
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 210 additions and 1228 deletions

View File

@ -101,6 +101,7 @@ import tanzania from './countries/tanzania.geojson';
import thailand from './countries/thailand.geojson';
import timorleste from './countries/timorleste.geojson';
import turkey from './countries/turkey.geojson';
import turkey_regions from './countries/turkey_regions.geojson';
import turkmenistan from './countries/turkmenistan.geojson';
import uganda from './countries/uganda.geojson';
import uk from './countries/uk.geojson';
@ -198,6 +199,7 @@ export const countries = {
thailand,
timorleste,
turkey,
turkey_regions,
turkmenistan,
uganda,
uk,
@ -221,6 +223,9 @@ export const countryOptions = Object.keys(countries).map(x => {
if (x === 'france_regions') {
return [x, 'France (regions)'];
}
if (x === 'turkey_regions') {
return [x, 'Turkey (regions)'];
}
return [
x,
x

File diff suppressed because one or more lines are too long