레이어관리 수정

This commit is contained in:
2026-01-30 21:09:35 +09:00
parent 9a00c38cc7
commit 2559b225d5

View File

@@ -9,9 +9,9 @@ import lombok.Getter;
@Getter @Getter
@AllArgsConstructor @AllArgsConstructor
public enum CrsType implements EnumType { public enum CrsType implements EnumType {
EPSG_3857("korea 2000, 미터단위"), EPSG_3857("Web Mercator, 웹지도 미터(EPSG:900913 동일)"),
EPSG_4326("geojson, osm기본"), EPSG_4326("WGS84 위경도, GeoJSON/OSM 기본"),
EPSG_5186("google, EPSG:900913동일"); EPSG_5186("Korea 2000 중부 TM, 한국 SHP");
private final String desc; private final String desc;