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

Morro Dunes Travel Trailer Park Resort CG

3

CA

RV Parks
Phone

Mountain River Adventures Campground

3

CA

RV Parks
Phone

Nifty RV & Mobile Home Park

3

Alturas, CA · Thomason Lane

RV Parks

North Shore Campground

3

San Bernardino County, CA

RV Parks
Phone

Oak Dell RV Park

3

CA

RV Parks
Phone

Oakzanita RV Resort Campground

3

CA

RV Parks
Phone

Oceanside RV Resort

3

CA

RV Parks
Phone

Off The Grid RV Ranch

3

Lake Hughes, CA

RV Parks 107 Sites 💰 Valuation on file
Phone

Rancho Los Coches RV Park

3

Lakeside, CA

RV Parks 134 Sites 💰 Valuation on file
Phone

Redwood Meadows RV Park

3

Crescent City, CA · US Highway 199

RV Parks

Redwood Resort RV Park Campground

3

CA

RV Parks
Phone

River Ranch RV Park

3

CA

RV Parks
Phone

The Parkway RV Resort CG

3

CA

RV Parks
Phone

The SPrings At Borrego

3

San Diego County, CA

RV Parks
Phone

Tramview MHP

3

CA

RV Parks
Phone

Twenty Nine Palms Resort

3

CA

RV Parks
Phone

Ventura Oaks

3

Thousand Oaks, CA

RV Parks

The Vintages Trailer Resort

3

Dayton, OR · 16205 SE Kreder Road

RV Parks

Beachfront RV Park

3

Brookings, OR · 16035 Boat Basin Road

RV Parks

Charleston Marina RV Park

3

Charleston, OR · 63402 Kingfisher Road

RV Parks

Gig Harbor RV Resort

3

Gig Harbor, WA · 9515 Burnham Drive Northwest

RV Parks
Phone Email

Forestburg Scout Reservation

3 🔥 MOTIVATED FOR SALE

Forestburgh, NY · 1945 State Route 42

RV Parks

Quail Hill Scout Reservation

3

Manalapan, NJ · 56 La Valley Dr.

RV Parks

Westport Lighthouse Campground and RV Park:

3

Westport, WA · 1010 West Ocean Avenue

RV Parks
Phone Email

David Betta’s sleeping point

3

New York, NY · 50 W 17th St, New York, NY 10011, USA

RV Parks

Bright Auto Spares

3

New York, NY · 123 5th Ave, New York, NY 10160, USA

RV Parks

Dwyer Junction Rest Area

3

Wheatland, WY · US-26, Wheatland, WY 82201, USA

RV Parks

Blackwell Park

3

South Charleston, WV · 4487 Blackwell St, South Charleston, WV 25309, USA

RV Parks

City Townhouse Living Portland

3

Portland, ME · 75 Carleton St, Portland, ME 04102, USA

RV Parks

North Avenue Co-op

3

Burlington, VT · 4 Avenue A, Burlington, VT 05408, USA

RV Parks

Boat Landing Campground

3

Madison Lake, MN · Madison Lake, MN 56063, USA

RV Parks

KOA

3

Salt Lake City, UT · 142 N 1320 W, Salt Lake City, UT 84116, USA

RV Parks

Coldwater Camp & Cabins

3

Anniston, AL · 399 Monsanto Rd, Anniston, AL 36201, USA

RV Parks

Crossroads RV Park

3

Wynnewood, OK · 500 E Allen St, Wynnewood, OK 73098, USA

RV Parks

Bill and Shawn's RV Park

3

Milton, WV · 315 Summers Addition, Milton, WV 25541, USA

RV Parks

49Er RV Ranch

3

CA

RV Parks
Phone

Annetts Mono Village

3

Bridgeport, CA

RV Parks 300 Sites 💰 Valuation on file
Phone

Base Camp At Palomar

3

CA

RV Parks

Beach RV Park

3

Pismo Beach, CA

RV Parks
Phone

Bear River Lake Resort

3

CA

RV Parks
Phone

Bella Vista By The Sea

3

Cayucos, CA

RV Parks 12 Sites 💰 Valuation on file
Phone

Big Sur Campground And Cabins

3

CA

RV Parks
Phone

Bowman Hilton RV Park

3

CA

RV Parks
Phone

Cali Lake RV Resort

3

Santa Clarita, CA

RV Parks 25 Sites 💰 Valuation on file
Phone

Camp Trinidad

3

CA

RV Parks
Phone

Champagne Lakes RV Resort

3

Escondido, CA

RV Parks 74 Sites 💰 Valuation on file
Phone

Clear Lake Campground

3

Clearlake, CA

RV Parks 40 Sites 💰 Valuation on file
Phone

Coachland RV Park

3

CA

RV Parks
Phone

Cotillion Gardens RV Park

3

Felton, CA

RV Parks 80 Sites 💰 Valuation on file
Phone

Crane Lakeside Park Resort

3

CA

RV Parks
Phone
← Prev 146 / 162 Next →
// 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