49,013 properties
0 phones
0 emails
0 for sale
7,857 results · Page 83/158
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:

Benny's Car Wash

3

MS · 8370 Siegen Lane

Car Washes
Phone

Circle K

3

MS · 10391 Airline Highway

Car Washes
Phone

Airline Car Wash

3

MS · 10575 Airline Highway

Car Washes
Phone

Shammy's Car Wash

3

MS · 1351 Nicholson Drive

Car Washes
Phone

Super Spray

3

Brinkley, AR · 1009 North Main Street

Car Washes
Phone

dipstix

3

Cleveland, MS · 436 North Davis Avenue

Car Washes
Phone

Zips Car Wash

3

Olive Branch, MS · 6810 Goodman Road

Car Washes
Phone

Blue Beacon

3

IA

Car Washes
Phone

Margies Car Wash

3

Sidney, MT · 300 14th Street Southeast

Car Washes
Phone Email

Fort Benton Car Wash

3

Fort Benton, MT · 2119 Saint Charles Street

Car Washes

Power Wash

3

Lincoln, NE · 5511 Northwest 1st Street

Car Washes
Phone Email

Henderson Ultimate Car Wash

3

Vermillion, NE · 921 East Cherry Street

Car Washes
Phone

Super C

3

Lincoln, NE · 2601 Ticonderoga Drive

Car Washes
Phone

Sunnybrook Shine

3

NE · 5400 Sergeant Road

Car Washes

Malcolm Clipper & Car Wash

3

Malcolm, NE · 235 South Lincoln Street

Car Washes
Phone

Tidal Wave Auto Spa

3

Scottsbluff, NE · 3310 Avenue I

Car Washes
Phone

Express Wash

3

NE · 10202 Maple Street

Car Washes
Phone Email

Fantasy's Car Wash

3

NE · 18240 Wright Street

Car Washes
Phone

Dolphins Touchless Car Wash

3

NE · 2511 South 140th Street

Car Washes
Phone

Cornhusker Tornado Wash

3

NE · 6920 South 108th Street

Car Washes
Phone

Blue Beacon

3

NE

Car Washes
Phone

Gorilla Wash

3

NE · 3003 West Broadway

Car Washes
Phone

D.O. Car Wash

3

NE · 227 Bennett Avenue

Car Washes

Eddy's Car Wash

3

NE · 2125 Rue Street

Car Washes

Manawa Centre Wash & Gas

3

Council Bluffs, NE · 3205 Manawa Centre Drive

Car Washes
Phone

U-Stop Car Wash

3

NE · 3280 Superior Street

Car Washes
Phone

G-Force Car Wash

3

Lincoln, NE · 7330 South 13th Street

Car Washes

Blue Beacon

3

NE

Car Washes
Phone

Tornado Car Wash

3

Lincoln, NE · 3220 O Street

Car Washes
Phone

Kermit's Car Wash

3

Grand Island, NE · 1304 West 2nd Street

Car Washes
Phone

Super Suds Carwash

3

North Platte, NE · 121 West Leota Street

Car Washes
Phone

Super Shine Auto Care

3

Kearney, NE · 3616 2nd Avenue

Car Washes
Phone

Hy-Vee Car Wash

3

Kearney, NE · 5204 2nd Avenue

Car Washes
Phone

Power Wash

3

Lincoln, NE · 600 West Cornhusker Highway

Car Washes
Phone Email

Silverstar

3

NE · 2519 Correctionville Road

Car Washes
Phone

Super Wash

3

Lincoln, NE · 732 West O Street

Car Washes
Phone

Moana Lane Car Wash

3

NV · Moana Lane

Car Washes
Phone

Monkey Shine

3

West Wendover, NV · 801 Florence Way

Car Washes
Phone

Cyprus Car Wash

3

NV

Car Washes
Phone Email

Blue Beacon

3

NV

Car Washes
Phone

Blue Beacon

3

NV

Car Washes
Phone

Blue Wave Car Wash

3

Villas, NJ · 1883 Bayshore Road

Car Washes
Phone

Optimum Auto Spa

3

New Brunswick, NJ · 148 Sandford Street

Car Washes

Tropical Breeze Car Wash

3

NJ · 756 Utica Avenue

Car Washes
Phone

Bleecker Hand Car Wash

3

NJ · 1910 Bleecker Street

Car Washes
Phone Email

Choice Auto Spa

3

Wayne, NJ · 200 Mountainview Boulevard

Car Washes
Phone

Willowbrook Car & Van Wash

3

Wayne, NJ · 5 NJ-23

Car Washes
Phone Email

Auto Elite - Mobile Car Wash and Detail

3

Wayne, NJ · 508 Paterson-Hamburg Turnpike

Car Washes

Top Auto Detailing

3

Camden, NJ · 2513 Carman Street

Car Washes
Phone

Big Business Car Wash

3

Chester, NJ · 2201 Engle Street

Car Washes
Phone
← Prev 83 / 158 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