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

AAAA Self Storage - Burien

1B

Burien, WA · 17786 Des Moines Memorial Drive South

Self-Storage
Phone Email

Life Storage

1B

Auburn, WA · 1802 A Street Southeast

Self-Storage
Phone Email

Life Storage

1B

Seattle, WA · 2850 Southwest Yancy Street

Self-Storage
Phone Email

Life Storage

1B

Federal Way, WA · 33620 21st Avenue Southwest

Self-Storage
Phone Email

All Season Warehouse

1B

Sumner, WA · 15022 Puyallup Street

Self-Storage
Phone Email

Ballinger Heated Storage

1B

WA · 20029 19th Avenue Northeast

Self-Storage
Phone Email

Extra Space Storage

1B

Seattle, WA · 1612 Southwest 114th Street

Self-Storage
Phone Email

Northgate Self Storage

1B

Seattle, WA · 10805 Roosevelt Way Northeast

Self-Storage
Phone Email

American Storage - Yelm

1B

McKenna, WA · 34916 WA-507

Self-Storage
Phone Email

Ballard Mini Storage

2

Seattle, WA · 4714 Ballard Avenue Northwest

Self-Storage
Phone

Urban Storage

2

Seattle, WA · 918 South Horton Street

Self-Storage
Phone Email

Simple Box Storage Containers - Marysville

2

Marysville, WA · 15310 Smokey Point Boulevard

Self-Storage
Phone Email

Simple Box Storage Containers

2

Burlington, WA · 10941 Chuckanut Drive

Self-Storage
Phone Email

Public Storage

2

Burien, WA · 15400 1st Avenue South

Self-Storage
Phone

Cram-a-lot Self Storage

2

Rochester, WA · 10501 Highway 12 SW

Self-Storage
Phone Email

Mill Creek Self Storage

2

Bothell, WA · 18205 Bothell-Everett Highway

Self-Storage
Phone

AAA Affordable Mini Storage

2

Kennewick, WA · 517 North Johnson Street

Self-Storage
Phone Email

Dwyer Creek RV & Boat Storage

2

Camas, WA · 4863 Northwest Lake Road

Self-Storage
Phone Email

Deer Park Diamond Storage

2

Deer Park, WA · 209 West D Street

Self-Storage
Phone Email

Bridge Storage

2

WA · 903 North 128th Street

Self-Storage
Phone Email

Copac Self Storage

2

Ferndale, WA · 6910 Salashan Parkway

Self-Storage
Phone

Bremerton Self-Storage

2

Bremerton, WA · 252 4th Street

Self-Storage
Phone Email

Narrows Self Storage

2

Bremerton, WA · 4210 Wheaton Way

Self-Storage
Phone Email

A-1 Self Storage

2

Sedro-Woolley, WA · 1230 Warner Street

Self-Storage
Phone Email

Public Storage

2

Seattle, WA · 10821 Lake City Way Northeast

Self-Storage
Phone Email

StorQuest Self Storage

2

Seattle, WA · 4213 Leary Way Northwest

Self-Storage
Phone Email

SecureSpace Self Storage

2

Seattle, WA · 3116 Northeast 130th Street

Self-Storage
Phone

Magnolia Bridge Self Storage

2

Seattle, WA · 1900 15th Avenue West

Self-Storage
Phone

Public Storage

2

Seattle, WA · 2964 Southwest Avalon Way

Self-Storage
Phone Email

Factoria Security Self Storage

2

Bellevue, WA · 13120 Southeast 30th Street

Self-Storage
Phone

Northwest Self Storage

2

Vancouver, WA · 6212 Northeast 89th Street

Self-Storage
Phone

America's Self Storage

2

Vancouver, WA · 108 Northwest 139th Street

Self-Storage
Phone

Put it in Storage

2

Woodland, WA · 300 South Pinkerton Road

Self-Storage
Phone

Trojan Storage

2

Vancouver, WA · 5820 Northeast 8th Court

Self-Storage
Phone

Bunch's RV & Boat Storage

2

Hillsboro, WA · 6891 Northeast Jacobson Street

Self-Storage
Phone Email

Public Storage

2

Burien, WA · 14034 1st Avenue South

Self-Storage
Phone

Safe & Warm Storage

2

Napavine, WA · 101 East Front Street

Self-Storage
Phone

Daffodil Storage Gem Heights

2

Puyallup, WA · 17304 Gem Heights Drive East

Self-Storage
Phone

Public Storage

2

Burien, WA · 17800 Des Moines Memorial Drive South

Self-Storage
Phone

West Coast Self-Storage

2

Auburn, WA · 4424 A Street Southeast

Self-Storage
Phone Email

Storage One on 4th

2

Renton, WA · 4815 Northeast 4th Street

Self-Storage
Phone

Raceway Heated Storage

2

Covington, WA · 26901 185th Avenue Southeast

Self-Storage
Phone

College Point Storage

2

Lacey, WA · 4667 Marcus Lane Southeast

Self-Storage
Phone Email

Flight Line Storage

2

Lynnwood, WA · 1301 Beverly Park Road

Self-Storage
Phone Email

South Cowichan Storage

2

WA · 3825 Trans-Canada Highway

Self-Storage
Phone

Money Savers Self Storage

2

Westport, WA · 705 Englewood Lane South

Self-Storage
Phone Email

Oceanaire Storage

2

Westport, WA · 704 Englewood Lane South

Self-Storage
Phone Email

Discovery Park Heated Storage

2

Bellingham, WA · 1470 King Street

Self-Storage
Phone

Public Storage

2

Bremerton, WA · 1950 Northeast Riddell Road

Self-Storage
Phone Email

Armor Storage

2

Olympia, WA · 3400 Mottman Road Southwest

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