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

SecureSpace Self Storage

3

Tukwila, WA · 5950 Southcenter Boulevard

Self-Storage
Phone

Skyway Self Storage

3

Seattle, WA · 11840 Renton Avenue South

Self-Storage
Phone Email

Lakeland Hills Heated Storage

3

Auburn, WA · 6523 Terrace View Drive Southeast

Self-Storage
Phone

Stor More

3

Auburn, WA · 1802 A Street Southeast

Self-Storage
Phone

East Valley Storage

3

Kent, WA · 18250 East Valley Highway

Self-Storage
Phone

Auburn Way Self Storage

3

Auburn, WA · 4425 Auburn Way North

Self-Storage
Phone

U-Haul

3

Auburn, WA · 5110 Frontage Road

Self-Storage
Phone

East Valley RV & Storage

3

Renton, WA · 3330 East Valley Road

Self-Storage
Phone

Guy RV & Boat Storage

3

Renton, WA · 1404 Southwest Grady Way

Self-Storage
Phone

Roberts Storage

3

Auburn, WA · 2340 E Street Northeast

Self-Storage
Phone

Public Storage

3

Auburn, WA · 8 16th Street Northwest

Self-Storage
Phone

Ravensdale Self Storage

3

Ravensdale, WA · 27510 Southeast Kent Kangley Road

Self-Storage
Phone Email

West Coast Self-Storage

3

Bellevue, WA · 12399 Northup Way

Self-Storage
Phone

Cubes Self Storage

3

Kirkland, WA · 610 6th Avenue

Self-Storage
Phone

Public Storage

3

Lacey, WA · 8200 Martin Way East

Self-Storage
Phone

Interbay Self Storage

3

Seattle, WA · 1561 West Armory Way

Self-Storage
Phone

StorQuest

3

Seattle, WA · 5890 South 129th Street

Self-Storage
Phone

Simply Self Storage

3

Seattle, WA · 1630 15th Avenue West

Self-Storage
Phone Email

Public Storage

3

Seattle, WA · 9701 Aurora Avenue North

Self-Storage
Phone

Cubes Self Storage

3

Covington, WA · 27115 164th Avenue Southeast

Self-Storage
Phone

StorQuest

3

WA · 29817 Pacific Highway South

Self-Storage
Phone Email

AKK Mini Storage

3

Richland, WA · 110 Wellsian Way

Self-Storage
Phone

StorQuest

3

Redmond, WA · 7555 187th Pl NE

Self-Storage
Phone

Twelve Trees Self Storage

3

Poulsbo, WA · 26256 Twelve Trees Lane Northwest

Self-Storage
Phone Email

View Pointe Self Storage

3

Edgewood, WA · 10315 12th Street Court East

Self-Storage
Phone

Edison Street Mini Storage

3

Kennewick, WA · 5417 West Hood Avenue

Self-Storage
Phone Email

Hayford Road Storage

3

Spokane, WA · 4810 South Hayford Branch Road

Self-Storage
Phone

Stuff Storage

3

WA · 3804 East Bismark Avenue

Self-Storage
Phone Email

The Armory

3

Spokane, WA · 3605 East Rowan Avenue

Self-Storage
Phone

The Storage Room

3

WA · 658 Redington Avenue

Self-Storage
Phone

Bluebird Self Storage

3

Victoria, WA · 747 Princess Avenue

Self-Storage
Phone

U-Haul

3

WA · 644 Queens Avenue

Self-Storage
Phone

Storage Court

3

Monroe, WA · 16825 Tye Street Southeast

Self-Storage
Phone

Daffodil Storage

3

Tacoma, WA · 2801 South Orchard Street

Self-Storage

Self Storage of Spokane

3

Spokane, WA · 8402 West Sunset Highway

Self-Storage
Phone

Aarrow Way Storage

3

Airway Heights, WA · 913 North Hayford Road

Self-Storage
Phone

Chester Self Storage

3

Spokane Valley, WA · 4128 South Bowdish Road

Self-Storage
Phone Email

Perry Storage

3

WA · 10803 North Perry Street

Self-Storage
Phone

Free Up Storage

3

Black Diamond, WA · 30460 3rd Avenue

Self-Storage
Phone Email

Rainier View Storage

3

South Hill, WA · 10301 187th Street East

Self-Storage
Phone

Armor Storage

3

Port Angeles, WA · 260 North Lees Creek Road

Self-Storage
Phone

Garages For Rent

3

Spokane, WA · 2814 North Napa Street

Self-Storage
Phone

Extra Space Storage

3

Tacoma, WA · 1007 South Woodlawn Street

Self-Storage
Phone

Extra Space Storage

3

Tacoma, WA · 8625 Pacific Avenue

Self-Storage
Phone

U-Haul

3

Tacoma, WA · 9201 Pacific Avenue

Self-Storage
Phone

Royal Mini Storage

3

Portland, WA · 13339 Northeast Airport Way

Self-Storage
Phone

Extra Space Storage

3

Kent, WA · 15610 Southeast 272nd Street

Self-Storage
Phone

Coyote Run Self Storage

3

Connell, WA · 351 East Hawthorne Street

Self-Storage
Phone Email

Connell Mini Storage

3

Connell, WA · 980 South 5th Avenue

Self-Storage
Phone

Advanced Heated Storage

3

Burlington, WA · 600 Fisher Lane

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