South Dakota GFP Reservations - (2024)

Loading Please Wait...

Tablist help: use the tablist controls to toggle the visibility of their respective panels (below the controls).

- Available - Unavailable - Not Available

Clay County Park

Main Campground

South Dakota GFP Reservations - (1)

Click on the “Aerial View” button to see satellite images and tour the campground using street view. Once you have clicked the “Aerial View” button, drag and drop the yellow Pegman (bottom right corner) to access virtual tours / street views of sites & campgrounds.

AERIAL VIEW

RETURN TO AERIAL VIEW

+

-

South Dakota GFP Reservations - (4)

South Dakota GFP Reservations - (5)

' + '

'); icons = $(tabSvgID + legendBtnID + ' ' + IconsLayer).children(); icons.each(function (i, val) { legendPopupObj.append('' + '

' + '' + 'South Dakota GFP Reservations - (6)' + '

' + $(val).data('iconname') + '

' + '

'); }); $('#all').on('change', function () { if ($(this).prop('checked') === false) { $('.switch input').prop('checked', false); icons.each(function (i, val) { $(tabSvgID + legendBtnID + ' ' + IconsLayer + ' #' + val.id + '').fadeOut(); }); } else { $('.switch input').prop('checked', true); icons.each(function (i, val) { $(tabSvgID + legendBtnID + ' ' + IconsLayer + ' #' + val.id + '').fadeIn(); }); } }); $('.switch input').on('change', function () { var n = $(this).attr('id'); if ($(this).prop('checked') === false) { $(tabSvgID + legendBtnID + ' ' + IconsLayer + ' #' + n + '').fadeOut(); } else { $(tabSvgID + legendBtnID + ' ' + IconsLayer + ' #' + n + '').fadeIn(); } }); } }); legendClosePopupObj.on('click touchstart', function () { legendPopupObj.css('animation', 'legend-out 0.5s ease-in-out 1').delay(140).fadeOut(); }); var noPOI = [ { featureType: "poi", elementType: "labels", stylers: [ { visibility: "off" } ] } ]; //Google Map API function initMap() { map = new google.maps.Map(document.getElementById('map'), { center: { lat: gmOptions[tabID].lat, lng: gmOptions[tabID].lng }, mapTypeControl: true, mapTypeControlOptions: { style: google.maps.MapTypeControlStyle.HORIZONTAL_BAR, position: google.maps.ControlPosition.TOP_RIGHT }, mapTypeId: 'hybrid', fullscreenControl: true, fullscreenControlOptions: { position: google.maps.ControlPosition.RIGHT_TOP }, rotateControl: false, tilt: 0, zoom: gmOptions[tabID].zoom, styles: noPOI }); map.getStreetView() .setOptions({ addressControlOptions: { position: google.maps.ControlPosition.BOTTOM_LEFT }, zoomControlOptions: { position: google.maps.ControlPosition.TOP_RIGHT } }); map.addListener('click', function () { infowindow.close(); }); if (defaultToAerialView) { SwitchView(true); } svgMapZoom(1); markerCluster = new MarkerClusterer(map, markers, { gridSize: 60, maxZoom: 15, zoomOnClick: true, averageCenter: true, minimumClusterSize: 2, styles: [{ textColor: 'white', url: 'https://s3.amazonaws.com/exploreparkspublic/StaticContent/maps/img/pin1.png', height: 50, width: 33, iconAnchor: [0, 50] }] }); // Sets the map on all markers in the array. function setMapOnAll(map) { for (var i = 0; i < markers.length; i++) { markers[i].setMap(map); } for (var c = 0; c < iconMarkers.length; c++) { iconMarkers[c].setMap(map); } } map.getStreetView().addListener('position_changed', function () { $('.hide-info-back').removeClass('hidden'); var CurrentPos = map.getStreetView().getPosition(); for (var i = 0; i < markers.length; i++) { var MarkerPos = markers[i].getPosition(); var distance = google.maps.geometry.spherical.computeDistanceBetween(CurrentPos, MarkerPos); if (distance > dist || Number.isNaN(distance)) { markers[i].setMap(null); } else { markers[i].setMap(map); } } for (var i = 0; i < iconMarkers.length; i++) { var IconPos = iconMarkers[i].getPosition(); var IconDistance = google.maps.geometry.spherical.computeDistanceBetween(CurrentPos, IconPos); if (IconDistance > dist) { iconMarkers[i].setMap(null); } else { iconMarkers[i].setMap(map); } } }); google.maps.event.addListener(map.getStreetView(), 'visible_changed', function () { var visible = this.getVisible(); if (visible === false) { setMapOnAll(map); } }); for (var a = 0; a < sites.length; a++) { addSite(sites[a].UnitID, sites[a].Latitude, sites[a].Longitude, sites[a].Availability, sites[a].MapCodeLookupValue, sites[a].LoopIndex, sites[a].UnitCategoryType, sites[a].UnitType, sites[a].IsTimeSlot, sites[a].UnitShortDesc, sites[a].IsActive, sites[a].ReservationTypeID); } for (var i = 0; i < iconsPOI.length; i++) { addIcon(iconsPOI[i].Latitude, iconsPOI[i].Longitude, iconsPOI[i].UnitDesc); } for (var i = 0; i < mainIcons.length; i++) { addMainIcon(mainIcons[i].lat, mainIcons[i].lng, mainIcons[i].text); } infowindow = new google.maps.InfoWindow({ maxWidth: 267, }); google.maps.event.addListener(map, 'zoom_changed', function () { var zoom = map.getZoom(); for (i = 0; i < iconMarkers.length; i++) { iconMarkers[i].setVisible(zoom > 17); //13 } }); function addIcon(lat, lng, text) { var icon_url_var = ''; var info_text; function icon_url() { if (text == 'bathhouse') { icon_url_var = 'img/bathhouse.png'; info_text = text; } else if (text == 'parking') { icon_url_var = 'img/parking.png'; info_text = text; } else if (text == 'dump') { icon_url_var = 'img/dump.png'; info_text = 'dump station'; } else if (text == 'water') { icon_url_var = 'img/Water.png'; info_text = 'water spigot'; } else if (text == 'playground') { icon_url_var = 'img/playground.png'; info_text = 'playground'; } else if (text == 'shelter') { icon_url_var = 'img/shelter.png'; info_text = 'Shelter'; } else if (text == 'restroom') { icon_url_var = 'img/restroom.png'; info_text = 'restroom'; } else if (text == 'camp office') { icon_url_var = 'img/office.png'; info_text = 'camp office'; } else if (text == 'boat') { icon_url_var = 'img/boat.png'; info_text = 'boat ramp'; } else if (text == 'laundry') { icon_url_var = 'img/laundry.png'; info_text = 'laundry'; } else if (text == 'fish') { icon_url_var = 'img/fish.png'; info_text = 'fish'; } else if (text == 'waterfall') { icon_url_var = 'img/waterfall.png'; info_text = 'waterfall'; } else if (text == 'ski') { icon_url_var = 'img/ski.png'; info_text = 'ski trail'; } else if (text == 'climbing') { icon_url_var = 'img/climbing.png'; info_text = 'climbing area'; } else if (text == 'office') { icon_url_var = 'img/office.png'; info_text = 'office'; } else if (text == 'archery') { icon_url_var = 'img/archery.png'; info_text = 'archery range'; } else if (text == 'shooting') { icon_url_var = 'img/shooting.png'; info_text = 'shooting range'; } else if (text == 'discovery') { icon_url_var = 'img/discovery.png'; info_text = 'discovery building'; } else if (text == 'hotel') { icon_url_var = 'img/hotel.png'; info_text = 'lodge'; } else if (text == 'canoe') { icon_url_var = 'img/canoe.png'; info_text = 'canoe launch'; } else if (text == 'check') { icon_url_var = 'img/check.png'; info_text = 'check statione'; } else if (text == 'info') { icon_url_var = 'img/info.png'; info_text = 'information kiosk'; } else if (text == 'leather') { icon_url_var = 'img/leather.png'; info_text = 'skinning rack'; } else if (text == 'binoculars') { icon_url_var = 'img/binoculars.png'; info_text = 'wildlife opening'; } else if (text == 'dog') { icon_url_var = 'img/dog.png'; info_text = 'dog training area'; } else if (text == 'dove') { icon_url_var = 'img/dove.png'; info_text = 'dove field'; } else if (text == 'golf') { icon_url_var = 'img/golf.png'; info_text = 'golf course'; } else if (text == 'dock') { icon_url_var = 'img/dock.png'; info_text = 'pier'; } else if (text == 'fishstation') { icon_url_var = 'img/fishstation.png'; info_text = 'fish cleaning station'; } else if (text == 'toilet') { icon_url_var = 'img/toilet.png'; info_text = 'vault toilet'; } else if (text == 'picnic') { icon_url_var = 'img/picnic.png'; info_text = 'picnic area'; } else if (text == 'amphitheater') { icon_url_var = 'img/amphitheater.png'; info_text = 'amphitheater'; } else if (text == 'swim') { icon_url_var = 'img/swim.png'; info_text = 'swim beach'; } else if (text == 'group') { icon_url_var = 'img/groupcamp.png'; info_text = 'group camping area'; } else if (text == 'mobile') { icon_url_var = 'img/mobile.png'; info_text = 'telephone'; } else { icon_url_var = 'img/handicap2.png'; info_text = text; } } icon_url(); var iconMarker = new google.maps.Marker({ map: map, position: { lat: parseFloat(lat), lng: parseFloat(lng) }, icon: { url: icon_url_var, scaledSize: { width: 30, height: 30 } } }); iconMarkers.push(iconMarker); iconMarker.addListener('click', function () { infowindow.close(); infowindow.setContent(info_text); infowindow.open(map, iconMarker); }); } function addMainIcon(lat, lng, text) { var icon_url_var = ''; var info_text; function icon_url() { if (text == 'Youth Camp') { icon_url_var = 'https://s3.amazonaws.com/exploreparkspublic/StaticContent/maps/img/camp.png'; info_text = text; } else if (text == 'fish') { icon_url_var = 'img/fish.png'; info_text = 'fish'; } else { icon_url_var = 'https://s3.amazonaws.com/exploreparkspublic/StaticContent/maps/img/canoe.png'; info_text = text; } } icon_url(); var iconMainMarker = new google.maps.Marker({ map: map, position: { lat: parseFloat(lat), lng: parseFloat(lng) }, icon: { url: icon_url_var, scaledSize: { width: 30, height: 30 } } }); iconMarkers.push(iconMainMarker); iconMainMarker.addListener('click', function () { infowindow.close(); infowindow.setContent(info_text); infowindow.open(map, iconMainMarker); }); } if (params['mode'] && params['mode'] === 'd') { $('body').append('

