Browse Source

비행구역 - POLYGON 반경 초기화

pull/2/head
junh_eee(이준희) 2 years ago
parent
commit
75c29bb3c9
  1. 5
      src/components/map/naver/draw/FlightPlanDraw.js

5
src/components/map/naver/draw/FlightPlanDraw.js

@ -532,9 +532,12 @@ export const FlightPlanDraw = props => {
} }
const setAreaInfo = (path) => { const setAreaInfo = (path) => {
let bufferZone = 100;
if(polygon) bufferZone = 0;
areaInfo = { areaInfo = {
coordinates: [], coordinates: [],
bufferZone: 100, bufferZone: bufferZone,
}; };
let prePath = []; let prePath = [];

Loading…
Cancel
Save