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

Gaylord KOA

3

Gaylord, MI · 5101 Campfires Parkway

RV Parks

Twin Pines Campground & Canoe Livery

3

Hanover, MI · 9800 Wheeler Road

RV Parks

Hidden Ridge RV Resort

3

Hopkins, MI · 2306 12th Street

RV Parks

Las Cruces KOA

3

Las Cruces, NM · 814 Weinrich Road

RV Parks

Palmetto Cove RV Park

3

Cleveland, SC · 506 Table Rock Road

RV Parks 144 Sites 💰 Valuation on file
Email

Southbound RV Park and Cabins

3

Victoria, TX · 6234 US-59

RV Parks

Mama Bear RV Park

3

TX · 214 Smokey Bear Boulevard

RV Parks
Phone

Quail Creek Campground

3

Hurricane, UT · 451 North 5300 West

RV Parks
Phone

Duke's Slickrock Campground & RV Park

3

Hanksville, UT · 275 East Highway 24

RV Parks
Phone

Fremont River RV Park

3

Loa, UT · 265 South 100 East

RV Parks

Equestrian Campground

3

Clarksville, VA · 1670 Panhandle Road

RV Parks
Phone Email

Hilltop Sunrise

3

Oak Hill, VA · 7195 Legends Hwy

RV Parks
Phone

Tonasket RV Park

3

Tonasket, WA · West Winesap Street

RV Parks

Lighthouse by the Bay RV Resort

3

Birch Bay, WA · 4700 Alderson Road

RV Parks
Phone Email

Indian Lake Travel Resort

3

Manistique, WI · 202 South County Road 455

RV Parks

Gitche Gumee RV Park

3

Marquette, WI · 2048 M 28

RV Parks

Thousand Trails Mount Vernon

3

WA

RV Parks 262 Sites 💰 Valuation on file
Phone

Groton City Park

3

Groton, SD · 800 North Main Street

RV Parks 5 Sites 💰 Valuation on file

Hononegah Forest Preserve Campground

3

Rockton, IL

RV Parks 62 Sites 💰 Valuation on file

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
← Prev 145 / 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