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

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

Shield Storage

2

Boulder City, NV · 690 Yucca Street

Self-Storage
Phone

Shield Storage

2

Las Vegas, NV · 4350 North Jones Boulevard

Self-Storage
Phone

Southern Highlands Self Storage

2

Las Vegas, NV · 3001 Robert Trent Jones Lane

Self-Storage
Phone

Shield Storage

2

North Las Vegas, NV · 4430 Simmons Street

Self-Storage
Phone

Shield Storage

2

North Las Vegas, NV · 4680 West Craig Road

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

SmartStop Self Storage

2

Las Vegas, NV · 6888 N Hualapai Way

Self-Storage
Phone

Golden State Storage - Blue Diamond

2

Las Vegas, NV · 9090 South Grand Canyon Drive

Self-Storage
Phone

Dollar Self Storage

2

Henderson, NV · 1475 American Pacific Drive

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

Red Rock Mega Storage

2

Reno, NV · 8805 Red Rock Road

Self-Storage
⚠️ Phone

KS Self Storage

2

Reno, NV · 70 Surge Street

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

Shield Storage - 15045 Camage Ave

2

Sonora, CA · 15045 Camage Avenue

Self-Storage
Phone

Beamer Street Storage

2

Woodland, CA · 1572 East Beamer Street

Self-Storage
Phone

Yuba City 99 Self Storage

2

Yuba City, CA · 1268 Stewart Road

Self-Storage
Phone

Advanced Mini Storage 2 – Murray

2

Stockton, CA · 7739 Murray Drive

Self-Storage
Phone

Shield Storage

2

Sparks, NV · 80 Menezes Way

Self-Storage
Phone

Public Storage

2

CA · 509 East Hamilton Avenue

Self-Storage
Phone

SOMA Self Storage

2

San Francisco, CA · 1475 Mission Street

Self-Storage
Phone

Brokaw Self Storage

2

San Jose, CA · 445 East Brokaw Road

Self-Storage
Phone

ABC Self Storage

2

CA · 2496 Wyandotte Street

Self-Storage
Phone

Trojan Storage

2

Elk Grove, CA · 9099 Union Park Way

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