화면 정보 가져오기
현재 화면의 중심 좌표값을 가져오기
/* javascript */
const coordinates = gwsJS.getMap().getView().getCenter();
const utm = gwsJS.toStringUTM(coordinates); // utm unit
const deg = gwsJS.toStringDEG(gwsJS.toLonLat(coordinates)); // deg unit
const dms = gwsJS.toStringDMS(gwsJS.toLonLat(coordinates)); // dms unit
현재 화면의 줌 레벨값
/* javascript */
const zoomLevel = gwsJS.getZoom();
const minZoomLevel = gwsJS.getMinZoom();
const maxZoomLevel = gwsJS.getMaxZoom();