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

A Frame RV Park

2

Baker City, OR

RV Parks
Phone

Phoenix RV Park

2

Salem, OR · 4130 Silverton Rd NE, Salem, OR 97305, USA

RV Parks
Phone

Diamond Lake Trailer Court

2

Diamond Lake, OR · 3500 Diamond Lake Loop

RV Parks
Phone

Sun Outdoors Bend

2

Bend, OR · 60801 Southeast Brosterhous Road

RV Parks
Phone Email

Meadowlark RV Park

2 🌐 Multi-Vertical

Creswell, OR · 310 East Oregon Avenue

RV Parks
Phone

Patio RV Park

2

Blue River, OR · 55636 McKenzie River Drive

RV Parks
Phone

Newberry RV Park

2

La Pine, OR · 52660 The Dalles-California Highway

RV Parks
Phone

Glenyan RV Park & Campground

2

Jackson County, OR · 5310 Hwy 66

RV Parks
Phone

Cypress Grove RV Park

2

Gold Hill, OR · 1679 Rogue River Hwy, Gold Hill, OR 97525, USA

RV Parks
Phone

Sportsman's River RV Park

2 🌐 Multi-Vertical

Chiloquin, OR · 32323 Modoc Point Rd, Chiloquin, OR 97624, USA

RV Parks
Phone

Crater Lake Resort

2

Fort Klamath, OR · 50711 OR-62, Fort Klamath, OR 97626, USA

RV Parks
Phone

Lakewood Rv Park

2

White City, OR · 2564 Merry Ln, White City, OR 97503, USA

RV Parks
Phone

River Point RV Park

2

Ontario, OR · 225 SE 10th St, Ontario, OR 97914, USA

RV Parks
Phone

Super 8 Ontario

2

Ontario, OR · 615 East Idaho Avenue

Budget Motels
Phone Email

Bronze Antler Bed & Breakfast

2

Joseph, OR · 309 South Main Street

Budget Motels
Phone Email

Waverly Marina Association

2

Portland, OR · 513 Southeast Marion Street

Marinas
Phone

St. Helens Marina

2

St. Helens, OR · North River Street

Marinas
Phone

Blue Heron Landing

2

Portland, OR · 2335 North Marine Drive

Marinas
Phone

Gold Beach Inn

2

Gold Beach, OR · 29346 Ellensburg Avenue

Budget Motels
Phone

Sea Haven Motel

2

rockaway Beach, OR · 520 Oregon Coast Highway

Budget Motels
Phone

Best Western Holiday Hotel

2

Coos Bay, OR · 411 North Bayshore Drive

Budget Motels
Phone

Sky Hook Motel

2

Mitchell, OR · 101 Highway 26

Budget Motels
Phone Email

Sleep Inn & Suites

2

Roseburg, OR · 2855 Northwest Edenbower Boulevard

Budget Motels
Phone Email

Econo Lodge

2

Newport, OR · 606 South West Coast Highway 101

Budget Motels
Phone Email

John Day Motel

2

John Day, OR · 250 East Main Street

Budget Motels
Phone

Motel 6 Coos Bay

2

Coos Bay, OR · 1445 North Bayshore Drive

Budget Motels
Phone

Rodeway Inn

2

Corvallis, OR · 345 Northwest 2nd Street

Budget Motels
Phone Email

Schooner’s Cove Inn

2

OR · 188 North Larch Street

Budget Motels
Phone

Super 8

2

Corvallis, OR · 407 Northwest 2nd Street

Budget Motels
Phone Email

Eastside Lodge

2

Portland, OR · 949 East Burnside Street

Budget Motels
Phone

Econo Lodge

2

Portland, OR · 9520 Northeast Sandy Boulevard

Budget Motels
Phone Email

Motel 6

2

Tigard, OR · 17950 Southwest McEwan Road

Budget Motels
Phone

Motel 6

2

Seaside, OR · 2369 South Roosevelt Drive

Budget Motels
Phone

Super 8 by Wyndham Baker City

2

Baker City, OR · 250 Campbell Street

Budget Motels
Phone Email

Rodeway Inn Newport

2

Newport, OR · 206 North Coast Highway

Budget Motels
Phone Email

Econo Lodge

2

Springfield, OR · 1920 Main Street

Budget Motels
Phone Email

Moolack Shores Motel

2

Newport, OR · 8835 North Coast Highway

Budget Motels
Phone

Econo Lodge

2

Corvallis, OR · 935 Northwest Garfield Avenue

Budget Motels
Phone Email

Motel 6

2

Portland, OR · 10155 Southwest Capitol Highway

Budget Motels
Phone

Rodeway Inn

2

Baker City, OR · 810 Campbell Street

Budget Motels
Phone Email

Motel 6

2

Bend, OR · 201 Northeast 3rd Street

Budget Motels
Phone

Rodeway Inn & Suites

2

Portland, OR · 10207 Southwest Park Way

Budget Motels
Phone

Hilton Garden Inn Eugene / Springfield

2

Springfield, OR · 3528 Gateway Street

Budget Motels
Phone

Motel 6

2

Portland, OR · 1125 North Schmeer Road

Budget Motels
Phone

Highlander Motel

2

La Pine, OR · 51511 The Dalles-California Highway

Budget Motels
Phone

Economy Inn

2

Portland, OR · 3971 North Interstate Avenue

Budget Motels
Phone

Super 8

2

La Grande, OR · 2407 East R Avenue

Budget Motels
Phone Email

Americas Best Value Sandman Inn

2

La Grande, OR · 2410 East R Avenue

Budget Motels
Phone

Unicorn Motel

2

Portland, OR · 3040 Southeast 82nd Avenue

Budget Motels
Phone

Clackamas Inn & Suites

2

Clackamas, OR · 16010 Southeast 82nd Drive

Budget Motels
Phone Email
← Prev 26 / 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