영상관리 년도별 타일 crs 추가하기

This commit is contained in:
2026-01-30 21:26:52 +09:00
parent 2559b225d5
commit b77de057f0
2 changed files with 47 additions and 16 deletions

View File

@@ -17,6 +17,11 @@ import lombok.Setter;
public class LayerDto {
public enum MapType {
CHANGE_MAP,
LABELING_MAP
}
@Getter
@Setter
@AllArgsConstructor
@@ -259,6 +264,9 @@ public class LayerDto {
@Schema(description = "rawJson")
private JsonNode rawJson;
@Schema(description = "crs")
private Integer crs;
public LayerMapDto(
String layerType,
String tag,
@@ -272,7 +280,8 @@ public class LayerDto {
Short maxZoom,
String bboxGeometry,
UUID uuid,
String rawJsonString) {
String rawJsonString,
Integer crs) {
this.layerType = layerType;
this.tag = tag;
this.sortOrder = sortOrder;
@@ -308,6 +317,7 @@ public class LayerDto {
this.rawJson = rawJson;
this.bbox = geoJson;
this.crs = crs;
}
@JsonProperty("workspace")
@@ -354,6 +364,8 @@ public class LayerDto {
@JsonIgnore private String bboxGeometry;
private Integer crs;
public TileUrlDto(
Integer mngYyyy,
String url,
@@ -364,7 +376,8 @@ public class LayerDto {
BigDecimal maxLat,
Short minZoom,
Short maxZoom,
String bboxGeometry) {
String bboxGeometry,
Integer crs) {
this.mngYyyy = mngYyyy;
this.url = url;
this.tag = tag;
@@ -388,6 +401,7 @@ public class LayerDto {
}
this.bbox = geoJson;
this.crs = crs;
}
}
@@ -408,15 +422,11 @@ public class LayerDto {
@NoArgsConstructor
@AllArgsConstructor
public static class IsMapYn {
@Schema(description = "CHANGE_MAP(변화지도), LABELING_MAP(라벨링지도)", example = "CHANGE_MAP")
private String mapType;
@Schema(description = "노출여부 true, false", example = "true")
private Boolean isMapYn;
}
public enum MapType {
CHANGE_MAP,
LABELING_MAP
}
}