' + '

LAT:

' + '

LNG:

' + '

ZOOM:

' + '

'); map.addListener('drag', function () { mapCenter = map.getCenter(); mapZoom = map.getZoom(); $('#lat-span').text(mapCenter.lat()); $('#lng-span').text(mapCenter.lng()); $('#zoom-span').text(mapZoom); }); map.addListener('zoom_changed', function () { mapCenter = map.getCenter(); mapZoom = map.getZoom(); $('#lat-span').text(mapCenter.lat()); $('#lng-span').text(mapCenter.lng()); $('#zoom-span').text(mapZoom); }); } }

"; var actionButtonsBuilder = "

"; actionButtonsBuilder += ""; actionButtonsBuilder += "

"; SiteContent += actionButtonsBuilder; SiteContent += "

"; } else if (IsTimeSlot === true) { if (sitesHashMap[key]) { var thisSite = sitesHashMap[key]; SiteContent += "

" + thisSite.UnitDesc + "

"; SiteContent += "

"; SiteContent += "

After selecting your desired date for the reservation, click the button below to select an available time

"; SiteContent += "

"; if (amenityHTML != null) { SiteContent += amenityHTML; } var actionButtonsBuilder = "

"; if (thisSite.ReferralURL != null) { actionButtonsBuilder += ""; } else if (thisSite.ReservableOnline === false && thisSite.isCallCenterHandled === true) { actionButtonsBuilder += ""; } else if (thisSite.ReservableOnline === false && thisSite.isCallCenterHandled === false) { actionButtonsBuilder += ""; } else if (thisSite.Availability == 'available') { actionButtonsBuilder += ""; } else if (thisSite.Availability == 'out of range') { actionButtonsBuilder += ""; } else { actionButtonsBuilder += ""; } actionButtonsBuilder += "

