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

Lynnwood, WA · 14429 Highway 99

Self-Storage
Phone Email

Pedron's Auto, Boat & RV Storage

3

Vancouver, WA · 6002 Northeast 152nd Avenue

Self-Storage
Phone Email

East Vancouver RV and Boat Storage

3

Vancouver, WA · 1306 Northeast 172nd Avenue

Self-Storage
Phone Email

Principal RV & Self Storage

3

Battle Ground, WA · 1710 Southwest 12th Avenue

Self-Storage
Phone

Northwest Self Storage

3

Ridgefield, WA · 6300 South 11th Street

Self-Storage

Alderwood Safe Storage

3

Lynnwood, WA · 16902 Alderwood Mall Parkway

Self-Storage

Northwest Self Storage

3

Kelso, WA · 1699 South 13th Avenue

Self-Storage

A&A Self Storage

3

Kelso, WA · 1313 South 13th Avenue

Self-Storage
Phone Email

Storage Works

3

Vancouver, WA · 11000 Northeast 117th Avenue

Self-Storage
Phone

Sherlock Self Storage

3

Duvall, WA · 14441 Main Street Northeast

Self-Storage

Storage Works

3

Vancouver, WA · 5201 Northeast 94th Avenue

Self-Storage
Phone

Clock Tower Self Storage

3

WA · 9100 Highway 92

Self-Storage

Extra Space Storage

3

Vancouver, WA · 9606 Northeast 76th Street

Self-Storage

Extra Space Storage

3

Vancouver, WA · 2625 Southeast 165th Avenue

Self-Storage

Extra Space Storage

3

Vancouver, WA · 16600 Southeast 18th Street

Self-Storage

Public Storage

3

Vancouver, WA · 6907 Northeast Ward Road

Self-Storage
Phone Email

Northwest Self Storage

3

Saint Helens, WA · 295 South Vernonia Road

Self-Storage

Kingston Mini Storage

3

Kingston, WA · 11126 Northeast State Highway 104

Self-Storage
Phone Email

Aztec Self Storage

3

Burlington, WA · 650 Pease Road

Self-Storage
Phone Email

Northwest Self Storage

3

Vancouver, WA · 421 Northeast 104th Avenue

Self-Storage
Phone

Sherlock Self Storage

3

WA · 17101 Bothell Way Northeast

Self-Storage

Route 2 RV & Boat Storage

3

Sultan, WA · 35409 US 2

Self-Storage
Phone Email

SecureSpace Self Storage

3

Seattle, WA · 2707 West Commodore Way

Self-Storage
Phone

Gordon's Self Storage

3

Kelso, WA · 1712 Westside Highway

Self-Storage
Phone

Storage Solutions

3

Spokane Valley, WA · 19311 East Appleway Avenue

Self-Storage
Phone

S & M Storage

3

WA · 402 West Main Street

Self-Storage
Phone

River Valley, Inc. RV Storage

3

Spokane Valley, WA · 205 South Evergreen Road

Self-Storage
Phone

Valleyway Self Storage

3

Spokane Valley, WA · 15302 East Valleyway Avenue

Self-Storage
Phone

Econo-Mini Self Storage

3

Seattle, WA · 6920 Roosevelt Way Northeast

Self-Storage
Phone Email

East Hill Village Self Storage

3

WA

Self-Storage
Phone Email

U-Haul

3

Rochester, WA · 19931 Sargent Road Southwest

Self-Storage
Phone

Grand Mound Mini Storage

3

Centralia, WA · 20642 Grand Mound Way Southwest

Self-Storage
Phone

First Choice Self Storage

3

Rochester, WA · 19931 Sargent Road Southwest

Self-Storage
Phone

Vern's Rent It Portable Storage

3

rochester, WA · 19302 Elderberry Street Southwest

Self-Storage
Phone

Harbor Storage

3

Gig Harbor, WA · 2005 34th Avenue Northwest

Self-Storage
Phone Email

Stor-More Self Storage

3

WA · 2850 Southwest Yancy Street

Self-Storage
Phone

Chateau Storage

3

Maple Valley, WA · 28610 Maple Valley-Black Diamond Road Southeast

Self-Storage
Phone

Rodeo City Self Storage

3

Ellensburg, WA · 1304 West University Way

Self-Storage
Phone

Public Storage

3

Mountlake Terrace, WA · 21818 66th Avenue West

Self-Storage
Phone

Public Storage

3

Lynnwood, WA · 5200 180th Street Southwest

Self-Storage
Phone

City Centre Storage Lockers

3

WA · 824 Johnson Street

Self-Storage

Extra Space Storage

3

Lakewood, WA · 12129 Pacific Highway Southwest

Self-Storage
Phone

Highway 970 Self Storage

3

WA

Self-Storage
Phone

Hansen Park Mini-Storage

3

Kennewick, WA · 8016 West 4th Avenue

Self-Storage
Phone

Smart Storage

3

WA · 1405 Dale Avenue

Self-Storage
Phone

Public Storage

3

Bothell, WA · 9000 Northeast Bothell Way

Self-Storage
Phone

A Secure Midway Storage

3

Tonasket, WA · 132 Clarkson Mill Road

Self-Storage
Phone

Broadmoor Storage Solutions

3

Pasco, WA · 9335 Sandifur Parkway

Self-Storage
Phone

Skagit Self Storage

3

WA

Self-Storage
Phone

StorQuest

3

WA · 1155 Lincoln Street

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