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

Clean Express Car Wash

3

Sylvania, OH · 6307 Monroe Street

Car Washes
Phone

Town Tub Touchless Car Wash

3

Corunna, MI · 113 North Shiawassee Street

Car Washes
Phone

Soapy's Car Wash

3

Paw Paw, MI · 621 West Michigan Avenue

Car Washes
Phone

Downriver Car Wash

3

Southgate, MI · 16305 Fort Street

Car Washes
Phone Email

Kwik Trip

3

MI

Car Washes

Kwik Trip

3

MI

Car Washes

Suburban Car Wash

3

Milwaukee, WI · 10030 West Appleton Avenue

Car Washes

Scrub a Dub Car Wash

3

Milwaukee, WI · 2930 West Capitol Drive

Car Washes
Phone

Octopus Car Wash

3

Milwaukee, WI · 4519 North Green Bay Avenue

Car Washes
Phone

Scrub-A-Dub Car Wash

3

Milwaukee, WI · 7315 West Appleton Avenue

Car Washes
Phone Email

Mobil

3

Wauwatosa, WI · 12331 West North Avenue

Car Washes
Phone

Kwik Trip

3

MI

Car Washes

Peebles Bluemound Car Wash

3

Milwaukee, WI · 6606 West Bluemound Road

Car Washes
Phone

Jetz Car Wash

3

Milwaukee, WI · 7002 West Main Street

Car Washes
Phone

Mister Car Wash

3

Milwaukee, WI · 2012 West Oklahoma Avenue

Car Washes
Phone

BP Shop

3

Milwaukee, WI · 3725 South Howell Avenue

Car Washes
Phone

Scrub-a-Dub Car Wash

3

Milwaukee, WI · 4240 South 27th Street

Car Washes
Phone Email

Mister Car Wash

3

Greenfield, WI · 4763 South 27th Street

Car Washes
Phone

Super-Splash

3

Oak Creek, WI · 6900 South 27th Street

Car Washes
Phone

Blue Beacon

3

Oak Creek, WI · 9625 South 20th Street

Car Washes
Phone

Gold Coin Car Wash

3

Oak Creek, WI · 9530 South Howell Avenue

Car Washes

King Street Car & Pet Wash

3

MI · 111 King Street West

Car Washes
Phone

Ecorse Car Wash

3

Ecorse, MI · 30 Southfield Road

Car Washes
Phone

Fast Splash Auto Wash

3

Lincoln Park, MI · 1407 Southfield Road

Car Washes
Phone

Personal Touch

3

Lincoln Park, MI · 1046 Southfield Road

Car Washes
Phone

Muddy Duck Auto Wash

3

Wyandotte, MI · 462 Biddle Avenue

Car Washes

A&T Car Wash

3

Southgate, MI · 14985 Dix-Toledo Highway

Car Washes
Phone

Kwik Trip

3

MI

Car Washes

Kwik Trip Car Wash

3

MI

Car Washes

Kwik Trip

3

MI

Car Washes

Penn Station Car Wash

3

Southgate, MI · 13932 Pennsylvania Road

Car Washes
Phone

Quality Car Wash

3

Oak Park, MI · 14421 West 11 Mile Road

Car Washes
Phone

Al's Car Wash

3

Southgate, MI · 13601 Allen Road

Car Washes
Phone Email

Kwik Trip

3

MI

Car Washes

Happy Car Wash

3

Caledonia, WI · 4534 Douglas Avenue

Car Washes
Phone

Kwik Trip

3

MI

Car Washes

Pine Fresh Auto Wash

3

Trenton, MI · 200 West Jefferson Avenue

Car Washes

Sam's Coin Car Wash

3

Wyandotte, MI · 675 Ford Avenue

Car Washes
Phone

Touch Free Auto Wash

3

Wyandotte, MI · 630 Ford Avenue

Car Washes

Sam's Car Wash

3

Southgate, MI · 13293 Northline Road

Car Washes
Phone

Cedar Car Wash

3

Lansing, MI · 3133 South Cedar Street

Car Washes
Phone

Kwik Trip

3

MI

Car Washes

Quality Car Wash

3

Holland, MI · 243 North River Avenue

Car Washes
Phone

Kwik Trip

3

MI

Car Washes

Best Wash

3

Brillion, WI · 810 West Ryan Street

Car Washes
Phone

Kwik Trip

3

MI

Car Washes

CarRite car wash

3

MI · 12828 Telegraph Road

Car Washes
Phone

Kwik Trip

3

MI

Car Washes

Kwik Trip

3

MI

Car Washes

Woodman's Car Wash

3

Beloit, WI · 1877 South Madison Road

Car Washes
← Prev 76 / 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