국유인의타입추가

This commit is contained in:
2026-03-04 19:58:02 +09:00
parent 2fee2143ba
commit 57baf4d911
2 changed files with 22 additions and 19 deletions

View File

@@ -13,7 +13,10 @@ public enum LayerType implements EnumType {
TILE("배경지도"),
GEOJSON("객체데이터"),
WMTS("타일레이어"),
WMS("지적도");
WMS("지적도")
, KAMCO_WMS("국유인WMS")
, KAMCO_WMTS("국유인WMTS")
;
private final String desc;

View File

@@ -62,7 +62,7 @@ public class LayerService {
.orElseThrow(() -> new CustomApiException("BAD_REQUEST", HttpStatus.BAD_REQUEST));
switch (layerType) {
case TILE -> {
case TILE, KAMCO_WMS, KAMCO_WMTS -> {
return mapLayerCoreService.saveTile(dto);
}