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

Windsor Wine Country RV Park

3

CA

RV Parks
Phone

Wine Country RV Park Sonoma

3

CA

RV Parks
Phone

Wishon Village

3

Fresno County, CA

RV Parks
Phone

Woods Valley Kampground

3

Valley Center, CA

RV Parks 84 Sites 💰 Valuation on file
Phone

Xaa Wan Kwvt Village Resort

3

CA

RV Parks
Phone

Yosemite Pines RV Resort

3

CA

RV Parks
Phone

Cowpens Battlefield RV Park

3

Cherokee County, TN

RV Parks
Phone Email

Four Corners RV Resort

3

Nashville, TN

RV Parks

Thompson Campground

3

Moberly, MO

RV Parks

Wolverine Christian Service Camp

3

Oregon Township, MI

RV Parks
Email

Sourdough Campground & RV Park

3

Unorganized Borough, AK

RV Parks
Phone Email

Southern Living Campground

3

Five Points, AL · 5281 Chambers County 278

RV Parks
Phone

Cathedral Caverns State Park Campground Improved Sites

3

AL

RV Parks

A&R RV Park

3

Foley, AL · 7935 County Road 65

RV Parks

Russian River Campground

3

AK

RV Parks

Deep Creek State Recreation Area

3

AK · 136 Sterling Highway

RV Parks
Phone

Kluane RV Kampground

3

AK · km 1635.9 Alaska Highway

RV Parks
Phone

City of Whittier Campground

3

Whittier, AK

RV Parks

Black Bear Campground

3

Whittier, AK

RV Parks 12 Sites 💰 Valuation on file

Valdez Glacier Campground

3

Valdez, AK

RV Parks

Kendesnii Campground

3

AK · Mile 28.2 Nabesna Road

RV Parks

Border City Lodge RV Park

3

Northway, AK · 1225 Alaska Highway

RV Parks
Phone

Camp Ground

3

Delta Junction, AK · 2296 Richardson Highway

RV Parks
Phone

Green Acres Park & Campground

3

AK · 2434 Richardson Highway

RV Parks
Phone

K'esugi Ken Campground

3

AK · Mile 135.4 George Parks Highway

RV Parks

Minto Resort

3

Minto, AK

RV Parks

El Chaparral Mobile Home Park

3

Texarkana, TX · 5100 North Kings Highway

RV Parks
Phone Email

Glenn Acres Manufactured Home Community

3

Texarkana, TX · 2505 Bender Road

RV Parks

Pine Ridge Estates

3

Nash, TX · 1041 North Kings Highway

RV Parks
Phone

Oakwood Park

3

Nash, TX · 700 East New Boston Road

RV Parks
Email

Woodland Estates

3

Nash, TX · 920 East New Boston Road

RV Parks

Alpine Mobile Village

3

Nash, TX · 1400 East New Boston Road

RV Parks

Texarkana RV Park & Event Center

3

Texarkana, TX · 5000 US Highway 59

RV Parks
Phone

Deerfield Village

3

Nash, TX · 6500 West New Boston Road

RV Parks
Phone

RV Corral

3

Queen City, TX · 21700 US Highway 59 North

RV Parks
Phone Email

Graceland RV Park and Campground

3

AR · 3691 Elvis Presley Boulevard

RV Parks

Silver Strand State Beach Campground

3

CA

RV Parks

Sky Ridge

3

CA · H Street

RV Parks
Phone

Tucalota Springs RV Park

3

Hemet, CA · 41601 East Benton Road

RV Parks
Phone

Pala RV Resort

3

Pala, CA · 11042 Highway 76

RV Parks
Phone

Rolling Homes Trailer Park

3

El Monte, CA · 2606 Santa Anita Ave

RV Parks

Dockweiler Beach RV Park

3

Playa Del Rey, CA · 12001 Vista del Mar

RV Parks
Phone

Buckskin Mountain State Park

3

CA

RV Parks

Main Street Station RV Park

3

Las Vegas, NV · 425 North Main Street

RV Parks
Phone

A Shady Tree RV Park

3

Yuma, AZ · 1210 West 3rd Street

RV Parks

Soledad Canyon RV & Camping Resort

3

Acton, CA · 4700 Crown Valley Road

RV Parks
Phone

Sundance Trailer Park

3

Yuma, AZ · 1925 South 3rd Avenue

RV Parks
Phone Email

Sherwood Forest RV Park

3

Yuma, AZ · 2831 West 5th Street

RV Parks

Crystal Cove State Park Moro Campground

3

Laguna Beach, CA

RV Parks 57 Sites 💰 Valuation on file

Lazy K RV Park

3

Yuma, AZ · 9705 South Avenue 9 East

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