Browse Source

laanc 상세맵 경고 수정

pull/2/head
junh_eee(이준희) 12 months ago
parent
commit
4736c6b87b
  1. 35
      src/views/laanc/LaancAreaMap.js

35
src/views/laanc/LaancAreaMap.js

@ -347,23 +347,8 @@ export default function LaancAreaMap({ centeredModal, mapContainer }) {
id='detail'
ref={mapContainer}
style={{ width: '100%', height: '70vh' }}
>
{isMapLoad && mapObject ? (
<LanncDraw
mapObject={mapObject}
mapboxgl={mapboxgl}
mode={mode}
areaCoordList={mapAreaCoordList}
handlerCoordinates={handlerCoordinates}
handlerInitCoordinates={handlerInitCoordinates}
handlerConfirm={handlerConfirm}
handlerDrawType={handlerDrawType}
centeredModal={centeredModal}
geojson={detailGeo}
detailLayer={detailLayer}
/>
) : null}
></div>
{/* 지도 검색 */}
<div className='d-flex search-comp absolute'>
<div className=''>
<InputGroup className='search-feather'>
@ -420,9 +405,23 @@ export default function LaancAreaMap({ centeredModal, mapContainer }) {
</div>
</div>
</div>
</div>
{isMapLoad && mapObject ? (
<>
<LanncDraw
mapObject={mapObject}
mapboxgl={mapboxgl}
mode={mode}
areaCoordList={mapAreaCoordList}
handlerCoordinates={handlerCoordinates}
handlerInitCoordinates={handlerInitCoordinates}
handlerConfirm={handlerConfirm}
handlerDrawType={handlerDrawType}
centeredModal={centeredModal}
geojson={detailGeo}
detailLayer={detailLayer}
/>
<FeatureAirZone map={mapObject} mapboxgl={mapboxgl} />
</>
) : null}
</div>
</CardBody>

Loading…
Cancel
Save