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

Nashua Car Wash

3

Nashua, MA · 88 Broad Street

Car Washes

Camps Car Wash

3

Nashua, MA · 487 Amherst Street

Car Washes
Phone

Raccoon Express

3

Seabrook, NH · 495 Lafayette Road

Car Washes

Splash Car Wash Express

3

Randolph, MA · 33 Mazzeo Dr

Car Washes

Yellow Dog Car Wash

3

Milford, NH · 40 Jones Road

Car Washes
Email

Soapy Noble Express Car Wash

3

MA · 219 South Westfield Street

Car Washes

Blue Beacon Truck Wash

3

Amarillo, TX · 2200 South Whitaker Road

Car Washes
Phone

Blue Beacon

3

Amarillo, TX · 8710 East Interstate Drive

Car Washes
Phone

Blue Beacon

3

Tulsa, OK · 16505 East Admiral Place North

Car Washes
Phone

John's Car Wash

3

Salem, OR · 1175 Edgewater Street Northwest

Car Washes

AutoSpa360

3

Vancouver, WA · 7613 Northeast Saint Johns Road

Car Washes
Phone Email

Kaady Car Wash

3

Beaverton, OR · 10270 Southwest Canyon Road

Car Washes

Beaverton Car Wash

3

Beaverton, OR · 12425 Southwest Canyon Road

Car Washes

Washman

3

Portland, OR · 510 Southeast Grand Avenue

Car Washes

Kaady Car Wash

3

Lake Oswego, OR · 714 North State Street

Car Washes

Kaady Car Wash

3

Portland, OR · 14740 Northwest Cornell Road

Car Washes

Washman

3

Portland, OR · 6869 North Lombard Street

Car Washes

Rays Auto Wash

3

Happy Valley, OR · 8900 Southeast 82nd Avenue

Car Washes

Empire Car Wash

3

Bend, OR · 20425 Empire Avenue

Car Washes

Washman

3

Portland, OR · 11838 Southeast Division Street

Car Washes

Big Red Car Wash

3

Salem, OR · 2390 Commercial Street Southeast

Car Washes
Phone Email

Washman

3

Portland, OR · 2920 Southeast 10th Avenue

Car Washes

Happy's Car Wash

3

Springfield, OR · 3356 Gateway Street

Car Washes
Phone

Washman

3

Portland, OR · 8864 Southeast 82nd Avenue

Car Washes

Willow Street Car Wash

3

PA · 2900 Willow Street Pike

Car Washes
Phone Email

Blue Beacon Truck Wash

3

Erie, PA · 4090 Depot Road

Car Washes
Phone

Pete's Express Car Wash

3

PA · 1274 Welsh Road

Car Washes
Phone Email

North Park Car Wash

3

PA · 1366 Wildwood Road

Car Washes
Phone Email

WetGo Car Wash

3

McMurray, PA · 2846 Washington Road

Car Washes
Phone

Hoffman Car Wash

3

Vestal, NY · 2524 Vestal Parkway East

Car Washes
Phone Email

Sanatoga Carwash - Trooper

3

Trooper, PA · 2902 Ridge Pike

Car Washes

Rain Tunnel Car Wash

3

Chambersburg, PA · 1350 Orchard Drive

Car Washes

Jaw Car Wash

3

Endicott, NY · 533 North Street

Car Washes
Phone

Enviro Auto Wash

3

Endicott, NY · 3121 Watson Boulevard

Car Washes
Phone

Shiny Shell Carwash

3

York, PA · 715 Town Center Drive

Car Washes

Brentwood Car Wash

3

MO · 2710 Breckenridge Industrial Court

Car Washes

Club Car Wash

3

Columbia, MO · 501 Scott Boulevard

Car Washes

Blue Beacon

3

Oak Grove, MO · 306 Northwest 1st Street

Car Washes
Phone

Lighthouse Car Wash

3

Columbia, MO · 1611 Chapel Hill Road

Car Washes
Phone

Exit 11 Car Wash

3

Merrimack, NH · 4 Whitney Street

Car Washes
Email

Clean Monster Car Wash

3

Hudson, NH · 184 Central Street

Car Washes

Primrose Car Wash

3

Londonderry, NH · 205 Rockingham Road

Car Washes

Superior Auto Spa

3

Nashua, NH · 607 Amherst Street

Car Washes

Nashua Car Wash

3

Nashua, NH · 88 Broad Street

Car Washes

Camps Car Wash

3

Nashua, NH · 487 Amherst Street

Car Washes
Phone

Black Dog Car Wash

3

Dover, NH · 887 Central Avenue

Car Washes

White Water Car Wash

3

Dover, NH · 525 Central Avenue

Car Washes
Phone

Manchester Auto Wash

3

Manchester, NH · 47 Elm Street

Car Washes

Kerner's Car Wash

3

Manchester, NH · 66 South Beech Street

Car Washes

The D Taylor

3

Owasso, OK · 7301 North Owasso Expressway East

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