49,013 properties
0 phones
0 emails
0 for sale
8,082 results Β· Page 124/162
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:

Lakeside Marina Campground

2

Lakeside, IA

RV Parks 36 Sites πŸ’° Valuation on file
Phone

Lakeshore RV Park

2 🌐 Multi-Vertical

Florence, OR

RV Parks
Phone

Oasis on the Snake

2

Malheur County, OR

RV Parks
Phone

The Hamptons RV Park

2

Hampton, TN

RV Parks
Phone

Pines RV Park & Storage

2

Cascade, ID

RV Parks
Phone

The Hideaway RV Park

2

Neah Bay, WA

RV Parks
Phone

Lake Lucy RV Park

2

Washington Township, PA

RV Parks
Phone

Wishing Well RV Resort

2

Fort Atkinson, WI

RV Parks 600 Sites πŸ’° Valuation on file
Phone Email

Pomona RV Park

2

Galloway, NJ

RV Parks
Phone

Indian Creek Campground

2

Deer Lodge, ID

RV Parks
Phone

Hidden Valley R.V. Park

2

Derry, NH

RV Parks
Phone

Hitchβ€˜nβ€˜Post RV Park

2

Kanab, UT

RV Parks 16 Sites πŸ’° Valuation on file
Phone Email

Entrance "P" Campground

2

Concord, NC

RV Parks
Phone

Sunny Acres RV Park

2

Las Cruces, NM

RV Parks 92 Sites πŸ’° Valuation on file
Phone

Boot Hill RV Resort

2

Alamogordo, NM

RV Parks 56 Sites πŸ’° Valuation on file
Phone Email

Shady Grove RV Park

2

Alamogordo, NM

RV Parks 20 Sites πŸ’° Valuation on file
Phone Email

Hills Rez Park Campground

2

Hills, MN

RV Parks
Phone

Travel Centers of America - Napoleon

2

Napoleon, OH

RV Parks
Phone

Petro Truck Stops - Vinton

2

Canutillo, NM

RV Parks
Phone

DraftKings at Casino Queen RV Park

2

East St. Louis, IL

RV Parks 67 Sites πŸ’° Valuation on file
⚠️ Phone

Mill Casino RV Park

2

North Bend, OR

RV Parks
⚠️ Phone

Lucky Loggers RV Park

2

Coos Bay, OR

RV Parks
Phone Email

Spanish Trail RV Park

2

Moab, UT

RV Parks
Phone

Driftwood Resort & Marina

2

Hill Township, MI

RV Parks
Phone

Bar Harbor RV Park & Marina

2

Harford County, MD

RV Parks 93 Sites πŸ’° Valuation on file
Phone

Tee Pee Campgrounds

2

Mackinaw Township, MI

RV Parks
Phone

RV Express Campground

2

Marshfield, MO

RV Parks
Phone

Millsite RV Park

2

Myrtle Creek, OR

RV Parks
Phone Email

Shorewood RV Park

2

Rockaway Beach, WA

RV Parks
Phone Email

Fogarty Creek RV Park

2

Depoe Bay, OR

RV Parks
Phone Email

Bogue Sound RV Park

2

Cedar Point, NC

RV Parks
Phone Email

Marine Park RV and Tent Campground

2

Cascade Locks, WA

RV Parks
Phone

Crystal Springs RV Resort

2

Ellendale, MN

RV Parks
Phone

Lakeshore RV Park

2

Chelan, WA

RV Parks 165 Sites πŸ’° Valuation on file
Phone

Old Campground

2

Exira, IA

RV Parks
Phone

Beacon Charters & RV Park

2

Ilwaco, WA

RV Parks
Phone Email

Wallicut River RV & Campground Resort

2

Ilwaco, WA

RV Parks
Phone Email

Sand Castle RV Park

2

Long Beach, WA

RV Parks
Phone

Fairmont RV Resort

2

Anaconda, ID

RV Parks
Phone

Bear Den RV Park Area

2

Grangeville, ID

RV Parks
Phone

Crook County RV Park

2

Prineville, OR

RV Parks
Phone

Silver Cove RV Resort

2

Silver Lake, WA

RV Parks
Phone Email

Evergreen Fairgrounds RV1

2

Monroe, WA

RV Parks
Phone

Shady Acres Campground

2

Upper Mount Bethel Township, NJ

RV Parks
Phone Email

Litten Eden Camp RV Sites

2

Onekama Township, MI

RV Parks
Phone

China Town

2

Wells, NV

RV Parks
Phone

Eagle Cliff Campground & Lodging

2

Lanesboro, WI

RV Parks
Phone

Lakeside RV Park

2 🌐 Multi-Vertical

Christmas Valley, OR

RV Parks
Phone

Emmett RV Park

2

Emmett, OR

RV Parks
Phone

Columbus Park

2

Olympia, WA

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