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

Public Storage

3

CA · 99 South Van Ness Avenue

Self-Storage
Phone

Ace Mini Storage

3

Redding, CA · 6831 Eastside 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

Extra Space Storage

3

Santa Clara, CA · 1700 De La Cruz Boulevard

Self-Storage
Phone Email

StorQuest

3

CA · 2227 San Pablo Avenue

Self-Storage
Phone

Central Self Storage

3

CA · 1913 Bay Street

Self-Storage
Phone

Public Storage

3

Sunnyvale, CA · 1096 North Fair Oaks Avenue

Self-Storage
Phone

Public Storage

3

CA · 1318 East 12th Street

Self-Storage
Phone

Extra Space Storage

3

CA

Self-Storage

Extra Space Storage

3

CA

Self-Storage

Central Self Storage

3

Rohnert Park, CA · 6100 State Farm Drive

Self-Storage
Phone

Extra Space Storage

3

CA · 3406 Hollis Street

Self-Storage
Phone

Extra Space Storage

3

Livermore, CA · 5888 Northfront Road

Self-Storage
Phone

Public Storage

3

CA

Self-Storage

U-Haul

3

Vacaville, CA · 2221 East Monte Vista Avenue

Self-Storage
Phone

Public Storage

3

Sacramento, CA · 8250 East Stockton Boulevard

Self-Storage
Phone

A-1 Self Storage

3

San Jose, CA · 990 North 10th Street

Self-Storage
Phone

Central U Storage

3

San Jose, CA · 1760 Junction Avenue

Self-Storage
Phone

Alum Rock Self Storage

3

San Jose, CA · 2487 Alum Rock Avenue

Self-Storage
Phone

Trojan Storage

3

San Jose, CA · 1025 Knox Avenue

Self-Storage
Phone

SecurCare Self Storage

3

Riverbank, CA · 2536 Patterson Road

Self-Storage
Phone Email

Public Storage

3

Sunnyvale, CA · 620 East Arques Avenue

Self-Storage
Phone

Public Storage

3

San Jose, CA · 2380 Quimby Road

Self-Storage
Phone

4 All Seasons Self Storage

3

Susanville, CA · 477-655 Grove Street

Self-Storage
Phone

StoragePro of San Jose

3

San Jose, CA · 601 North King Road

Self-Storage
Phone

Stow-A-Way Mini Storage

3

San Rafael, CA · 616 Canal Street

Self-Storage
Phone

A-1 Self Storage

3

San Jose, CA · 2900 Monterey Road

Self-Storage
Phone

Public Storage

3

San Leandro, CA · 15285 Hesperian Boulevard

Self-Storage
Phone

A Friendly Storage Place

3

San Rafael, CA · 14 Front Street

Self-Storage
Phone

EZ Storage

3

Sebastopol, CA · 6970 Hutchins Avenue

Self-Storage
Phone

Public Storage

3

San Jose, CA · 925 Felipe Avenue

Self-Storage
Phone

Public Storage

3

San Carlos, CA · 375 Shoreway Road

Self-Storage
Phone

Public Storage

3

San Jose, CA · 1685 Aborn Road

Self-Storage
Phone

Public Storage

3

San Jose, CA · 3900 Vistapark Drive

Self-Storage
Phone

McKee Road Mini Storage

3

San Jose, CA · 2801 McKee Road

Self-Storage
Phone

Valley Self Storage

3

CA · 3006 Gardella Plaza

Self-Storage
Phone

Public Storage

3

Newark, CA · 38290 Cedar Boulevard

Self-Storage
Phone

Landing Court RV Storage

3

CA

Self-Storage

Saf Keep Storage

3

CA · 2001 Faria Preserve Parkway

Self-Storage
Phone

Public Storage

3

Redwood City, CA · 1893 East Bayshore Road

Self-Storage
Phone

Ellis Self Storage

3

Turlock, CA · 3650 West Taylor Road

Self-Storage
Phone Email

7th Street Self Storage

3

Chico, CA · 1228 West 7th Street

Self-Storage
Phone Email

Esplanade Mini Storage

3

Chico, CA · 2904 Esplanade

Self-Storage
Phone

Bay Rock Storage

3

CA · 985 Montague Expressway

Self-Storage
Phone

Colusa Self Storage

3

Colusa, CA · 3113 Wilson Avenue

Self-Storage
Phone

Eaton Road Storage

3

CA

Self-Storage

Bay Area Storage

3

San Mateo, CA · 1150 19th Avenue

Self-Storage
Phone

Available Self Storage

3

Fremont, CA · 37200 Post Street

Self-Storage
Phone

CubeSmart

3

CA

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