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

Lewis River RV & Boat Storage

3

Woodland, WA · 350 Lewis River Road

Self-Storage

Burris Creek Mini Storage

3

Woodland, WA · 506 Robinson Road

Self-Storage
Phone

Northwest Self Storage

3

Vancouver, WA · 4200 Northeast 78th Street

Self-Storage
Phone

Iron Gate Storage

3

Vancouver, WA · 7920 Northeast 117th Avenue

Self-Storage
Phone

Northwest Self Storage

3

Battle Ground, WA · 18 Northwest 29th Avenue

Self-Storage

Cascade Park Storage

3

Vancouver, WA · 16015 Southeast Cascade Park Drive

Self-Storage
Phone

Public Storage

3

Vancouver, WA · 9901 Southeast Mill Plain Boulevard

Self-Storage
Phone Email

Public Storage

3

Vancouver, WA · 7601 Northeast 5th Avenue

Self-Storage
Phone Email

Brush Prarie RV Storage

3

Vancouver, WA · 11111 Northeast 117th Avenue

Self-Storage
Phone

Additional Self Storage

3

Vancouver, WA · 505 Southeast Hearthwood Boulevard

Self-Storage

East Vancouver Self Storage

3

Vancouver, WA · 515 Southeast 157th Avenue

Self-Storage
Phone

Weekender Storage

3

Woodland, WA · 1745 Schurman Way

Self-Storage
Phone

Extra Space Storage

3

Vancouver, WA · 106 Northwest 139th Street

Self-Storage

Additional Self Storage

3

Vancouver, WA · 9006 Northeast 117th Avenue

Self-Storage

Additional Self Storage

3

Vancouver, WA · 4901 Northeast Minnehaha Street

Self-Storage
Phone Email

Additional Self Storage

3

Vancouver, WA · 11000 Northeast 28th Street

Self-Storage
Phone Email

U-Haul

3

Vancouver, WA · 8250 Northeast Highway 99

Self-Storage

Hazel Dell Self Storage

3

Vancouver, WA · 7208 Northeast Hazel Dell Avenue

Self-Storage
Phone Email

Battle Ground Mini Storage

3

Battle Ground, WA · 1611 Southeast Grace Avenue

Self-Storage
Phone

Hometown Self Storage

3

Battle Ground, WA · 1811 Southeast Grace Avenue

Self-Storage

Extra Space Storage

3

Vancouver, WA · 8016 Northeast 78th Street

Self-Storage

West Coast Self-Storage

3

Vancouver, WA · 8006 Northeast 72nd Avenue

Self-Storage
Phone

Public Storage

3

Vancouver, WA · 9421 Northeast Fourth Plain Boulevard

Self-Storage
Phone Email

Northwest Self Storage

3

Banks, WA · 42270 Northwest Oak Way

Self-Storage

H&H Storage

3

Longview, WA · 2123 44th Avenue

Self-Storage
Phone Email

Longview Self Storage

3

Longview, WA · 4420 Ocean Beach Highway

Self-Storage

B&R Mini Storage

3

Longview, WA · 615 7th Avenue

Self-Storage
Phone Email

Solo Storage

3

Longview, WA · 3901 Memorial Park Drive

Self-Storage

Northwest Self Storage

3

Vancouver, WA · 12214 Northeast 117th Avenue

Self-Storage
Phone

Northwest Self Storage

3

Vancouver, WA · 7523 Northeast Highway 99

Self-Storage
Phone

Van Mall Storage

3

Vancouver, WA · 4214 Northeast 72nd Avenue

Self-Storage
Phone

U-Lock-It Self Storage

3

Vancouver, WA · 6807 Northeast Fourth Plain Boulevard

Self-Storage
Phone

Iron Gate Storage

3

Vancouver, WA · 12406 Southeast 5th Street

Self-Storage
Phone

Storage Works

3

Vancouver, WA · 7530 Northeast 25th Street

Self-Storage
Phone

Iron Gate Storage

3

Vancouver, WA · 2225 East 5th Street

Self-Storage
Phone

Fortress Mini Storage

3

Vancouver, WA · 12513 Northeast Fourth Plain Boulevard

Self-Storage

I-205 Mini Storage

3

Vancouver, WA · 10806 Southeast 9th Street

Self-Storage
Phone

Iron Gate Storage

3

Vancouver, WA · 802 Northeast 112th Avenue

Self-Storage
Phone

West Coast Self-Storage

3

Vancouver, WA · 501 Southeast 164th Avenue

Self-Storage
Phone

Northwest Self Storage

3

Saint Helens, WA · 755 North Columbia River Highway

Self-Storage

Iron Gate Storage

3

Vancouver, WA · 2900 Northeast 57th Avenue

Self-Storage
Phone

Additional Self Storage

3

Vancouver, WA · 16300 Northeast 162nd Avenue

Self-Storage
Phone Email

U-Haul

3

Bremerton, WA · 2804 Kitsap Way

Self-Storage
Phone Email

Public Storage

3

Lynnwood, WA · 2824 172nd Street Southwest

Self-Storage
Phone

Five Star Storage

3

Fairview, WA · 20315 Northeast Sandy Boulevard

Self-Storage
Phone

Anchor Self Storage

3

Marysville, WA · 13733 Smokey Point Boulevard

Self-Storage

Freeway Storage

3

Marysville, WA · 1057 Beach Avenue

Self-Storage
Phone

Reliable Storage

3

Bremerton, WA · 9324 Northeast Old Military Road

Self-Storage

Storage Court

3

Mill Creek, WA · 17811 Bothell-Everett Highway

Self-Storage

North Creek Self-Storage

3

Bothell, WA · 1627 208th Street Southeast

Self-Storage
Phone Email
// 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