이미지 아이콘 사용하기
특정 이미지를 마커 아이콘으로 사용하는 예제입니다.
svelte
<script>
import { NaverMap, NaverMarker, createMapScript } from "svelte-naver-maps";
createMapScript({ clientId: "YOUR_NAVER_MAP_CLIENT_ID" });
const mapOptions = {
width: "100%",
height: "400px",
latitude: 37.3849483,
longitude: 127.1229117,
};
</script>
<NaverMap mapOptions={mapOptions}>
<NaverMarker
latitude={37.3849483}
longitude={127.1229117}
markerOptions={{
icon: {
url: "https://navermaps.github.io/maps.js.ncp/docs/img/example/sally.png",
size: { width: 50, height: 52 },
origin: { x: 0, y: 0 },
anchor: { x: 11, y: 35 },
}
}}
/>
</NaverMap>