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

Storage Depot

2

CA · 276 Mount Hermon Road

Self-Storage
Phone

Security Public Storage

2

Fresno, CA · 4420 North Blackstone Avenue

Self-Storage
Phone

Extra Space Storage

2

Goleta, CA · 6640 Discovery Drive

Self-Storage
⚠️ Phone

Santa Barbara Mini Storage

2

Santa Barbara, CA · 190 Wye Road

Self-Storage
Phone

Instant Storage

2

Bakersfield, CA · 3101 State Road

Self-Storage
Phone

SoCal Self Storage

2

Los Angeles, CA · 2240 Sawtelle Boulevard

Self-Storage
Phone

So Cal Self Storage

2

CA · 5900 Hollywood Boulevard

Self-Storage
Phone

Extra Space Storage

2

Simi Valley, CA · 2650 Stearns Street

Self-Storage
Phone

Extra Space Storage

2

Simi Valley, CA · 4690 Industrial Street

Self-Storage
Phone

US Storage Centers

2

Simi Valley, CA · 2073 Royal Avenue

Self-Storage
Phone

SoCal Self Storage

2

Simi Valley, CA · 1225 Cochran Street

Self-Storage
Phone

US Storage Centers

2

CA · 1210 County Road

Self-Storage
Phone

Coronado Mobile Storage

2

Chula Vista, CA · 2555 Main Street

Self-Storage
Phone

McBride's RV Storage

2

Chino, CA · 7231 Kimball Avenue

Self-Storage
Phone

Long Beach Self Storage

2

Long Beach, CA · 1856 Cherry Avenue

Self-Storage
Phone

US Storage Centers

2

Laguna Hills, CA · 27194 Camino Capistrano

Self-Storage
Phone

ReadySpaces

2

South Gate, CA · 5625 Firestone Boulevard

Self-Storage
Phone

Towne Storage - Cactus

2

Las Vegas, NV · 7000 West Cactus Avenue

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

Desert Highlands Mini Storage

2

Sparks, NV · 5900 South Los Altos Parkway

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

E-Z Storage

2

Reno, NV · 240 Doubleback 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

All Secure Self Storage

2

Henderson, CO · 12045 Moline Street

Self-Storage
Phone

Public Storage

2

Aurora, CO · 1710 South Abilene Street

Self-Storage
Phone

Affordable Moving & Storage

2

CO · 1600 South Abilene Street

Self-Storage
Phone Email

Falcon Self Storage

2

Colorado Springs, CO · 7630 Bent Grass Meadow Drive

Self-Storage
Phone Email

South Shields Storage

2

Fort Collins, CO · 3425 South Shields Street

Self-Storage
Phone

All American Mini Storage

2

Denver, CO · 545 Broadway

Self-Storage
Phone Email

StorQuest

2

Aurora, CO · 16650 East Alameda Parkway

Self-Storage
Phone Email

U-Haul

2

Aurora, CO · 750 South Buckley Road

Self-Storage
Phone Email

A Bargain Evans Holly Self Storage

2

Denver, CO · 2170 South Ivanhoe Street

Self-Storage
Phone

A Storage Place

2

Fort Collins, CO · 232 East County Road 30

Self-Storage
Phone

Outdoor Storage

2

Aurora, CO · 17700 East Colfax Avenue

Self-Storage
Phone

128th & Colorado Self Storage

2

CO · 4215 East 128th Avenue

Self-Storage
Phone

Parkside Self Storage

2

Colorado Springs, CO · 5905 North Nevada Avenue

Self-Storage
Phone

Mountain Mini Storage

2

Empire, CO · 499 East Mountain Avenue

Self-Storage
Phone

Gorilla Storage

2

Grand Junction, CO · 3038 I 70 Business Loop

Self-Storage
Phone

Glen Eagle Self Storage

2

Colorado Springs, CO · 13760 Struthers Road

Self-Storage
Phone Email

Red Rocks Self Storage

2

Colorado Springs, CO · 8032 Chardonnay Grove

Self-Storage
Phone Email

SecurCare Self Storage

2

Colorado Springs, CO · 3737 Maizeland Road

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