Gathering detailed insights and metrics for @kellsthepenguin/react-kakao-maps-sdk
Gathering detailed insights and metrics for @kellsthepenguin/react-kakao-maps-sdk
React components for using kakao map api
npm install @kellsthepenguin/react-kakao-maps-sdk
Typescript
Module System
Node Version
NPM Version
69.3
Supply Chain
94
Quality
75.2
Maintenance
100
Vulnerability
100
License
TypeScript (98.37%)
Dockerfile (1.49%)
Shell (0.14%)
Verify real, reachable, and deliverable emails with instant MX records, SMTP checks, and disposable email detection.
Total Downloads
390
Last Day
2
Last Week
3
Last Month
11
Last Year
253
MIT License
179 Commits
1 Branches
1 Contributors
Updated on Aug 07, 2023
Minified
Minified + Gzipped
Latest Version
1.1.11
Package Id
@kellsthepenguin/react-kakao-maps-sdk@1.1.11
Unpacked Size
814.88 kB
Size
179.74 kB
File Count
42
NPM Version
8.19.4
Node Version
16.20.1
Published on
Aug 07, 2023
Cumulative downloads
Total Downloads
Last Day
0%
2
Compared to previous day
Last Week
-25%
3
Compared to previous week
Last Month
-47.6%
11
Compared to previous month
Last Year
84.7%
253
Compared to previous year
1
21
์ด ๋ผ์ด๋ธ๋ฌ๋ฆฌ๋ฅผ ์ฌ์ฉํ๊ธฐ ์ํด์๋ ํ์์ ์ผ๋ก Kakao ์ง๋ API๋ฅผ ๋ถ๋ฌ์์ผ ํฉ๋๋ค.
1<script 2 type="text/javascript" 3 src="//dapi.kakao.com/v2/maps/sdk.js?appkey=๋ฐ๊ธ๋ฐ์ APP KEY๋ฅผ ๋ฃ์ผ์๋ฉด ๋ฉ๋๋ค.&libraries=services,clusterer" 4></script>
ํ์ ์คํฌ๋ฆฝํธ ์ฌ์ฉ์๋ฅผ ์ํด kakao.maps.d.ts ํจํค์ง๋ฅผ ์ ๊ณตํฉ๋๋ค.
tsconfig.json
์ compilerOptions.types
์์ฑ์ kakao.maps.d.ts
ํจํค์ง๋ฅผ ์ถ๊ฐํ์๋ฉด ๋ฉ๋๋ค.
1{ 2 ..., 3 "compilerOptions": { 4 ..., 5 "types": [ 6 ..., 7 "kakao.maps.d.ts" 8 ] 9 } 10}
1npm install react-kakao-maps-sdk 2# or 3yarn add react-kakao-maps-sdk
1function(){ 2 return ( 3 <Map 4 center={{ lat: 33.5563, lng: 126.79581 }} 5 style={{ width: "100%", height: "360px" }} 6 > 7 <MapMarker position={{ lat: 33.55635, lng: 126.795841 }}> 8 <div style={{color:"#000"}}>Hello World!</div> 9 </MapMarker> 10 </Map> 11 ) 12}
1function(){ 2 return ( 3 <Map 4 center={{ lat: 33.5563, lng: 126.79581 }} 5 style={{ width: "100%", height: "360px" }} 6 > 7 <CustomOverlayMap position={{ lat: 33.55635, lng: 126.795841 }}> 8 <div 9 style={{padding:"42px", backgroundColor:"#fff", color:"#000"}} 10 > 11 Custom Overlay! 12 </div> 13 </CustomOverlayMap> 14 </Map> 15 ) 16}
1function(){ 2 return ( 3 <Map 4 center={{ lat: 36.2683, lng: 127.6358 }} 5 style={{ width: "100%", height: "360px" }} 6 level={14} 7 > 8 <MarkerClusterer 9 averageCenter={true} 10 minLevel={10} 11 > 12 {clusterPositionsData.positions.map((pos) => ( 13 <MapMarker 14 key={`${pos.lat}-${pos.lng}`} 15 position={pos} 16 /> 17 ))} 18 </MarkerClusterer> 19 </Map> 20 ) 21}
ISSUE์ PR ๋ํ์ ์ ๋๋ค..!!
No vulnerabilities found.
No security vulnerabilities found.