"; SiteContent += actionButtonsBuilder; SiteContent += "

First Come, First Serve"; //TODO: Determine how we can get fc/fs units of the sitesHashMap } else { if (sitesHashMap[key]) { var thisSite = sitesHashMap[key]; $('#siteModalLabel').html(thisSite.UnitDesc); var image = ""; SiteContent += "

" + thisSite.UnitDesc; SiteContent += " "; SiteContent += ""; else SiteContent += "class='fa fa-heart-o'>"; SiteContent += "

"; if (thisSite.ImageURL != null) { image = thisSite.ImageURL; SiteContent += ""; SiteContent += ""; SiteContent += "Click image to expand"; SiteContent += "
"; } SiteContent += "Type: " + thisSite.UnitType + "
"; if (thisSite.UnitControlPrice != null) { if (thisSite.UnitControlPrice < thisSite.UnitBasePrice) { SiteContent += " Special Price: $" + thisSite.UnitControlPrice + "
"; } else { SiteContent += "Price: $" + thisSite.UnitControlPrice + "
"; } } else { SiteContent += "Price: $" + thisSite.UnitBasePrice + "
"; } if (amenityHTML != null) { SiteContent += amenityHTML; } var IsAccessible = ((thisSite.IsAccessibleSite) ? 'Yes' : 'No'); //SiteContent += "ADA / Accessibility Features: " + IsAccessible + "
"; if (thisSite.MaxEquipLength == 0) { SiteContent += "Site Length: N/A

