49,013 properties
0 phones
0 emails
0 for sale
476 results · Page 6/10
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:

The Willows Mobile Home Park

2

Lompoc, CA · 1317 North V Street

RV Parks
Phone

Trailer Haven Mobile Home & RV Park

2

San Leandro, CA · 2399 E 14th St, San Leandro, CA 94577, USA

RV Parks
Phone

Marina Dunes RV Park

3

Monterey County, CA

RV Parks 65 Sites 💰 Valuation on file

Seaview RV Park

2

Crescent City, CA

RV Parks
Phone

Pilot Knob Long Term Visitor Area

3

CA · Sidewinder Road

RV Parks

Rivers Sands RV Resort

3

CA · 49960 Ehrenberg Poston Hwy

RV Parks

Needles KOA

3

Needles, CA · 5400 National Old Trails Road

RV Parks

Tecopa Palms Therapeutic Hot Springs Resort

3

Tecopa, CA · 155 Tecopa Hot Springs Road

RV Parks
Phone Email

Duck Island

3

CA · 16814 CA-160

RV Parks
Phone

Angels Camp RV Resort

3

Calaveras County, CA

RV Parks
Phone

Auburn Gold Country RV Park

3

Placer County, CA

RV Parks 66 Sites 💰 Valuation on file
Phone

Avila Pismo RV Park And Campground

3

CA

RV Parks
Phone

Best In The West Resort

3

CA

RV Parks
Phone

Black Oak The RV Park

3

CA

RV Parks
Phone

Bridgeport Reservoir RV Park Marina

3

CA

RV Parks
Phone

Californian RV Resort

3

CA

RV Parks
Phone

Camp Kernville

3

Kern County, CA

RV Parks
Phone

Camp Russian River

3

CA

RV Parks
Phone

Campland On The Bay

3

San Diego, CA

RV Parks 582 Sites 💰 Valuation on file
Phone

Canyon Creek Resort

3

Yolo County, CA

RV Parks 114 Sites 💰 Valuation on file
Phone

Capitol West RV MH Park

3

West Sacramento, CA

RV Parks 89 Sites 💰 Valuation on file
Phone

Casa De Fruta Orchard Resort

3

CA

RV Parks
Phone

Casini Ranch Family CG

3

CA

RV Parks
Phone

Castaic Lake RV Park

3

Castaic, CA

RV Parks 103 Sites 💰 Valuation on file
Phone

Cathedral Palms RV Resort

3

CA

RV Parks
Phone

Cava Robles RV Resort

3

Paso Robles, CA · Golden Hill Road

RV Parks
Phone

Coachella Lakes Resort

3

CA

RV Parks
Phone

Cypress Morro Bay RV MH Park

3

CA

RV Parks
Phone

Deer Creek RV Park

3

El Dorado County, CA

RV Parks
Phone

Delta Marina RV Resort

3

CA

RV Parks
Phone

El Capitan Canyon

3

Riverside, CA

RV Parks
Phone

Fox SParrow RV Resort And Campground

3

CA

RV Parks
Phone

Grapevine RV Resort

3

CA

RV Parks
Phone

Holloways Marina RV Park

3

CA

RV Parks
Phone

Huttopia Paradise SPrings

3

CA

RV Parks
Phone

Jgw RV Park

3

Redding, CA

RV Parks 75 Sites 💰 Valuation on file
Phone

Lake Of The SPrings RV Resort Campground

3

CA

RV Parks
Phone

Marble Quarry RV Park

3

CA

RV Parks
Phone

Marina Dunes Beach Resort

3

CA

RV Parks
Phone

Mendocino Campground

3

CA

RV Parks
Phone

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
// 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