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

Public Storage

3

Portland, OR · 6525 North Lombard Street

Self-Storage
Phone Email

Household Storage

3

Portland, OR · 1940 North Jantzen Avenue

Self-Storage

Fairview Storage

3

Fairview, OR · 20920 Northeast Sandy Boulevard

Self-Storage
Phone

Northwest Self Storage

3

Portland, OR · 12107 Northeast Erin Way

Self-Storage
Phone

Public Storage

3

Portland, OR · 3260 Northeast Columbia Boulevard

Self-Storage
Phone Email

Chinook RV Storage

3

Fairview, OR · 23000 Northeast Marine Drive

Self-Storage

Public Storage

3

Portland, OR · 13515 Northeast Prescott Court

Self-Storage
Phone Email

Northwest Self Storage

3

Portland, OR · 3510 Northeast Columbia Boulevard

Self-Storage
Phone

SecureSpace Self Storage

3

Portland, OR · 3729 Northeast Columbia Boulevard

Self-Storage
Phone

The Vintages Trailer Resort

3

Dayton, OR · 16205 SE Kreder Road

RV Parks

Beachfront RV Park

3

Brookings, OR · 16035 Boat Basin Road

RV Parks

Charleston Marina RV Park

3

Charleston, OR · 63402 Kingfisher Road

RV Parks

Indian Lodge Motel

3

Joseph, OR · 201 South Main Street

Budget Motels
Phone Email

Oregon Yacht Club

3

Portland, OR · 6901 Southeast Oaks Park Way

Marinas

McNary Yacht Club

3

Hermiston, OR · 34099 Beach Shore Drive

Marinas
Email

Columbia River Yacht Club

3

Portland, OR · 37 Northeast Tomahawk Island Drive

Marinas

Budget Inn Portland Airport

3

Portland, OR · 11417 Northeast Sandy Boulevard

Budget Motels
Phone

Dreamers Lodge Motel

3

John Day, OR · 144 North Canyon Boulevard

Budget Motels
Phone Email

Sunset Inn

3

John Day, OR · 390 West Main Street

Budget Motels
Phone

Sovanna Inn

3

Medford, OR · 250 East Barnett Road

Budget Motels
Email

Aaron Motel

3

Portland, OR · 2724 Southeast 82nd Avenue

Budget Motels

Del Rancho Motel

3

Portland, OR · 7622 Southeast 82nd Avenue

Budget Motels
Phone

Allred Hotel

3

Newport, OR · 155 Southwest Elizabeth Street

Budget Motels
Phone Email

Medford Inn

3

Medford, OR · 1015 South Riverside Avenue

Budget Motels

Nite Inn Motel

3

Eugene, OR · 1522 West 6th Avenue

Budget Motels
Email

Portland Value Inn & Suites

3

Portland, OR · 1707 Northeast 82nd Avenue

Budget Motels

Spindrift Motor Inn

3

Brookings, OR · 1215 Chetco Avenue

Budget Motels
Email

Inn at Haystack Rock

3

Cannon Beach, OR · 437 South Hemlock Street

Budget Motels

Motel 6 Newport

3

Newport, OR · 2633 Southeast Pacific Way

Budget Motels
Phone

Broadway Inn

3

Portland, OR · 305 North Broadway

Budget Motels
Phone Email

6th Avenue Motel

3

Portland, OR · 2221 Southwest 6th Avenue

Budget Motels
Email

Cedar Lodge Motor Inn

3

Medford, OR · 518 North Riverside Avenue

Budget Motels
Email

Bluebird Express Car Wash

3

Ontario, OR · 1315 SE 1st Ave

Car Washes
Phone

Five Peaks RV Park

3

Joseph, OR · 508 North Mill Street

RV Parks
Phone

Park at the River

3

Joseph, OR · 59888 Wallowa Lake Highway

RV Parks
Phone

Astro Jet Car Wash

3

Portland, OR · 11214 Southeast Division Street

Car Washes
Phone

Complete Care Car Wash

3

Hillsboro, OR · 10844 Northeast Eider Court

Car Washes

Magic Touch

3

OR · 1922 Lancaster Drive Northeast

Car Washes
Phone Email

Washman

3

Salem, OR · 1705 Lancaster Drive Northeast

Car Washes
Phone

Splash-n-Dash Car Wash

3

Portland, OR · 3134 Northeast Martin Luther King Junior Boulevard

Car Washes
Phone

Lake Grove Car Wash

3

Lake Oswego, OR · 16110 Boones Ferry Road

Car Washes
Phone

Carriage House

3

Beaverton, OR · 13375 Southwest Canyon Road

Car Washes
Phone

United Car Wash

3

West Linn, OR · 19303 Willamette Drive

Car Washes
Phone

National Pride Carwash

3

Beaverton, OR · 3645 Southwest Cedar Hills Boulevard

Car Washes
Phone

Blue Beacon Truck Wash

3

OR

Car Washes
Phone

Washman

3

Portland, OR · 1616 Southeast Martin Luther King Junior Boulevard

Car Washes
Phone

M&M Car Wash

3

Bend, OR · 845 Northeast Greenwood Avenue

Car Washes
Phone

Al's Superwash

3

Portland, OR · 5128 Southwest Shattuck Road

Car Washes
Phone

Chopper's Carwash

3

Enterprise, OR · 503 West North Street

Car Washes
Phone

Campbell Car Wash

3

Cornelius, OR · 2610 Baseline Street

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