-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[#18] apply kakao map api #37
Merged
Merged
Changes from 7 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
02d799d
[#18] each store latitude, longitude
hanseulhee a9b0d7a
[#18] modify each store file
hanseulhee 4f70bba
[#18] modify BottomLink z-index
hanseulhee cc5a572
[#18] apply icon logo
hanseulhee 1c4e044
[#18] apply kakao map api
hanseulhee 67109ef
[#18] docs: file settings
hanseulhee 84fbff8
[#18] apply place title style
hanseulhee 714e79f
[#18] apply position readonly
hanseulhee File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
export interface IPosition { | ||
title: string; | ||
lat: number; | ||
lng: number; | ||
} | ||
|
||
export const positions: IPosition[] = [ | ||
{ | ||
title: "돈내고 돈먹기", | ||
lat: 37.4917912, | ||
lng: 126.8231256, | ||
}, | ||
{ | ||
title: "토마토", | ||
lat: 37.4876806, | ||
lng: 126.8243201, | ||
}, | ||
{ | ||
title: "썬더치킨", | ||
lat: 37.4917912, | ||
lng: 126.8231256, | ||
}, | ||
{ | ||
title: "맷돌손두부", | ||
lat: 37.4895782, | ||
lng: 126.824553, | ||
}, | ||
{ | ||
title: "쎼쎼", | ||
lat: 37.4890201, | ||
lng: 126.8248655, | ||
}, | ||
{ | ||
title: "미스터동", | ||
lat: 37.4895877, | ||
lng: 126.8244868, | ||
}, | ||
{ | ||
title: "오구쌀피자", | ||
lat: 37.4872294, | ||
lng: 126.8242853, | ||
}, | ||
{ | ||
title: "터프네이모", | ||
lat: 37.4917629, | ||
lng: 126.8230563, | ||
}, | ||
{ | ||
title: "냉삼집", | ||
lat: 37.4916901, | ||
lng: 126.8235222, | ||
}, | ||
{ | ||
title: "153닭불덮밥", | ||
lat: 37.4898644, | ||
lng: 126.8249563, | ||
}, | ||
{ | ||
title: "다원국수", | ||
lat: 37.4893847, | ||
lng: 126.8251942, | ||
}, | ||
{ | ||
title: "의정부부대찌개", | ||
lat: 37.4917485, | ||
lng: 126.8238684, | ||
}, | ||
{ | ||
title: "고바우", | ||
lat: 37.49176442, | ||
lng: 126.82123825, | ||
}, | ||
{ | ||
title: "이삭토스트", | ||
lat: 37.4876806, | ||
lng: 126.8243201, | ||
}, | ||
{ | ||
title: "친구야호프할래", | ||
lat: 37.4917485, | ||
lng: 126.8238684, | ||
}, | ||
{ | ||
title: "약초마을", | ||
lat: 37.4930176, | ||
lng: 126.8241008, | ||
}, | ||
{ | ||
title: "바베큐보스치킨", | ||
lat: 37.4917485, | ||
lng: 126.8238684, | ||
}, | ||
{ | ||
title: "피자마루", | ||
lat: 37.4933653, | ||
lng: 126.8310927, | ||
}, | ||
{ | ||
title: "본가칡냉면", | ||
lat: 37.4890201, | ||
lng: 126.8248655, | ||
}, | ||
{ | ||
title: "하루", | ||
lat: 37.4917629, | ||
lng: 126.8230563, | ||
}, | ||
{ | ||
title: "학사마을", | ||
lat: 37.4917629, | ||
lng: 126.8230563, | ||
}, | ||
{ | ||
title: "섬진강추어탕", | ||
lat: 37.4898176, | ||
lng: 126.8248436, | ||
}, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이런 상수의 경우
as const
, const assertion 이라 불리는 문법을 적용해readonly
로 관리하는 게 더 안전할 거 같아요 ~~https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-4.html#const-assertions
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
아하! 넵 ~~~~