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

ReadySpaces

2

South Gate, CA · 5625 Firestone Boulevard

Self-Storage
Phone

Extra Space Storage

2

Roseville, CA · 100 Junction Boulevard

Self-Storage
Phone

Security Public Storage

2

San Francisco, CA · 43 Page Street

Self-Storage
Phone

Central Self Storage

2

CA · 3555 Stanley Boulevard

Self-Storage
Phone

Foothill Mini Storage - 50% off

2

Cameron Park, CA · 3445 Coach Lane

Self-Storage
Phone

Extra Space Storage

2

San Francisco, CA · 2501 Cesar Chavez Street

Self-Storage
Phone

Lock It Up Self Storage

2

CA · 220 West Ahwanee Avenue

Self-Storage
Phone

Broadway Burlingame Self Storage

2

CA · 1070 Broadway

Self-Storage
Phone

Security Public Storage

2

Vacaville, CA · 2400 East Monte Vista Avenue

Self-Storage
Phone

Chico Mini Storage

2

Chico, CA · 3155 Cohasset Road

Self-Storage
Phone

Extra Space Storage

2

Elk Grove, CA · 8960 Calvine Road

Self-Storage
Phone

Budget Self Storage

2

Turlock, CA · 3080 North Golden State Boulevard

Self-Storage
Phone

5A Rent-A-Space

2

Foster City, CA · 1221 East Hillsdale Boulevard

Self-Storage
Phone

Westside Collector Car Storage

3

Culver City, CA · 6804 Centinela Ave

Self-Storage
Email

Butterfield Ranch Self Storage

2

CA

Self-Storage
Phone

Browns Valley Storage

2

CA

Self-Storage
Phone

Westside Storage

2

CA

Self-Storage
Phone

Pacific Storage

2

Fresno, CA · 4201 West San Jose Avenue

Self-Storage
Phone

Shield Storage - 2800 E. Pacheco Blvd

2

Los Banos, CA · 2800 East Pacheco Boulevard

Self-Storage
Phone

San Felipe Storage

2

Hollister, CA · 1571 San Felipe Road

Self-Storage
Phone

Showgrounds Self Storage

2

Santa Barbara, CA · 3650 Calle Real

Self-Storage
Phone

Dixon's Goleta Self Storage

2

Goleta, CA · 7760 Hollister Avenue

Self-Storage
Phone

Hillcrest Mini Storage

2

Hollister, CA · 894 Industrial Drive

Self-Storage
Phone

Price Self Storage

2

Los Angeles, CA · 3430 La Brea Avenue

Self-Storage
Phone

Esparza's Containers

2

CA

Self-Storage
Phone

First Street Self Storage

2

El Cajon, CA · 1228 North 1st Street

Self-Storage
Phone

Neighbor Self Storage

2

Rancho Cucamonga, CA · 8200 Haven Avenue

Self-Storage
Phone

A Storage Place

2

Riverside, CA · 6289 Palm Avenue

Self-Storage
Phone

Trojan Storage

2

Rancho Cucamonga, CA · 8866 Utica Avenue

Self-Storage
Phone

AA New Storage

2 🌐 Multi-Vertical

Costa Mesa, CA · 1741 Whittier Avenue

Self-Storage
Phone

Public Storage

2

Ontario, CA · 2249 Grove Ave

Self-Storage
⚠️ Phone

Storage Park

2

Downey, CA · 10050 Imperial Highway

Self-Storage
Phone

Extra Space Storage

2

Burbank, CA · 175 West Verdugo Avenue

Self-Storage
Phone

Mountain Storage

2

Frazier Park, CA · 3100 Mount Pinos Way

Self-Storage
Phone

StorQuest

2

Jamul, CA · 3030 Jefferson Road

Self-Storage
Phone

Public Storage

2

San Francisco, CA · 2090 Evans Avenue

Self-Storage
Phone

HWY 88 Self Storage

2

Lockeford, CA · 12941 Blossom Court

Self-Storage
Phone

Berkeley Self Storage

2

CA

Self-Storage
Phone

Danville Self Storage

2

Danville, CA · 3550 Camino Tassajara

Self-Storage
Phone

Budget Mini Storage

2

CA

Self-Storage
Phone

CubeSmart

2

CA

Self-Storage
⚠️ Phone

Coastside Self Storage

2

CA · 155 Stanford Avenue

Self-Storage
Phone

Ellis Storage

2

CA · 3719 Tully Road

Self-Storage
Phone

Neighbor Self Storage

2

Daly City, CA · 331 Park Plaza Drive

Self-Storage
Phone

Neighbor Self Storage

2

San Rafael, CA · 1001 Cresta Way

Self-Storage
Phone

Shield Storage - 20828 Longeway Road

2

Sonora, CA · 20828 Longeway Road

Self-Storage
Phone

Shield Storage - 12906 Loma Rica Dr

2

Grass Valley, CA · 12906 Loma Rica Drive

Self-Storage
Phone

Old Barn Self Storage

2

Grass Valley, CA · 175 Springhill Drive

Self-Storage
Phone

Placerville Self Storage

2

Placerville, CA · 1066 Locust Avenue

Self-Storage
Phone

Shield Storage - 8240 Folsom Blvd

2

Sacramento, CA · 8240 Folsom Boulevard

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