여행 탭 develop

- 지도 추가
 - 지도 매칭하여 해당 여행 사진 매칭
 - 사진 클릭시 모달로 사진 렌더링 (lazy, cache, thumb 사용)
This commit is contained in:
2026-01-20 03:20:16 +09:00
parent 837408423e
commit d4ec482289
5 changed files with 800 additions and 124 deletions

34
src/data/travelRegions.js Normal file
View File

@@ -0,0 +1,34 @@
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],
],
},
];