49,013 properties
0 phones
0 emails
0 for sale
26 results · Page 1/1
All (49,013) Self-Storage (6,315) Mobile Home Parks (7,982) Car Washes (7,857) Laundromats (5,362) RV Parks (8,082) Marinas (3,500) Budget Motels (9,891) Mailbox / Pack & Ship (24)
Map:

Haybale Heights Campground and Resort

1B

Devils Lake, ND · 4355 87th Ave NE, Devils Lake, ND 58301, USA

RV Parks
Phone Email

Moonlit Bay Seasonal RV Site

1B

Warwick, ND · 9078 36th St NE, Warwick, ND 58381, USA

RV Parks
Phone Email

Lakeside Haven Campground

1B

Saint Michael, ND · Eastbay, St Michael, ND 58370, USA

RV Parks
Phone Email

Eastbay Campground

1B

Warwick, ND · 3892 E Bay Rd, Warwick, ND 58381, USA

RV Parks
Phone Email

Bayview Resort

1B

Devils Lake, ND · 7414 46th St NE, Devils Lake, ND 58301, USA

RV Parks
Phone Email

Country RV Park

1B

Minnewaukan, ND · 4398 62nd Ave NE, Minnewaukan, ND 58351, USA

RV Parks
Phone Email

Jamestown Campground

1B

Jamestown, ND · 3605 80th Ave SE, Jamestown, ND 58401, USA

RV Parks 48 Sites 💰 Valuation on file
Phone Email

Frontier Fort RV Park

1B

Jamestown, ND · 1838 3rd Ave SE, Jamestown, ND 58401, USA

RV Parks
Phone Email

Pelican Point Campground

1B

Jamestown, ND · 83rd Ave SE, Jamestown, ND 58401, USA

RV Parks
Phone Email

Tommy Turtle Park

1B

Bottineau, ND

RV Parks
Phone Email

Lewis & Clark RV Park

2

Hazen, ND

RV Parks 28 Sites 💰 Valuation on file
Phone

Devils Lake Community

2

Devils Lake, ND · 224 Pitcher Park Village, Devils Lake, ND 58301, USA

RV Parks
Phone Email

Black Tiger Bay Campground (Long-term Lot Rentals)

2

Saint Michael, ND · 3820 83rd Ave NE, St Michael, ND 58370, USA

RV Parks
Phone

Gackle RV Park

2

Gackle, ND

RV Parks 6 Sites 💰 Valuation on file
Phone

Kenner's Campground

2

Devils Lake, ND · 7651 51st St NE, Devils Lake, ND 58301, USA

RV Parks
Phone

The Meadows RV Park

2

Jamestown, ND · 31st St SE, Jamestown, ND 58401, USA

RV Parks
Phone

Bismarck KOA Journey

2

Bismarck, ND · 3720 Centennial Road

RV Parks 130 Sites 💰 Valuation on file
⚠️ Phone

Grand Forks Campground-Rv Park

2

Grand Forks, ND · 4796 S 42nd St, Grand Forks, ND 58201, USA

RV Parks
Phone

Valley trailer home of Grand Forks

2

Grand Forks, ND · 1823 N Washington St, Grand Forks, ND 58203, USA

RV Parks
Phone

APRV Park

2

Devils Lake, ND · 8665 US-2, Devils Lake, ND 58301, USA

RV Parks 100 Sites 💰 Valuation on file
Phone

Uncle Mike's Campground

2

Devils Lake, ND · 7690 57th St NE, Devils Lake, ND 58301, USA

RV Parks
Phone

Stone Ridge Developement & Campground

2

Tolna, ND · 3575 92nd Ave. NE, Tolna, ND 58380, USA

RV Parks
Phone

Enderlin RV Park

2

Enderlin, ND

RV Parks
Phone

South Shore RV park

2

Mercer County, ND

RV Parks
Phone

Six Mile Bay Campground

3

Devils Lake, ND · 4888 74th Ave NE, Devils Lake, ND 58301, USA

RV Parks
Phone Email

Smokey's Campground

3

Buchanan, ND · 2832 83rd Ave SE, Buchanan, ND 58420, USA

RV Parks
Phone Email
// Heat map modes // mapPoints format: [id, lat, lon, category, valuation, data_score, motivated_score] let heatLayer = null; let circleLayer = null; let currentMode = 'markers'; function clearOverlays() { if (heatLayer) { map.removeLayer(heatLayer); heatLayer = null; } if (circleLayer) { map.removeLayer(circleLayer); circleLayer = null; } } function setMapMode(mode) { currentMode = mode; clearOverlays(); // Update button states document.querySelectorAll('.map-mode-btn').forEach(b => b.classList.remove('active')); document.getElementById('btn-' + mode).classList.add('active'); if (mode === 'markers') { markers.addTo(map); return; } map.removeLayer(markers); if (mode === 'density') { // Pure density heatmap const pts = mapPoints.filter(p => p[1] && p[2]).map(p => [p[1], p[2], 1]); heatLayer = L.heatLayer(pts, {radius: 20, blur: 15, maxZoom: 10, max: 5, gradient: {0.2: '#ffffb2', 0.4: '#fd8d3c', 0.6: '#f03b20', 0.8: '#bd0026', 1: '#800026'} }).addTo(map); } else if (mode === 'valuation') { // Circle markers colored by valuation circleLayer = L.layerGroup(); const maxVal = Math.max(...mapPoints.map(p => p[4]).filter(v => v > 0)) || 1; mapPoints.filter(p => p[1] && p[2] && p[4] > 0).forEach(p => { const ratio = Math.min(p[4] / maxVal, 1); const r = Math.round(ratio * 255); const g = Math.round((1 - ratio) * 200); const color = `rgb(${r}, ${g}, 50)`; const radius = 4 + ratio * 10; L.circleMarker([p[1], p[2]], { radius: radius, fillColor: color, color: '#fff', weight: 1, fillOpacity: 0.7 }).bindPopup(`$${(p[4]/1000).toFixed(0)}K`).addTo(circleLayer); }); circleLayer.addTo(map); } else if (mode === 'quality') { // Circle markers colored by data_score circleLayer = L.layerGroup(); mapPoints.filter(p => p[1] && p[2]).forEach(p => { const score = p[5] || 0; const ratio = score / 10; // Green = high, Red = low const r = Math.round((1 - ratio) * 255); const g = Math.round(ratio * 200); const color = `rgb(${r}, ${g}, 50)`; L.circleMarker([p[1], p[2]], { radius: 3 + ratio * 5, fillColor: color, color: '#fff', weight: 0.5, fillOpacity: 0.6 }).addTo(circleLayer); }); circleLayer.addTo(map); } else if (mode === 'motivated') { // Heat map weighted by motivated score const pts = mapPoints.filter(p => p[1] && p[2] && p[6] > 0).map(p => [p[1], p[2], p[6] / 100]); heatLayer = L.heatLayer(pts, {radius: 25, blur: 20, maxZoom: 10, max: 1, gradient: {0.2: '#fff7bc', 0.4: '#fec44f', 0.6: '#fe9929', 0.8: '#d95f0e', 1: '#993404'} }).addTo(map); } }
🔒
Unlock owner contacts for 55,000+ properties
Get Access