35 lines
603 B
JavaScript
35 lines
603 B
JavaScript
export const travelRegions = [
|
|
{
|
|
id: 'jeju',
|
|
label: 'Jeju',
|
|
bounds: [
|
|
[33.06, 126.1],
|
|
[33.6, 126.95],
|
|
],
|
|
},
|
|
{
|
|
id: 'maldives',
|
|
label: 'Maldives',
|
|
bounds: [
|
|
[-0.7, 72.6],
|
|
[7.3, 73.9],
|
|
],
|
|
},
|
|
{
|
|
id: 'osaka',
|
|
label: 'Osaka',
|
|
bounds: [
|
|
[34.4, 135.2],
|
|
[35.0, 135.8],
|
|
],
|
|
},
|
|
{
|
|
id: 'taipei',
|
|
label: 'Taipei',
|
|
bounds: [
|
|
[24.9, 121.3],
|
|
[25.2, 121.7],
|
|
],
|
|
},
|
|
];
|