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

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

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

Creekside Glen

3

Irvine, CA

RV Parks
Phone

Del Sur Gardens RV Park

3

CA

RV Parks
Phone

Desert SPrings RV Park

3

Daggett, CA

RV Parks 78 Sites ๐Ÿ’ฐ Valuation on file
Phone

Desert View Mobile Home Club

3

CA

RV Parks
Phone

Dingerville Usa

3

Butte County, CA

RV Parks
Phone

Evergreen RV Park

3

San Diego, CA

RV Parks
Phone

Falling Rock RV Park

3

CA

RV Parks
Phone

Far Horizons 49Er Village RV Resort

3

CA

RV Parks
Phone

Fawndale Oaks RV Park

3

Redding, CA

RV Parks 33 Sites ๐Ÿ’ฐ Valuation on file
Phone

Flag City RV Resort

3

CA

RV Parks
Phone

Flying Flags RV Park Campground

3

CA

RV Parks
Phone

Fountain Of Youth SPa RV Resort

3

Imperial County, CA

RV Parks
Phone

Frandy Park

3

Kern County, CA

RV Parks
Phone

Garden City RV Park

3

San Jose, CA

RV Parks
Phone

Glen Helen Regional Park

3

San Bernardino County, CA

RV Parks
Phone

Golden Pines RV Resort CG

3

CA

RV Parks
Phone

Grass Valley RV Resort

3

Grass Valley, CA

RV Parks 148 Sites ๐Ÿ’ฐ Valuation on file
Phone

Gualala River Redwood Park

3

CA

RV Parks
Phone

High Sierra RV MH Park

3

CA

RV Parks
Phone

Huttopia Wine Country

3

CA

RV Parks
Phone

Indian Hill Ranch RV Park

3

Tehachapi, CA

RV Parks 67 Sites ๐Ÿ’ฐ Valuation on file
Phone

Indian Wells RV Resort

3

CA

RV Parks
Phone

Islander Mobile RV Park

3

Pomona, CA

RV Parks

Kamp Klamath RV Park CG

3

CA

RV Parks
Phone

Keoughs Hot SPrings

3

Bishop, CA

RV Parks 10 Sites ๐Ÿ’ฐ Valuation on file
Phone

Kings River RV Resort

3

CA

RV Parks
Phone

La Pacifica RV Resort

3

CA

RV Parks
Phone

Laguna Del Sol

3

CA

RV Parks
Phone
// 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