[leaflet] divIcon 마커 찍기
[leaflet] divIcon 마커 찍기 데이터 구조 items = [ { buld_nm : 'A 아파트', st_x : '126.123', st_y : '37.123' }, { buld_nm : 'B 백화점', st_x : '123.123', st_y : '34.123' } ] 함수 호출 // 마커 찍기 mymap.addSearchMarker(this.items); 마커 레이어 추가 var cities = new L.LayerGroup(); L.marker([39.61, -105.02]).bindPopup('This is Littleton, CO.').addTo(cities), L.marker([39.74, -104.99]).bindPopup('This is Denver, CO.').addTo(cit..
2017. 4. 22.