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

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

Rowley Storage

3

North Bend, WA · 43234 Southeast Mount Si Road

Self-Storage
Phone

International Boulevard Self Storage

3

Seatac, WA · 19815 International Boulevard

Self-Storage
Phone Email

AAAA Mini Storage

3

WA

Self-Storage
Phone Email

Public Storage

3

South Hill, WA · 10915 Canyon Road East

Self-Storage
Phone

Titan Self Storage

3

WA · 6221 Olympic Highway

Self-Storage
Phone Email

North Coast Mini-Storage

3

Hoquiam, WA · 2280 State Route 109

Self-Storage
Phone

Canyon Road Self Storage

3

Parkland, WA · 5303 144th Street East

Self-Storage

Arm Guard Self Storage

3

South Hill, WA · 6805 112th Street East

Self-Storage

4 Corners Self Storage

3

Maple Valley, WA · 24215 Southeast 271st Place

Self-Storage
Phone Email

Kala Point Mini Storage

3

Port Townsend, WA · 960 Prospect Avenue

Self-Storage
Phone Email

Public Storage

3

Edmonds, WA · 22510 76th Avenue West

Self-Storage
Phone

North Kitsap Self Storage

3

Poulsbo, WA · 541 Northeast Bernt Road

Self-Storage
Phone

Sequim Port Angeles Storage Solutions

3

WA

Self-Storage

Hilltop Storage

3

Aberdeen, WA · 2805 Olympic Highway

Self-Storage

Country Storage

3

Yelm, WA · 10535 Grove Road Southeast

Self-Storage
Phone Email

South Shore Storage

3

Aberdeen, WA · 1610 Westport Road

Self-Storage
Phone

Olympic Self Storage

3

Aberdeen, WA · 5003 Olympic Highway

Self-Storage
Phone Email

UP Storage

3

University Place, WA · 7701 40th Street West

Self-Storage
Phone Email

Public Storage

3

Kent, WA · 7421 South 180th Street

Self-Storage
Phone

Peoples Storage

3

Kenmore, WA · 6908 Northeast 181st Street

Self-Storage
Phone

Self Storage @ Tehaleh

3

Bonney Lake, WA · 198 Avenue East

Self-Storage
Phone Email

Money Savers Mini Storage

3

Anacortes, WA · 7649 State Route 20

Self-Storage
Phone

Pearl Street Heated Storage

3

Tacoma, WA · 1001 North Pearl Street

Self-Storage
Phone

Meridian Self Storage

3

Kent, WA · Southeast 272nd Street

Self-Storage
Phone

Shurgard Storage

3

Kent, WA · 10528 Southeast 256th Street

Self-Storage

U-Store Self Storage

3

Kent, WA · 301 Novak Lane

Self-Storage
Phone

Totem Self Storage

3

Kent, WA · 8838 South 228th Street

Self-Storage
Phone

Kent East Hill Self Storage

3

Kent, WA · 10625 Southeast 240th Street

Self-Storage
Phone

Public Storage

3

Kent, WA · 10434 Southeast 244th Street

Self-Storage
Phone

Glacier West Boat, RV and Self Storage

3

Kent, WA · 1407 Central Avenue South

Self-Storage

Kenmore Self Storage

3

Kenmore, WA · 18716 68th Avenue Northeast

Self-Storage
Phone

AALL Self Storage

3

Covington, WA · 27211 Covington Way Southeast

Self-Storage
Phone

Extra Space Storage

3

Kent, WA · 11024 Southeast 208th Street

Self-Storage
Phone

Des Moines Way Self Storage

3

Seatac, WA · 14460 Des Moines Memorial Drive South

Self-Storage
Phone

Federal Way Storage

3

Federal Way, WA · 31031 21st Place Southwest

Self-Storage
Phone Email

Safeguard Self Storage

3

Kent, WA · 415 Washington Avenue North

Self-Storage
Phone

Public Storage

3

Kent, WA · 6850 South 238th Street

Self-Storage
Phone

Public Storage

3

Kent, WA · 25700 Pacific Highway South

Self-Storage
Phone

Federal Way Heated Self Storage

3

Federal Way, WA · 35401 Pacific Highway South

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