[리액트] 네이버지도

강원지·2022년 11월 8일
0

https://phrygia.github.io/react/2021-09-21-react-modal/

var marker = new naver.maps.Marker({
        Map,
        title: obj.cctv.address,
        position: markerPosition,
        icon: {
          content: [
            '<div className="cs_mapbridge" id="cctv_marker_number" >',
            "<div>",
            obj.id,
            "</div>",
            "</div>",
          ].join(""),
          size: new naver.maps.Size(10, 10),
          anchor: new naver.maps.Point(19, 58),
        },
        draggable: true,
        value: obj.id,
      });
      marker.addListener("click", function (e) {
        //obj.id로 api 요청
        console.log(e.overlay.value);
        setModalOpen(true);
      });

0개의 댓글