49,013 properties
0 phones
0 emails
0 for sale
110 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:

JLE Truckwashing

1B

Portland, OR · 9615 Northeast Vancouver Way

Car Washes
Phone Email

Oil Stop

1B

Medford, OR · 775 Medford Center

Car Washes
Phone Email

Scooter’s Car Wash

1B

Springfield, OR · 128 South 32nd Street

Car Washes
Phone Email

Washman

2

Gresham, OR · 24161 Southeast Stark Street

Car Washes
Phone

Canby Car Wash & Auto Lube

2

Canby, OR · 118 Southeast 1st Avenue

Car Washes
Phone

Kiss Car Wash

2

Tigard, OR · 12390 Southwest Scholls Ferry Road

Car Washes
Phone

Willamette Mist Car Wash

2

Salem, OR · 4955 Commercial Street Southeast

Car Washes
Phone

Washman

2

Salem, OR · 4096 Commercial Street Southeast

Car Washes
Phone

Eco Car Wash

2

Portland, OR · 18128 Northeast Glisan Street

Car Washes
Phone Email

Surf Thru Express

2

Medford, OR · 245 East Barnett Road

Car Washes
Phone

Washman

2

Portland, OR · 1530 Northeast Martin Luther King Junior Boulevard

Car Washes
Phone

Kaady Car Wash

2

Lake Oswego, OR · 17701 Lower Boones Ferry Road

Car Washes
Phone

Alpha's Auto Detail

2

Portland, OR · 8064 Southeast 17th Avenue

Car Washes
Phone

Kaady Car Wash

2

Portland, OR · 7400 Southwest Barbur Boulevard

Car Washes
Phone

Red Carpet Car Wash

2

Bend, OR · 235 Southeast 3rd Street

Car Washes
Phone

Lara Detail

2

Portland, OR · 3714 South Macadam Avenue

Car Washes
Phone

Kaddy Car Wash

2

Hillsboro, OR · 2170 Northeast Cornell Road

Car Washes
Phone

Washman

2

Sandy, OR · 37055 Highway 26

Car Washes
Phone

Eco Car Wash

2

Portland, OR · 12118 North Jantzen Drive

Car Washes
Phone Email

Uptown Auto Detail

2

Portland, OR · 1222 Southwest 17th Avenue

Car Washes
Phone

Washman

2

Portland, OR · 315 Northeast 82nd Avenue

Car Washes
Phone

Eco Car Wash

2

Portland, OR · 16942 Southeast Powell Boulevard

Car Washes
Phone Email

Cruiser's Corner

2

Beaverton, OR · 17395 Southwest Farmington Road

Car Washes
Phone

Stafford Hills Car Wash

2

Wilsonville, OR · 8605 Southwest Elligsen Road

Car Washes
Phone

Kiss Car Wash

2

Wilsonville, OR · 8243 Southwest Wilsonville Road

Car Washes
Phone

Kaady Car Wash

2

Tualatin, OR · 6950 Southwest Nyberg Street

Car Washes
Phone

Kiss

2

Tigard, OR · 12475 Southwest Main Street

Car Washes
Phone

Flying Frog Car Wash

2

Bend, OR · 225 Northeast Quimby Avenue

Car Washes
Phone

Red Carpet Detail Center

2

Bend, OR · 235 Southeast 3rd Street

Car Washes
Phone

Sud-N-Shine

2

Bend, OR · 61516 South Highway 97

Car Washes
Phone

Quench and Drench

2

Medford, OR · 1024 South Riverside Avenue

Car Washes
Phone

Shiny Impressions Auto Detail

2

Lake Oswego, OR · 17717 Lower Boones Ferry Road

Car Washes
Phone

Scrub It Up Car & Pet Wash

2

OR · 266 East Beakman Street

Car Washes
Phone

Xpresso Lube

2

Portland, OR · 12750 Northwest Cornell Road

Car Washes
Phone

Chevron

2

Gladstone, OR · 19200 Southeast McLoughlin Boulevard

Car Washes
Phone

Pinky's Car Wash

2

Happy Valley, OR · 11969 Southeast 82nd Avenue

Car Washes
Phone

Sud-N-Shine Car Wash

2

Cottage Grove, OR · 235 East Davidson Avenue

Car Washes
Phone

Astro Jet Car Wash

2

Portland, OR · 8064 Southeast 17th Avenue

Car Washes
Phone

Ultra Car Wash

2

Redmond, OR · 3640 Southwest 21st Place

Car Washes
Phone

Mister Car Wash

2

OR

Car Washes
Phone

John's Car Wash

3

Salem, OR · 1175 Edgewater Street Northwest

Car Washes

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
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