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

Thompson Park

3

Barbourville, KY

RV Parks
Phone Email

Alpine Lake RV Resort

3

Corinth, NY · 78 Heath Road

RV Parks 150 Sites 💰 Valuation on file
Phone Email

Spring Gulch RV Campground

3

New Holland, PA · 475 Lynch Road

RV Parks 150 Sites 💰 Valuation on file
Phone Email

Kewadin RV Park

3

Sault Ste Marie, MI · 2186 Shunk Road

RV Parks 64 Sites 💰 Valuation on file

Indian River RV Resort

3

Indian River, MI · 561 North Straits Highway

RV Parks
Phone Email

Wondrous Farm

3

Allenstown, NH · 91 Pinewood Rd, Allenstown, NH 03275, USA

RV Parks
Email

Lucky Charm RV Park

3

Old Town, FL · 4114 NE 349 Highway

RV Parks 100 Sites 💰 Valuation on file
Phone Owner

Five Flags RV Park

3

Pensacola, FL · 2605 Wilde Lake Boulevard

RV Parks 78 Sites 💰 Valuation on file
Phone Email Owner

Creekside Rv Resort

2

Foley, AL · 21240 Miflin Road

RV Parks
Phone

Palm Creek RV Resort and Picnic Grounds

2

Moapa, NV · 3215 West Warm Springs Road

RV Parks
Phone

Liguerta Station RV Park

2

Wellton, AZ · 19702 Old Highway 80

RV Parks
Phone

Lakeside R.V. Park & Campground

2

Olney, IN · 5238 North Silver Road

RV Parks
Phone

Gordon's Rim Rock Ranch Campground and RV

2

Shasta County, CA

RV Parks
Phone Email

Lighthouse Trailer Resort & Marina

2

San Bernardino County, CA

RV Parks
Phone

Skypark Camp + RV Resort

2

San Bernardino County, CA

RV Parks
Phone Email

University Station RV park

2

Auburn, AL

RV Parks
Phone Email

Cherokee Farms RV Park

2

Summerdale, AL

RV Parks
Phone Email

Warner Scout Reservation

2

Prattville, AL

RV Parks
Phone Email

Hilltop Truck Stop

2

Fairbanks, AK

RV Parks
Phone

Homer Spit Campground

2

Homer, AK

RV Parks
Phone Email

Bear Paw RV Park II

2

Valdez, AK

RV Parks
Phone

Happy Jack Lodge & RV

2

Happy Jack, AZ

RV Parks
Phone

Orangewood Shadows RV Resort

2

Mesa, AZ

RV Parks
Phone Email

Mesa Spirit RV Resort

2

Mesa, AZ

RV Parks
⚠️ Phone

Cottonwood Campground

2

Chinle, AZ

RV Parks
Phone

Paradise RV Resort

2

Sun City, AZ

RV Parks
Phone

Haycreek Ranch

2

Oracle, AZ

RV Parks
Phone

Silverado RV Resort

2

Eloy, AZ

RV Parks
Phone Email

Desert Hills Mobile Ranches

2

Tombstone, AZ

RV Parks
Phone Email

Gateway Ranch RV Resort

2

Salome, AZ

RV Parks 100 Sites 💰 Valuation on file
Phone

Chateau Aux Arc RV Park

2

Altus, AR

RV Parks
⚠️ Phone

Mystery Mountain Resort

2

Rapid City, SD

RV Parks
Phone Email

Bear Mountain RV

2

Trail, OR

RV Parks
Phone

Oasis Stop and Go

2

Buhl, ID

RV Parks
Phone

Chehalis Tribal Eagle RV Park

2

Oakville, WA · 18098 Anderson Road Southwest

RV Parks
Phone

Lake Park Campground

2

Rapid City, SD

RV Parks
Phone

Prairie Pines Mobile Estates

2

Centralia, WA

RV Parks
Phone Email

Michigamme Shores Campground

2

Champion, WI

RV Parks
Phone

Washakie Golf and RV Resort

2

North Branch, MI

RV Parks
Phone

Camelot Campground

2

Jones, MI

RV Parks 141 Sites 💰 Valuation on file
Phone

Cottonwood RV Park

2

Truth or Consequences, NM · 505 East Third Street

RV Parks
Phone

Rainbow's End RV Park

2

Sequim, WA

RV Parks
Phone Email

Cardwell RV Park

2

Cardwell, ID

RV Parks
Phone

Cooper's Campground

2

Harman, WV

RV Parks
Phone

Uncle John's RV Park

2

Buckley, WA

RV Parks
Phone

White Knob Motel & RV Park

2

Mackay, ID

RV Parks 27 Sites 💰 Valuation on file
Phone Email

Riverside RV Park-Campground

2

Bellevue, ID

RV Parks
Phone

Mayfield RV Park

2

Mossyrock, WA

RV Parks
Phone

Scenic 6 Park

2

Potlatch, ID

RV Parks
Phone

Lazy R campground

2

Ranchester, WY

RV Parks 36 Sites 💰 Valuation on file
⚠️ Phone
← Prev 123 / 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