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

U-Haul

1B

Redwood City, CA · 2200 El Camino Real

Self-Storage
Phone Email

Peninsula Storage Center

1B

Mountain View, CA · 2409 Leghorn Street

Self-Storage
Phone Email

StorageMart

1B

Oakland, CA · 2450 Mandela Parkway

Self-Storage
Phone Email

A-1 Self Storage

1B

San Jose, CA · 1701 Senter Road

Self-Storage
Phone Email

Public Storage

1B 🔥 MOTIVATED

Petaluma, CA · 2557 Petaluma Boulevard South

Self-Storage
Phone Email

Central San Rafael Storage

1B

San Rafael, CA · 3105 Kerner Boulevard

Self-Storage
Phone Email

Public Storage

1B 🔥 MOTIVATED

Hayward, CA · 2525 Whipple Road

Self-Storage
Phone Email

Lockaway Storage

1B

Castro Valley, CA · 8555 Dublin Canyon Road

Self-Storage
Phone Email

StoragePRO

1B

Fairfield, CA · 475 Lopes Road

Self-Storage
Phone Email

Public Storage

1B 🔥 MOTIVATED

Vacaville, CA · 5920 Cherry Glen Road

Self-Storage
Phone Email

Public Storage

1B 🔥 MOTIVATED

Milpitas, CA · 1080 Pecten Court

Self-Storage
Phone Email

Prime Storage

1B

CA · 6025 Park Drive

Self-Storage
⚠️ Phone Email

Another Attic Self Storage

1B

Red Bluff, CA · 550 Antelope Boulevard

Self-Storage
Phone Email

A-1 Self Storage

1B

Oakland, CA · 4356 Coliseum Way

Self-Storage
Phone Email

Public Storage

1B 🔥 MOTIVATED

Redwood City, CA · 1498 Oddstad Drive

Self-Storage
Phone Email

California Mini Storage

1B

San Francisco, CA · 111 Pennsylvania Avenue

Self-Storage
Phone Email

Storland Self Storage

1B

Tulare, CA · 1766 East Foster Drive

Self-Storage
Phone Email

Storage West

1B

Fullerton, CA · 4200 South Harbor Boulevard

Self-Storage
Phone Email

Life Storage

1B

Cerritos, CA · 17900 Crusader Avenue

Self-Storage
Phone Email

Simi Lock-Up Self Storage

1B

Simi Valley, CA · 4495 Industrial Street

Self-Storage
Phone Email

The Shed

1B

Shafter, CA · 569 North American Street

Self-Storage
Phone Email

Collector Car Vault

1B

Santa Paula, CA · 18201 East Telegraph Road

Self-Storage
Phone Email

Storewell Self Storage

1B

Spring Valley, CA · 11852 Campo Road

Self-Storage
Phone Email

Presidio Wine Bunkers

1B

San Francisco, CA · 1430 Compton Road

Self-Storage
Phone Email

American Canyon Storage LLC

1B

American Canyon, CA · 2494 Green Island Road

Self-Storage
Phone Email

Merced Ground Level Storage

1B

Merced, CA · 463 North Arboleda Drive

Self-Storage
Phone Email

A-1 Upton Storage

1B

Mount Shasta, CA · 122 Upton Road

Self-Storage
Phone Email

Marin Self Storage

1B

CA · 2145 Redwood Highway

Self-Storage
Phone Email

Nord Avenue Mini Storage

1B

Chico, CA · 1424 Nord Avenue

Self-Storage
Phone Email

East & 32 Mini Storage

1B

Chico, CA · 2553 Highway 32

Self-Storage
Phone Email

Honey Run Self Storage

1B

Chico, CA · 1909 Doctor Martin Luther King Junior Parkway

Self-Storage
Phone Email

Interstate Mini Storage

1B

CA

Self-Storage
Phone Email

Public Storage

1B 🔥 MOTIVATED

CA

Self-Storage
Phone Email

StaxUP Storage

1B

CA

Self-Storage
Phone Email

Saf Keep Storage

1B

CA

Self-Storage
⚠️ Phone Email

Conco Aviation

1B

CA

Self-Storage
Phone Email

Arco's Self Storage

1B

CA

Self-Storage
Phone Email

Prestige Recreational Storage

1B

CA

Self-Storage
Phone Email

City View Storage

1B

CA

Self-Storage
Phone Email

Stead RV and Boat Storage

1B

CA

Self-Storage
Phone Email

North Valley Self Storage

1B

CA

Self-Storage
Phone Email

Rainbow Self-Storage

1B

CA

Self-Storage
Phone Email

CSI Mini Storage

1B

CA

Self-Storage
Phone Email

West Coast Self-Storage

2

Salinas, CA · 1105 North Main Street

Self-Storage
Phone

State Street Storage

2

Santa Barbara, CA · 4001 State Street

Self-Storage
Phone

Encinitas Self Storage

2

Encinitas, CA · 911 Encinitas Boulevard

Self-Storage
Phone

Jamacha Point Self Storage

2

Spring Valley, CA · 2550 Folex Way

Self-Storage
Phone

National/54 Self Storage

2

National City, CA · 132 West 33rd Street

Self-Storage
Phone

Olivenhain Self Storage

2

Encinitas, CA · 1605 Olivenhain Road

Self-Storage
Phone

Otay Crossing Self Storage

2

San Diego, CA · 2098 Harvest Road

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