-
javascript | 구글 지도 API, Google Maps 무료 APIAPI (Application Programing Interface) 2021. 6. 10. 11:31반응형
구글 지도 Google Maps API가 부분적으로 유료화되고 나서
매월 $200 요금의 무료 사용량을 제공하긴 하지만
관리하기도 번거롭고, 신경쓰지 않고 편하게 사용하고 싶기 때문에
구글 Maps API 중에서도 무료인 Embed API를 사용해보기로 한다.
#Step
- Google Maps Platform 프로젝트 생성
- API Key 생성 및 설정
- Maps Embed API 구현
Google Maps Platform 프로젝트 생성
https://developers.google.com/maps/gmp-get-started?hl=koAPI Key 생성 및 설정
Maps Embed API, iframe
https://www.google.com/maps/embed/v1/place?key=API_KEY&q=서울시청®ion=KR&language=ko
key: API KEY
q: 장소 이름, 주소, 코드 또는 장소 ID
region: 지역코드 KR로 설정하지 않을 경우 동해가 일본해로 표기된다.
language: UI 요소 및지도 타일의 레이블 표시에 사용할 언어<iframe height="450" style="border:0" loading="lazy" allowfullscreen src="https://www.google.com/maps/embed/v1/place?key=API_KEY&q=서울시청®ion=KR&language=ko"> </iframe>
결과
Parameters
Google Maps API Document
https://developers.google.com/maps/documentation/embed/embedding-map?hl=koGoogle Maps Pricing & Plans
https://cloud.google.com/maps-platform/pricing/?hl=ko반응형'API (Application Programing Interface)' 카테고리의 다른 글
공공 데이터 API | 한국 거래소 주식 시세 조회하기 (0) 2023.01.28 javascript | 구글 로그인 버튼 만들기, Google Login Api (0) 2021.06.04 JavaScript | 네이버 지도 연동하기, NAVER MAP API (0) 2021.05.21 JAVA | 기상청 동네예보, 공공 데이터 Open API 구현하기 (2) 2021.05.17