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

Prescision Motorsports

1B

Metuchen, NJ · 330 Lake Avenue

Car Washes
Phone Email

On the Spot

2

NJ · 41-16 35th Avenue

Car Washes
Phone

Platinum Hand Car Wash & Detail Center

2

Keyport, NJ · 275 Broadway

Car Washes
Phone

Englewood Car Wash

2

Englewood, NJ · 5 East Sheffield Avenue

Car Washes
Phone

NJBuffmaster

2

North Brunswick, NJ · 432 Quarry Lane

Car Washes
Phone

CJ's Express Car Wash

2

Saddle Brook, NJ · 414 Market Street

Car Washes
Phone

Speeders Car Wash

2

Budd Lake, NJ · 193 US 46

Car Washes
Phone

Coastal Car Wash

2

NJ · 1117 South Dupont Highway

Car Washes
Phone

Ridgewood Auto Wash

2

Glen Rock, NJ · 450 South Broad Street

Car Washes
Phone

Golden Touch Car Care Center

2

NJ · 296 4th Avenue

Car Washes
Phone Email

Tommy's Auto Repair & Car Wash

2

NJ · 2029 McDonald Avenue

Car Washes
Phone

BK Wash & Repair Center

2

NJ · 862 4th Avenue

Car Washes
Phone

Sunset Car Wash

2

NJ · 4013 4th Avenue

Car Washes
Phone

Zap Car Wash & Lube

2

NJ · 1096 Atlantic Avenue

Car Washes
Phone Email

Valet Auto Wash

2

Princeton, NJ · 3515 US 1

Car Washes
Phone Email

Spark Car Wash

2

Mount Holly, NJ · 1659 State Route 38

Car Washes
Phone

Auto Reflections - Car Detailing Service

2

Little Silver, NJ · 60 Oceanport Avenue

Car Washes
Phone Email

Sparkles Hand Car Wash

2

Plainfield, NJ · 114 West 4th Street

Car Washes
Phone

Central Car Wash

2

NJ · 64-17 Central Avenue

Car Washes
Phone

Empire Auto Spa

2

NJ · 760 Seneca Avenue

Car Washes
Phone

Sunny Brite Auto Wash Corporation

2

NJ · 1517 Gates Avenue

Car Washes
Phone

All Pro Car Care Wash

2

NJ · 460 US-46 E

Car Washes
Phone

White Swan Auto Spa

2

NJ

Car Washes
Phone

Hand Car Wash & Detail

2

NJ · 8234 18th Avenue

Car Washes
Phone

JCC Auto Spa

2

Iselin, NJ · 1611 Oak Tree Road

Car Washes
Phone

Spark Car Wash

2

Ledgewood, NJ · 1425 US 46

Car Washes
Phone

Super Clean Car Wash

2

Brooklyn, NJ · 7017 Bay Parkway

Car Washes
Phone

Viking Auto Spa

2

NJ · 354 Hamilton Avenue

Car Washes
Phone

Automatic Car Wash

2

Pemberton, NJ · 33 Fort Dix Road

Car Washes
Phone

Park's Best Car Wash

2

NJ

Car Washes
Phone

Automated Hand Car Wash

2

NJ · 1119 Atlantic Avenue

Car Washes
Phone

Byram Car Wash

2

NJ

Car Washes
Phone

Ultimate Car Wash

2

NJ

Car Washes
Phone

Mobil

2

NJ

Car Washes
Phone

Hand Car Wash Detailing

2

NJ

Car Washes
Phone

Amboy Auto Spa Hand Car Wash

2

NJ

Car Washes
Phone

Lacey Car Wash & Quik Lube

2

Lanoka Harbor, NJ

Car Washes
Phone

Spa Car Wash And Detailing Center

2

NJ

Car Washes
Phone

Super Car Wash and Quick Lube

3

Elizabeth, NJ · 749 Edgar Road

Car Washes

Pete's Express Car Wash

3

NJ · 1274 Welsh Road

Car Washes
Phone Email

Tommy's Express Car Wash

3

NJ · 656 North Dupont Highway

Car Washes

Trax Car Wash

3

New Brunswick, NJ · 17 State Route 18

Car Washes
Phone Email

Promenade Car Wash

3

Evesham, NJ · 987 State Route 73

Car Washes

Sanatoga Carwash - Trooper

3

Trooper, NJ · 2902 Ridge Pike

Car Washes

Quality Car Care

3

Verona, NJ · 189 Bloomfield Avenue

Car Washes
Phone Email

Reflections Car Wash

3

Sewell, NJ · 415 Greentree Road

Car Washes
Phone

Park View Car Wash

3

Pennsville, NJ · 22 North Broadway

Car Washes
Phone

Five Points Car Wash

3

Sewell, NJ · 133 Delsea Drive

Car Washes
Phone

KleenKar Car Wash

3

Clayton, NJ · 585 South Delsea Drive

Car Washes

Blue Wave Car Wash

3

Villas, NJ · 1883 Bayshore Road

Car Washes
Phone
1 / 3 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