본문 바로가기
카테고리 없음

3월, 봄꽃과 예술이 만나는 도시 이천 여행코스

by wjdflgkrl 2025. 3. 25.
반응형

한국관광공사 김지호

 

3월, 봄꽃과 예술이 만나는 도시 이천 여행코스

🌼 관광지 & 먹거리

경기도 남동부에 위치한 이천은 예술과 자연이 조화로운 도시입니다. 3월이면 노란 산수유꽃이 만개하며, 다양한 봄꽃과 문화 체험을 함께 즐길 수 있어 1박 2일 봄나들이 코스로 제격입니다.

📍 이천 산수유마을

3월 중순부터 말까지 산수유꽃이 흐드러지게 피는 산수유마을(백사면)은 이천의 대표 봄꽃 명소입니다. 노란 꽃길을 따라 걷는 트레킹 코스가 마련되어 있으며, 매년 이천 백사 산수유꽃축제도 개최됩니다.

📍 이천 도자예술마을 (예스파크)

예술가들이 직접 작업하고 전시하는 공간인 예스파크에서는 도자기 체험, 공예품 쇼핑, 야외 조형물 전시를 즐길 수 있습니다. 다양한 카페와 레스토랑도 있어 여유로운 하루 코스로 적합합니다.

📍 설봉공원

이천 시민들의 대표 휴식처인 설봉공원은 호수를 따라 산책하기 좋은 곳입니다. 설봉산 자락에 위치해 공원과 등산을 함께 즐기기에 좋고, 3월에는 초록이 물들기 시작하는 풍경을 만날 수 있습니다.

📍 이천시립박물관

이천 설봉공원 안에 위치한 박물관으로, 이천의 역사·도자문화 관련 전시를 만날 수 있습니다. 가족 단위 여행자에게 특히 추천되는 장소입니다.

🍴 이천 먹거리 추천

  • 이천 쌀밥 정식: 이천 특산물인 '임금님표 이천쌀'로 지은 밥과 푸짐한 반찬으로 한 끼 든든하게!
  • 도자기 카페 디저트: 예스파크 내 예술 카페에서 즐기는 핸드메이드 찻잔과 디저트
  • 설봉 순댓국: 지역민 추천, 깔끔한 국물 맛으로 해장용으로도 인기

🚗 교통 정보

자가용 이용 시

  • 서울 → 이천: 경부고속도로 → 중부고속도로 → 이천IC (약 1시간 10분)
  • 산수유마을 주소: 경기도 이천시 백사면 도립리 일대

대중교통 이용 시

  • 동서울터미널 → 이천: 시외버스 약 1시간 20분 소요
  • 이천터미널 → 예스파크: 시내버스 8~10번대 / 택시 약 15분
  • 이천터미널 → 산수유마을: 축제 기간 중 셔틀버스 또는 택시 이용

🏨 숙박 정보

추천 숙소 리스트

  • 이천 스파호텔: 온천과 함께 쉴 수 있는 스파 리조트 스타일 호텔
  • 예스파크 한옥스테이: 예술가와 함께하는 도자 체험 숙소, 가족 단위 추천
  • 이천시내
반응형

/** * @license * Copyright 2019 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import {Audit} from '../audit.js'; import * as i18n from '../../lib/i18n/i18n.js'; import {LargestContentfulPaint as ComputedLcp} from '../../computed/metrics/largest-contentful-paint.js'; const UIStrings = { /** Description of the Largest Contentful Paint (LCP) metric, which marks the time at which the largest text or image is painted by the browser. This is displayed within a tooltip when the user hovers on the metric name to see more. No character length limits. The last sentence starting with 'Learn' becomes link text to additional documentation. */ description: 'Largest Contentful Paint marks the time at which the largest text or image is ' + `painted. [Learn more about the Largest Contentful Paint metric](https://developer.chrome.com/docs/lighthouse/performance/lighthouse-largest-contentful-paint/)`, }; const str_ = i18n.createIcuMessageFn(import.meta.url, UIStrings); class LargestContentfulPaint extends Audit { /** * @return {LH.Audit.Meta} */ static get meta() { return { id: 'largest-contentful-paint', title: str_(i18n.UIStrings.largestContentfulPaintMetric), description: str_(UIStrings.description), scoreDisplayMode: Audit.SCORING_MODES.NUMERIC, supportedModes: ['navigation'], requiredArtifacts: ['HostUserAgent', 'Trace', 'DevtoolsLog', 'GatherContext', 'URL', 'SourceMaps'], }; } /** * @return {{mobile: {scoring: LH.Audit.ScoreOptions}, desktop: {scoring: LH.Audit.ScoreOptions}}} */ static get defaultOptions() { return { mobile: { // 25th and 13th percentiles HTTPArchive -> median and p10 points. // https://bigquery.cloud.google.com/table/httparchive:lighthouse.2020_02_01_mobile?pli=1 // https://web.dev/articles/lcp#what_is_a_good_lcp_score // see https://www.desmos.com/calculator/1etesp32kt scoring: { p10: 2500, median: 4000, }, }, desktop: { // 25th and 5th percentiles HTTPArchive -> median and p10 points. // SELECT // APPROX_QUANTILES(lcpValue, 100)[OFFSET(5)] AS p05_lcp, // APPROX_QUANTILES(lcpValue, 100)[OFFSET(25)] AS p25_lcp // FROM ( // SELECT CAST(JSON_EXTRACT_SCALAR(payload, "$['_chromeUserTiming.LargestContentfulPaint']") AS NUMERIC) AS lcpValue // FROM `httparchive.pages.2020_04_01_desktop` // ) scoring: { p10: 1200, median: 2400, }, }, }; } /** * @param {LH.Artifacts} artifacts * @param {LH.Audit.Context} context * @return {Promise} */ static async audit(artifacts, context) { const trace = artifacts.Trace; const devtoolsLog = artifacts.DevtoolsLog; const gatherContext = artifacts.GatherContext; const metricComputationData = { trace, devtoolsLog, gatherContext, settings: context.settings, URL: artifacts.URL, SourceMaps: artifacts.SourceMaps, simulator: null, }; const metricResult = await ComputedLcp.request(metricComputationData, context); const options = context.options[context.settings.formFactor]; return { score: Audit.computeLogNormalScore( options.scoring, metricResult.timing ), scoringOptions: options.scoring, numericValue: metricResult.timing, numericUnit: 'millisecond', displayValue: str_(i18n.UIStrings.seconds, {timeInMs: metricResult.timing}), }; } } export default LargestContentfulPaint; export {UIStrings};