{"id":2227,"date":"2025-08-21T22:31:25","date_gmt":"2025-08-21T22:31:25","guid":{"rendered":"https:\/\/visionnetworkcamp.org\/?page_id=2227"},"modified":"2025-08-21T22:31:26","modified_gmt":"2025-08-21T22:31:26","slug":"%ec%9b%8c%ec%8b%b1%ed%84%b4-%ec%9d%bc%ec%a0%95","status":"publish","type":"page","link":"https:\/\/visionnetworkcamp.org\/ko\/%ec%9b%8c%ec%8b%b1%ed%84%b4-%ec%9d%bc%ec%a0%95\/","title":{"rendered":"\uc6cc\uc2f1\ud134 \uc77c\uc815"},"content":{"rendered":"<!DOCTYPE html>\n<html lang=\"ko\">\n<head>\n  <meta charset=\"UTF-8\">\n  <title>DC \uc878\uc5c5\uc5ec\ud589 \uad00\uad11\uc9c0 \uc9c0\ub3c4<\/title>\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <!-- Leaflet CSS -->\n  <link rel=\"stylesheet\" href=\"https:\/\/unpkg.com\/leaflet@1.9.4\/dist\/leaflet.css\" \/>\n  <style>\n    body { margin:0; padding:0; }\n    #map { width: 100%; height: 100vh; }\n  <\/style>\n<\/head>\n<body>\n  <div id=\"map\"><\/div>\n\n  <!-- Leaflet JS -->\n  <script src=\"https:\/\/unpkg.com\/leaflet@1.9.4\/dist\/leaflet.js\"><\/script>\n  <script>\n    \/\/ \uc9c0\ub3c4 \ucd08\uae30\ud654 (DC \uc911\uc2ec \uc88c\ud45c)\n    const map = L.map('map').setView([38.8895, -77.0353], 14);\n\n    \/\/ OpenStreetMap \ud0c0\uc77c \ub808\uc774\uc5b4\n    L.tileLayer('https:\/\/{s}.tile.openstreetmap.org\/{z}\/{x}\/{y}.png', {\n      maxZoom: 19,\n      attribution: '&copy; <a href=\"https:\/\/www.openstreetmap.org\/copyright\">OpenStreetMap<\/a>'\n    }).addTo(map);\n\n    \/\/ \uad00\uad11\uc9c0 \ub370\uc774\ud130 (\uc21c\uc11c\ub300\ub85c)\n    const attractions = [\n      { name: \"U.S. Capitol\", coords: [38.8899, -77.0091], desc: \"\ubbf8\uad6d \uad6d\ud68c\uc758\uc0ac\ub2f9 \uc678\ubd80, \ub2e8\uccb4\uc0ac\uc9c4 \uba85\uc18c\" },\n      { name: \"National Museum of American History\", coords: [38.8913, -77.0300], desc: \"\uc5ed\uc0ac \ubc15\ubb3c\uad00, \ub9c1\ucee8 \ubaa8\uc790, \uc2a4\ud0c0 \uc2a4\ud3ad\uae00\ub4dc \ubc30\ub108\" },\n      { name: \"National Air and Space Museum\", coords: [38.8881, -77.0199], desc: \"\ud56d\uacf5\uc6b0\uc8fc \ubc15\ubb3c\uad00, \uccb4\ud5d8\ud615 \uc804\uc2dc\" },\n      { name: \"National Gallery of Art Sculpture Garden\", coords: [38.8910, -77.0219], desc: \"\uc870\uac01 \uc815\uc6d0, \uc57c\uc678 \uc0b0\ucc45\uacfc \ubb38\ud654\uccb4\ud5d8\" },\n      { name: \"Washington Monument\", coords: [38.8895, -77.0353], desc: \"National Mall \uc911\uc559, \uc0c1\uc9d5\uc801 \uae30\ub150\ubb3c\" },\n      { name: \"World War II Memorial\", coords: [38.8893, -77.0405], desc: \"2\ucc28 \uc138\uacc4\ub300\uc804 \uae30\ub150\ube44, \uc6c5\uc7a5\ud55c \uae30\ub150\uc0ac\uc9c4 \uc7a5\uc18c\" },\n      { name: \"Lincoln Memorial\", coords: [38.8893, -77.0502], desc: \"\ub9c1\ucee8 \uae30\ub150\uad00, I Have a Dream \uc5f0\uc124 \uc7a5\uc18c\" },\n      { name: \"Martin Luther King Jr. Memorial\", coords: [38.8860, -77.0475], desc: \"\uc778\uad8c \uc6b4\ub3d9 \uc0c1\uc9d5, \uad50\uc721\uc801 \ud3ec\uc778\ud2b8\" },\n      { name: \"Jefferson Memorial\", coords: [38.8814, -77.0365], desc: \"\uc81c\ud37c\uc2a8 \uae30\ub150\uad00, \ud638\uc218 \uc804\ub9dd\uacfc \uc0ac\uc9c4 \uba85\uc18c\" },\n      { name: \"Smithsonian National Museum of Natural History\", coords: [38.8913, -77.0261], desc: \"\uc790\uc5f0\uc0ac \ubc15\ubb3c\uad00, \uacf5\ub8e1 \ud654\uc11d\uacfc \ubcf4\uc11d\" }\n    ];\n\n    \/\/ \ub9c8\ucee4 \ucd94\uac00 \ubc0f \ud31d\uc5c5\n    const latlngs = [];\n    attractions.forEach(attraction => {\n      const marker = L.marker(attraction.coords).addTo(map);\n      marker.bindPopup(`<b>${attraction.name}<\/b><br>${attraction.desc}`);\n      latlngs.push(attraction.coords);\n    });\n\n    \/\/ \uad00\uad11\uc9c0 \uc21c\uc11c\ub300\ub85c \ub77c\uc778 \uc5f0\uacb0\n    const polyline = L.polyline(latlngs, {color: 'blue'}).addTo(map);\n\n    \/\/ \uc9c0\ub3c4 \ubc94\uc704 \uc790\ub3d9 \ub9de\ucda4\n    map.fitBounds(polyline.getBounds());\n  <\/script>\n<\/body>\n<\/html>","protected":false},"excerpt":{"rendered":"<p>DC \uc878\uc5c5\uc5ec\ud589 \uad00\uad11\uc9c0 \uc9c0\ub3c4<\/p>","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_price":"","_stock":"","_tribe_ticket_header":"","_tribe_default_ticket_provider":"","_tribe_ticket_capacity":"0","_ticket_start_date":"","_ticket_end_date":"","_tribe_ticket_show_description":"","_tribe_ticket_show_not_going":false,"_tribe_ticket_use_global_stock":"","_tribe_ticket_global_stock_level":"","_global_stock_mode":"","_global_stock_cap":"","_tribe_rsvp_for_event":"","_tribe_ticket_going_count":"","_tribe_ticket_not_going_count":"","_tribe_tickets_list":"[]","_tribe_ticket_has_attendee_info_fields":false,"_EventAllDay":false,"_EventTimezone":"","_EventStartDate":"","_EventEndDate":"","_EventStartDateUTC":"","_EventEndDateUTC":"","_EventShowMap":false,"_EventShowMapLink":false,"_EventURL":"","_EventCost":"","_EventCostDescription":"","_EventCurrencySymbol":"","_EventCurrencyCode":"","_EventCurrencyPosition":"","_EventDateTimeSeparator":"","_EventTimeRangeSeparator":"","_EventOrganizerID":[],"_EventVenueID":[],"_OrganizerEmail":"","_OrganizerPhone":"","_OrganizerWebsite":"","_VenueAddress":"","_VenueCity":"","_VenueCountry":"","_VenueProvince":"","_VenueState":"","_VenueZip":"","_VenuePhone":"","_VenueURL":"","_VenueStateProvince":"","_VenueLat":"","_VenueLng":"","_VenueShowMap":false,"_VenueShowMapLink":false,"_kadence_starter_templates_imported_post":false,"_kad_post_transparent":"","_kad_post_title":"","_kad_post_layout":"","_kad_post_sidebar_id":"","_kad_post_content_style":"","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"footnotes":"","_tec_slr_enabled":"","_tec_slr_layout":""},"class_list":["post-2227","page","type-page","status-publish","hentry"],"ticketed":false,"_links":{"self":[{"href":"https:\/\/visionnetworkcamp.org\/ko\/wp-json\/wp\/v2\/pages\/2227","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/visionnetworkcamp.org\/ko\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/visionnetworkcamp.org\/ko\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/visionnetworkcamp.org\/ko\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/visionnetworkcamp.org\/ko\/wp-json\/wp\/v2\/comments?post=2227"}],"version-history":[{"count":0,"href":"https:\/\/visionnetworkcamp.org\/ko\/wp-json\/wp\/v2\/pages\/2227\/revisions"}],"wp:attachment":[{"href":"https:\/\/visionnetworkcamp.org\/ko\/wp-json\/wp\/v2\/media?parent=2227"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}