react 지도 검색어 (1) 썸네일형 리스트형 [#. React] Kakao 카카오 지도 API를 이용해서 키워드로 장소 검색하기, 검색한 장소 마커 띄우기 ① APP KEY 발급 받기 카카오에서 상세한 발급 과정을 알려준다 이렇게 앱키를 발급 받았으면 여기서 JavaScript 키를 사용할 것이다 ② 프로젝트/public/index.html 사이 아래 script를 추가한다 ③ 프로젝트/src/components/views/Landing/LandingPage.js import React, { useState } from 'react' import MapContainer from './Sections/MapContainer' function LandingPage() { const [InputText, setInputText] = useState('') const [Place, setPlace] = useState('') const onChange = (e) .. 이전 1 다음