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

H and H Cabins and Campground

1B

Drummond, MI

RV Parks
Phone Email

Big Sky RV Park & Campground

1B

Anaconda, ID

RV Parks
Phone Email

Pondera RV Park

1B

Conrad, ID

RV Parks
Phone Email

Spencer Lake RV Park

1B

Shelton, WA

RV Parks
Phone Email

Waters Edge RV Resort

1B

Cascade, ID

RV Parks 157 Sites ๐Ÿ’ฐ Valuation on file
Phone Email

Big Winnie RV Park & Campground

1B

Bena, MN

RV Parks
Phone Email

Beachcomber RV Park

1B

Whatcom County, WA

RV Parks
Phone Email

Freedom Birds RV Resort

1B

Campbell, TX

RV Parks
Phone Email

RV Park

1B

Walla Walla, WA

RV Parks
Phone Email

Buffalo 35 RV Park

1B

Rockport, TX

RV Parks
Phone Email

Suncrest RV Park

1B

Moses Lake, WA

RV Parks
Phone Email

Meadow Lake Campground

1B

Tipton, IA

RV Parks
Phone Email

Village Inn RV Park

1B

St. Helens, WA

RV Parks
Phone Email

Tommy Turtle Park

1B

Bottineau, ND

RV Parks
Phone Email

Country Lane Campground & RV Park

1B

Wilbur, WA

RV Parks 17 Sites ๐Ÿ’ฐ Valuation on file
Phone Email

Timber Valley SKP RV Park

1B

Sutherlin, OR

RV Parks
Phone Email

Bamboo Ridge Campgrounds

1B

Waterloo, IA

RV Parks
Phone Email

Anderson's RV Park

1B

Long Beach, WA

RV Parks
Phone Email

Hearthside Grove

1B

Petoskey, MI

RV Parks
โš ๏ธ Phone Email

Barnacles Resort & Campground

1B

Aitkin, MN

RV Parks
Phone Email

Parkway RV-1 Park

1B

Odessa, TX

RV Parks
Phone Email

Anson City View RV Park

1B

Jones County, TX

RV Parks
Phone Email

Red Apple Campground

1B

Arundel, ME

RV Parks 140 Sites ๐Ÿ’ฐ Valuation on file
Phone Email

Vista Green RV Resort

1B

Boardman Township, MI

RV Parks 93 Sites ๐Ÿ’ฐ Valuation on file
Phone Email

Pla-Mor Campground

1B

Marshall County, IN

RV Parks 560 Sites ๐Ÿ’ฐ Valuation on file
Phone Email

341 RV Park

1B

Hazlehurst, GA

RV Parks
Phone Email

Hidden Lake Paradise Campground

1B

Plymouth, IN

RV Parks
Phone Email

Family Campgrounds

1B

Georgetown, IN

RV Parks
Phone Email

MarDon Resort

1B

Othello, WA

RV Parks 276 Sites ๐Ÿ’ฐ Valuation on file
Phone Email

Flat Creek Farms RV Resort

1B

Waco, TX

RV Parks
Phone Email

Deer Park RV Resort

1B

Deer Park, WA

RV Parks
Phone Email

Kinkaid Lake Campsites (Annual Lease)

1B

Murphysboro, KY

RV Parks
Phone Email

Deluxe Patio, Full Hookup Pull-Through 50/30AMP

1B

Butte, ID

RV Parks
Phone Email

Oak Forest RV Resort

1B

Austin, TX

RV Parks
Phone Email

Hidden Springs Campground

1B

Southampton Township, PA

RV Parks
Phone Email

Cinnamon Creek RV Park

1B

Dixie Inn, LA

RV Parks 85 Sites ๐Ÿ’ฐ Valuation on file
Phone Email

Swan Lake Campground

1B

Allegan, MI

RV Parks
Phone Email

Little Turtle RV Park

1B

Eufaula, OK

RV Parks
Phone Email

Buzzard Point Campground

1B

Reedville, VA

RV Parks
Phone Email

Hidden Meadow RV Senior Park

1B

Cocolalla, ID

RV Parks
Phone Email

Peach Beach RV Park

1B

Goldendale, WA

RV Parks
Phone Email

BATL Ranch RV Resort

1B

Mount Calm, TX

RV Parks
Phone Email

Suntides RV Park

1B

Yakima, WA

RV Parks
Phone Email

Hildreth RV Park

1B

Whiting, IA

RV Parks
โœ“ Owner Email Owner

Rainbow RV Resort

1B

Eatonville, WA

RV Parks 30 Sites ๐Ÿ’ฐ Valuation on file
Phone Email

Whispering Meadow RV Park

1B

Westlake, LA

RV Parks
Phone Email

Cedar Waters Village

1B

Nottingham, NH

RV Parks
Phone Email

Ocean Shores Outdoor Recreation Club

1B

Ocean Shores, WA

RV Parks
Phone Email

Andersens Oceanside RV Park & Cottages

1B

Long Beach, WA

RV Parks
Phone Email

Waterfront Park Campground

1B

Bridgeport, 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