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);
});