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

GEICO Park West Premium

2

Daytona Beach, FL

RV Parks
โš ๏ธ Phone

Rainier View RV Park

2

Graham, WA

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

Clear Fork Reservoir Campground

2

Mansfield, OH

RV Parks
Phone

Saratoga Escape Lodges & RV Resort

2

Saratoga County, NY

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

Scottyland Camping

2

Middlecreek Township, PA

RV Parks
Phone

NAS Corpus Christi RV Park

2

Corpus Christi, TX

RV Parks
Phone

Conestoga Campground

2

White Sulphur Springs, MT

RV Parks
Phone

Citra RV Park

2

Marion County, FL

RV Parks
Phone

Bridgeport Speedway Campground

2

Logan Township, DE

RV Parks
Phone

Sedlmayer's

2

Spirit Lake, ID

RV Parks
Phone

Black River Bay Campgrounds

2

Dexter, NY

RV Parks
Phone

Yellowstone Lakeside RV Park

2

Rigby, ID

RV Parks
Phone

Bellingham RV Park

2

Bellingham, WA

RV Parks
Phone

Beyonder Getaway Rising Sun

2

Rising Sun, IN

RV Parks
Phone

Heart of Glacier RV Park & Cabins

2

Saint Mary, ID

RV Parks
Phone

Sunny Hill Campground

2

Bolivar, PA

RV Parks
Phone

Songbird RV Park

2

Elkhart, TX

RV Parks
Phone

Pull Through, Full Hookup 50AMP

2

Butte, ID

RV Parks
Phone

B & D RV Park

2

Kings Mountain, NC

RV Parks
Phone

Express RV Park

2

Loudon, TN

RV Parks
Phone

Riverside RV Park

2

Vassar, MI

RV Parks
Phone

Lake Linden Campground

2

Lake Linden, MI

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

Northern American RV Park & Yurt Village

2

Coram, ID

RV Parks
Phone

Fox Fire Riverside Campground

2

Hartford, TN

RV Parks
Phone

Sleepy Hollow-Modern North Campground

2

Laingsburg, MI

RV Parks
Phone

Rifle River Grousehaven-Modern Campground

2

Lupton, MI

RV Parks
Phone

Eastside Park Campground

2

Omak, WA

RV Parks
Phone

Navy Getaways Pacific Beach RV Park

2

Pacific Beach, WA

RV Parks
Phone

Brazos Valley RV Park

2

Caldwell, TX

RV Parks
Phone

Elm Grove RV Park

2

Benton City, WA

RV Parks
Phone

Siesta RV Park

2

Las Cruces, NM

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

Indian Trails RV & Mobile Park

2

Ingleside, TX

RV Parks
Phone

Sailfish RV Resort

2

Port Aransas, TX

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

KOA

2

Custer, SD

RV Parks
Phone

Oasis Campground

2

Oacoma, SD

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

Camp Maiden Rock West

2

Morristown, MN

RV Parks
Phone

Cedar Valley RV Park

2

Bastrop, TX

RV Parks
Phone

Creekside RV Ranch

2

Wagoner, OK

RV Parks
Phone

Burns Lake Campground

2

Whitefield, VT

RV Parks
Phone

Eagle Tree RV Park

2

Poulsbo, WA

RV Parks
Phone

Clad & Cordon Vineyard

2

Creal Springs, KY

RV Parks
Phone Email

Lake Pleasant RV Park

2

Beaver, WA

RV Parks
Phone

KOA

2

Newton, IA

RV Parks
Phone

Wine Country RV Park

2

Prosser, WA

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

Noble RV Park

2

Umatilla, WA

RV Parks
Phone

Tom Able Farms RV Park

2

Hermiston, WA

RV Parks
Phone

Gateway RV Park

2

Carlsbad, NM

RV Parks
Phone

Curlew RV Park

2

Curlew, WA

RV Parks
Phone

Circle 10 Campground & RV Park

2

Philip, SD

RV Parks
Phone

Trout Meadows RV Park

2

Naches, WA

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