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

Rocky Mountain Car Wash

3

Helena, MT · 724 West Custer Avenue

Car Washes
Phone Email

Geaux Clean Car Wash

3

Baton Rouge, LA · 20311 Highland Road

Car Washes

WhiteWater Express Car Wash

3

LA · 2345 O'Neal Lane

Car Washes

Benny's

3

Baton Rouge, LA · 13385 Coursey Boulevard

Car Washes

Hi Performance Detail

3

Baton Rouge, LA · 5980 South Sherwood Forest Boulevard

Car Washes
Phone Email

Benny's

3

Baton Rouge, LA · 9611 Airline Highway

Car Washes

Take 5

3

Baton Rouge, LA · 8455 Airline Highway

Car Washes

Mike's Car Wash Express

3

Sulphur, LA · 223 North Cities Service Highway

Car Washes
Phone

Auto Spa Express

3

Luling, LA · 12401 Highway 90

Car Washes
Phone

Kwik Trip

3

Monroe, WI · 720 8th Avenue

Car Washes

Fast Splash

3

Dearborn, MI · 14851 Michigan Avenue

Car Washes
Phone

Kwik Trip

3

Clintonville, WI · 12 West Madison Street

Car Washes

Kwik Trip

3

Pleasant Prairie, WI · 10160 Old Green Bay Road

Car Washes

Tsunami Express

3

Oak Creek, WI · 140 West Puetz Road

Car Washes

Kwik Trip

3

Lake Geneva, WI · 710 Williams Street

Car Washes

Kwik Trip

3

Lake Geneva, WI · 850 South Wells Street

Car Washes

Kwik Trip

3

Pleasant Prairie, WI · 10215 120th Avenue

Car Washes

Kwik Trip

3

Manitowoc, WI · 2103 South 42nd Street

Car Washes

Kwik Trip

3

Barneveld, WI · Industrial Drive

Car Washes

Kwik Trip

3

Oak Creek, WI · 9535 South 13th Street

Car Washes

Kwik Trip

3

Oak Creek, WI · 2040 West Ryan Road

Car Washes

Zak's Auto Wash

3

Sterling Heights, MI · 43103 Schoenherr Road

Car Washes

Shiny Car Car Wash

3

Appleton, WI · W3176 Van Roy Road

Car Washes

Clean View Auto Wash

3

Chesterfield, MI · 50501 Gratiot Avenue

Car Washes
Phone Email

Tommy's Express Car Wash

3

Lansing, MI · 6415 South Cedar Street

Car Washes

Kwik Trip

3

Franklin, WI · 10750 West Speedway Drive

Car Washes

Kwik Trip

3

Franklin, WI · 5040 West Rawson Avenue

Car Washes

Mister Car Wash

3

Cudahy, WI · 5506,5510 South Packard Avenue

Car Washes

Kwik Trip

3

MI · 1600 Maria Drive

Car Washes

Kwik Trip

3

Kenosha, WI · 6300 52nd Street

Car Washes

Classic Auto Wash

3

Allen Park, MI · 10275 Allen Road

Car Washes

Tony's Minit-Man Car Wash

3

Dearborn Heights, MI · 6539 Telegraph Road

Car Washes

Kwik Trip

3

Burlington, WI · 500 Falcon Ridge Drive

Car Washes

Kwik Trip

3

New Berlin, WI · 15700 West Small Road

Car Washes

Kwik Trip

3

Wausau, WI · 225451 Rib Mountain Drive

Car Washes

United Car Wash

3

Beloit, WI · 1575 South Madison Road

Car Washes

Zax's Car Wash

3

Belleville, MI · 127 Main Street

Car Washes

Tommy's Express Car Wash

3

Wausau, WI · 102 West Bridge Street

Car Washes

Kwik Trip

3

Mount Pleasant, WI · 7155 Durand Avenue

Car Washes

Redford car wash

3

Redford, MI · 27226 Plymouth Road

Car Washes

Kwik Trip

3

New Berlin, WI · 13975 West Cleveland Avenue

Car Washes

Tommy's Express Car Wash

3

Schofield, WI · 1611 Schofield Avenue

Car Washes
Phone Email

Kwik Trip

3

Sturtevant, WI · 10500 Durand Avenue

Car Washes

Shell

3

Gaylord, MI · 1025 West Main Street

Car Washes
Phone

Kwik Trip

3

Weston, WI · 3207 Schofield Avenue

Car Washes

Ace Auto Wash

3

Utica, MI · 11011 Hall Road

Car Washes

Club Carwash

3

Bellevue, WI · 2193 Monroe Road

Car Washes
Phone

Kwik Trip Car Wash

3

Cloquet, MN · 900 Washington Avenue

Car Washes

Kwik Trip

3

Kasson, MN · 200 8th Street SE

Car Washes

Kwik Trip

3

New Prague, MN · 101 Chalupsky Avenue NE

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