Files
web-page/src/data/travelRegions.js
gahusb d4ec482289 여행 탭 develop
- 지도 추가
 - 지도 매칭하여 해당 여행 사진 매칭
 - 사진 클릭시 모달로 사진 렌더링 (lazy, cache, thumb 사용)
2026-01-20 03:20:16 +09:00

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],
],
},
];