
Product
Announcing Precomputed Reachability Analysis in Socket
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Vue3로 카카오맵을 가장 손쉽게 사용하는 법.
vue3-kakao-maps
는 Vue3
로 Kakao Map API를 손쉽게 사용할 수 있도록 개발된 컴포넌트 라이브러리입니다.
카카오맵 API의 지도
, 마커
, 인포윈도우
, 커스텀 오버레이
, 마커 클러스터
등을 컴포넌트 형태로 제공합니다.
사용 예시 및 컴포넌트 별 세부 속성값은 Docs에서 확인하실 수 있습니다.
!! 현재 24년 5월 중순 완성을 목표로 개발 중입니다. 하단 개발 일정 확인하시어 다운로드 하시기 바랍니다.
vue3-kakao-maps
에 관한 소중한 생각을 남겨주세요!
NPM
npm i vue3-kakao-maps
Yarn
yarn add vue3-kakao-maps
PNPM
pnpm install vue3-kakao-maps
1. 카카오맵 API 로드
main.{js|ts}
에서 useKakao('API key')
호출을 통해 카카오맵 API를 로드합니다.
참고: API key 발급 관련 내용은 공식 문서을 참고해주세요.
import { createApp } from 'vue';
import App from './App.vue';
import { useKakao } from 'vue3-kakao-maps';
useKakao('API key');
createApp(App).mount('#app');
2. 지도 컴포넌트 호출
카카오맵 지도를 띄우기 위해서 KakaoMap
컴포넌트를 사용합니다. props
를 통해 카카오맵 API에서 제공하는 다양한 option
을 전달할 수 있습니다.
<script setup>
import { KakaoMap, KakaoMapMarker } from 'vue3-kakao-maps';
const coordinate = {
lat: 37.566826,
lng: 126.9786567
};
</script>
<template>
<KakaoMap :lat="coordinate.lat" :lng="coordinate.lng" :draggable="true">
<KakaoMapMarker :lat="coordinate.lat" :lng="coordinate.lng"></KakaoMapMarker>
</KakaoMap>
</template>
문의사항이 있거나 도움이 필요한 경우 하단의 이메일로 연락주시기 바립니다.
FAQs
just for test
The npm package ryutest receives a total of 0 weekly downloads. As such, ryutest popularity was classified as not popular.
We found that ryutest demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket’s precomputed reachability slashes false positives by flagging up to 80% of vulnerabilities as irrelevant, with no setup and instant results.
Product
Socket is launching experimental protection for Chrome extensions, scanning for malware and risky permissions to prevent silent supply chain attacks.
Product
Add secure dependency scanning to Claude Desktop with Socket MCP, a one-click extension that keeps your coding conversations safe from malicious packages.