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

Rancho Villa Storage

3

Walla Walla, WA · 1396 Dalles Military Road

Self-Storage
Phone

Sunrise Self Storage

3

Federal Way, WA · 34202 16th Avenue South

Self-Storage
Phone

Public Storage

3

Federal Way, WA · 34701 Pacific Highway South

Self-Storage
Phone

U-Haul

3

Federal Way, WA · 35205 Enchanted Parkway South

Self-Storage
Phone

Cascade Heated Self Storage

3

North Bend, WA · 1080 Southeast North Bend Way

Self-Storage
Phone

The Stor House Self Storage

3

Bellevue, WA · 1614 118th Avenue Southeast

Self-Storage
Phone

Boone Street Mini Storage #1

3

Aberdeen, WA · 701 South Boone Street

Self-Storage
Phone

Tolt Self Storage

3

Carnation, WA · 4303 Tolt Avenue

Self-Storage
Phone

Public Storage

3

Seattle, WA · 3600 Stone Way North

Self-Storage
Phone

Extra Storage Now

3

WA · 2945 Green Road

Self-Storage
Phone

Public Storage

3

Seattle, WA · 11512 Aurora Avenue North

Self-Storage
Phone

Metro Heated Self Storage

3

Seattle, WA · 8908 Lake City Way Northeast

Self-Storage
Phone

Seattle Vault

3

Seattle, WA · 1800 Terry Avenue

Self-Storage
Phone Email

CubeSmart

3

Seattle, WA · 9309 Aurora Avenue North

Self-Storage
Phone

Mini-Max Storage

3

Seattle, WA · 2656 15th Avenue West

Self-Storage
Phone Email

U-Haul

3

Seattle, WA · 6401 Martin Luther King Junior Way South

Self-Storage
Phone

Seattle Mini Storage

3

Seattle, WA · 1100 Poplar Place South

Self-Storage
Phone Email

Public Storage

3

Seattle, WA · 9200 Olson Place Southwest

Self-Storage
Phone

Redmond Ridge Self-Storage

3

Redmond, WA · 23060 Northeast 102nd Street

Self-Storage
Phone

Public Storage

3

Shoreline, WA · 20041 Ballinger Way Northeast

Self-Storage
Phone

Rainier Mini Storage

3

Rainier, WA · 306 West Binghampton Street

Self-Storage
Phone Email

Public Storage

3

Olympia, WA · 1825 Cooper Point Road Southwest

Self-Storage
Phone

Public Storage

3

Kent, WA · 27000 Pacific Highway South

Self-Storage
Phone

Public Storage

3

Kent, WA · 23439 Pacific Highway South

Self-Storage
Phone

Public Storage

3

Kent, WA · 23600 Military Road South

Self-Storage
Phone

Reliable Storage

3

Poulsbo, WA · 1080 Northeast Forest Rock Lane

Self-Storage
Phone

U-Haul

3

Tukwila, WA · 2925 South 112th Street

Self-Storage
Phone

Adams Langford Storage

3

WA · 883 Van Isle Way

Self-Storage
Phone Email

Quilcene Mini Storage

3

Quilcene, WA · 294704 US-101

Self-Storage

Newcastle Heated Storage

3

Newcastle, WA · 7115 132nd Place Southeast

Self-Storage
Phone

Public Storage

3

Renton, WA · 2233 East Valley Road

Self-Storage
Phone

Public Storage

3

Renton, WA · 3600 East Valley Road

Self-Storage
Phone

Enumclaw Self Storage

3

Enumclaw, WA · 810 Blake Street

Self-Storage
Phone

Blackburn Economy Storage

3

Mount Vernon, WA · 1710 East Blackburn Road

Self-Storage
Phone

American Heritage Mini Storage

3

Anacortes, WA · 8379 Summit Park Road

Self-Storage
Phone

The Stor House Self Storage

3

Renton, WA · 2829 Northeast 3rd Street

Self-Storage
Phone

Woodland Mini Storage

3

Woodland, WA · 350 East Scott Avenue

Self-Storage
Phone

Public Storage

3

Maple Valley, WA · 22013 Southeast Wax Road

Self-Storage
Phone

Spokane Mini-Warehouse

3

Spokane, WA · 4503 East Trent Avenue

Self-Storage
Phone Email

U-Haul

3

Vancouver, WA · 1905 Northeast 117th Street

Self-Storage
Phone

Secure-It Self Storage

3

Spokane Valley, WA · 11018 East Sprague Avenue

Self-Storage
Phone

U-Haul

3

Vancouver, WA · 2460 Northeast Andresen Road

Self-Storage
Phone

Keepsafe Mini Storage

3

Vancouver, WA · 1005 Northeast 95th Street

Self-Storage
Phone

Padden Park Place RV Storage

3

Vancouver, WA · 7901 Northeast 52nd Court

Self-Storage
Phone

St. Johns Storage

3

Portland, WA · 8190 North Lombard Street

Self-Storage
Phone

Island Security Self Storage

3

WA · 10015 Southwest 178th Street

Self-Storage
Phone

West Coast Self Storage

3

WA · 14535 Bothell Way Northeast

Self-Storage
Phone

Seaview Mini Storage

3

WA · 3605 Pacific Way

Self-Storage
Phone

Kitsap Lake Storage

3

Bremerton, WA · 6400 Kitsap Way

Self-Storage
Phone

Twin Gates Mini Storage

3

Olympia, WA · 4041 82nd Avenue Southeast

Self-Storage
← Prev 18 / 28 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