"; } else { var maxEquipLengthDesc = thisSite.MaxEquipLengthDesc; SiteContent += maxEquipLengthDesc === null || maxEquipLengthDesc.match(/^ *$/) !== null ? "Site Length: " + thisSite.MaxEquipLength + "'

" : "Site Length: " + thisSite.MaxEquipLength + "' " + thisSite.MaxEquipLengthDesc + "

"; } if (thisSite.MaxWidthFt == 0) { SiteContent += "Site Width: N/A

"; } else { SiteContent += "Site Width: " + thisSite.MaxWidthFt + "'

" } var actionButtonsBuilder = "

"; if (thisSite.ReferralURL != null) { actionButtonsBuilder += ""; } else if (thisSite.ReservableOnline === false && thisSite.isCallCenterHandled === false) { actionButtonsBuilder += ""; } else if (thisSite.Availability == 'available') { actionButtonsBuilder += GetMapReserveButtons(thisSite); } else if (thisSite.Availability == 'out of range') { actionButtonsBuilder += ""; } else { actionButtonsBuilder += ""; } actionButtonsBuilder += "

"; SiteContent += actionButtonsBuilder; SiteContent += "
South Dakota GFP Reservations - (2024)

References

Top Articles
My Les Paul Forum
What Was D-Day Weegy
Pr 127 Seat Map
Wow Genesis Mote Farm
Lux Nails Columbia Mo
Big 12 Officiating Crew Assignments 2022
Saxies Lake Worth
16Th Or 16Nd
Florida death row inmates promised more humane treatment after lawsuit settlement
5 Best Vanilla Vodka co*cktails
Real Estate Transfers Erie Pa
Family Guy Wiki Peter
‘An affront to the memories of British sailors’: the lies that sank Hollywood’s sub thriller U-571
Chris Evert Twitter
Publix In San Antonio Texas
Browse | Obituaries | Enid News and Eagle
Samsung Galaxy M42 5G - Specifications
Unblocked WTF, UBG9 Unblocked Games, UBGWTF Games, Unblocked WTF, WTF Games Unblocked
FREE Printable Pets Animal Playdough Mats
Kentucky Lottery Scratch Offs Remaining
Dimbleby Funeral Home
Metv Schedule Now
Anon Rotten Tomatoes
Isaimini 2023: Tamil Movies Download HD Hollywood
Birkenstock Footprints Lawrence Ks
Food Universe Near Me Circular
Arkansas Craigslist Cars For Sale By Owner
Palindromic Sony Console For Short Crossword Clue 6 Letters: Composer Of
Jeff Danker Net Worth
Kaelis Dahlias
Etfcu Routing Number
No Cable Schedule
16 Things to Do in Los Alamos (+ Tips For Your Visit)
Parishes Online Bulletins
인민 을 위해 복무하라 다시보기
Lehigh Wheelmen Meetup
Mikayla Campinos: The Rising Star Of EromeCom
The 10 Craigslist Guys You’ll Live With in DC
7UP artikelen kopen? Alle artikelen online
631 West Skyline Parkway, Duluth, MN 55806 | Compass
Miawaiifu
Bolly4u Movies Site - Download Your Favorite Bollywood Movies Here
No title - PDF Free Download
Entegra Forum
Kutty Com Movies
Babyboo Fashion vouchers, Babyboo Fashion promo codes, Babyboo Fashion discount codes, coupons, deals, offers
Margie's Money Saver Hey Dudes
Ati Recommended Cut Scores 2023
Jasper William Oliver Cable Alexander
Desi Cinemas.com
Dom Perignon Sam's Club
Xochavella Leak
Latest Posts
Article information

Author: Dan Stracke

Last Updated:

Views: 6147

Rating: 4.2 / 5 (43 voted)

Reviews: 90% of readers found this page helpful

Author information

Name: Dan Stracke

Birthday: 1992-08-25

Address: 2253 Brown Springs, East Alla, OH 38634-0309

Phone: +398735162064

Job: Investor Government Associate

Hobby: Shopping, LARPing, Scrapbooking, Surfing, Slacklining, Dance, Glassblowing

Introduction: My name is Dan Stracke, I am a homely, gleaming, glamorous, inquisitive, homely, gorgeous, light person who loves writing and wants to share my knowledge and understanding with you.