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

Extra Space Storage

3

CA · 17575 South Western Avenue

Self-Storage
Phone

Extra Space Storage

3

Henderson, NV · 3610 Amigo Street

Self-Storage
Phone Email

SmartStop Self Storage

3

Huntington Beach, CA · 7611 Talbert Avenue

Self-Storage
Phone

Towne Storage

3

Las Vegas, NV · 7411 West Charleston Boulevard

Self-Storage
Phone Email

Public Storage

3

San Jose, CA · 195 Tully Road

Self-Storage
Phone

Devon Self Storage

3

Sunnyvale, CA · 818 West El Camino Real

Self-Storage
Phone

Life Storage

3

Sacramento, CA · 3800 Bayou Way

Self-Storage
Phone

Extra Space Storage

3

San Ramon, CA · 9180 Alcosta Boulevard

Self-Storage
Phone

Public Storage

3

Sacramento, CA · 8959 Pocket Road

Self-Storage
Phone

Public Storage

3

Sacramento, CA · 4200 Northgate Boulevard

Self-Storage
Phone

SmartStop Self Storage

3

CA · 1597 Market Street

Self-Storage
Phone

Bryant Homeless Storage

3

CA · 680 Bryant Street

Self-Storage
Phone

Public Storage

3

CA · 2590 San Ramon Valley Boulevard

Self-Storage
Phone

Statewide Self Storage

3

Antelope, CA · 7646 Walerga Road

Self-Storage
Phone

Life Storage

3

Antelope, CA · 8135 Watt Avenue

Self-Storage
Phone Email

First American Self Storage

3

Antelope, CA · 2928 Scotland Drive

Self-Storage
Phone

Derrel's Mini Storage

3

North Highlands, CA · 3505 Elkhorn Boulevard

Self-Storage
Phone Email

Antelope Self Storage

3

Sacramento, CA · 5754 Antelope Road

Self-Storage
Phone

Public Storage

3

Citrus Heights, CA · 6380 Tupelo Drive

Self-Storage
Phone

Public Storage

3

Sacramento, CA · 7427 Roseville Road

Self-Storage
Phone

Extra Space Storage

3

Sacramento, CA · 7345 Roseville Road

Self-Storage
Phone

Midway Storage Rental AC

3

American Canyon, CA · 4561 Hess Road

Self-Storage
Phone

Extra Space Storage

3

San Francisco, CA · 170 Otis Street

Self-Storage
Phone Email

City Storage

3

CA

Self-Storage

AA Storage

3

Ukiah, CA · 830 Waugh Lane

Self-Storage
Phone

Neighbor Self Storage

3

San Francisco, CA · 399 Fremont Street

Self-Storage
Phone Email

CubeSmart

3

Sacramento, CA · 7245 55th Street

Self-Storage
Phone

SmartStop Self Storage

3

Sacramento, CA · 660 Garden Highway

Self-Storage
Phone

Sentry Storage

3

CA · 8666 West Stockton Boulevard

Self-Storage
Phone

StorQuest

3

CA · 4601 Shattuck Avenue

Self-Storage
Phone

Willow Glen Storage

3

San Jose, CA · 2220 Canoas Garden Avenue

Self-Storage
Phone Email

Extra Space Storage

3

Campbell, CA · 241 West Sunnyoaks Avenue

Self-Storage
Phone Email

Public Storage

3

San Jose, CA · 1500 Story Road

Self-Storage
Phone

Bay Area Self Storage

3

Cupertino, CA · 10655 Mary Avenue

Self-Storage
Phone

Grape Avenue Self Storage

3

Sunnyvale, CA · 690 Grape Avenue

Self-Storage
Phone Email

U-Haul

3

McKinleyville, CA · 1500 Anna Sparks Way

Self-Storage
Phone

U-Haul

3

CA

Self-Storage

Sun Valley Stor-It

3

Sun Valley, NV · 5225 Sun Valley Boulevard

Self-Storage
Phone

ReadySpaces

3

San Jose, CA · 205 East Alma Avenue

Self-Storage
Phone Email

Security Public Storage

3

CA · 2071 Camino Ramon

Self-Storage
Phone

Extra Space Storage

3

CA · 300 Deerwood Road

Self-Storage
Phone

Public Storage

3

CA · 1925 San Ramon Valley Boulevard

Self-Storage
Phone

Extra Space Storage

3

Redwood City, CA · 871 Willow Street

Self-Storage
Phone Email

Extra Space Storage

3

San Francisco, CA · 1400 Folsom Street

Self-Storage
Phone Email

Public Storage

3

CA · 99 South Van Ness Avenue

Self-Storage
Phone

Public Storage

3

Reno, NV · 1020 North McCarran Boulevard

Self-Storage
Phone

Ace Mini Storage

3

Redding, CA · 6831 Eastside Road

Self-Storage
Phone Email

Caughlin Ranch Storage

3

Reno, NV · 4495 Pinehaven Road

Self-Storage
Phone Email

Extra Space Storage

3

CA · 2000 Doolittle Drive

Self-Storage
Phone

Extra Space Storage

3

San Jose, CA · 720 North 10th Street

Self-Storage
Phone
← Prev 77 / 127 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