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

Extra Space Storage

3

Irvine, CA · 2965 Warner Avenue

Self-Storage

Extra Space Storage

3

Las Vegas, NV · 9712 West Maule Avenue

Self-Storage

Extra Space Storage

3

Sacramento, CA · 1353 Florin Road

Self-Storage

Westpark Storage

3

CA · 4351 Westpark Drive

Self-Storage

Extra Space Storage

3

CA · 1280 Rollins Road

Self-Storage

Security First Self Storage

3

San Jose, CA · 586 Stockton Avenue

Self-Storage

Casa de Mini Storage

3

San Jose, CA · 1445 West San Carlos Street

Self-Storage

Extra Space Storage

3

CA · 1700 Egbert Avenue

Self-Storage

Bud's Mini Storage

3

CA · 1180 5th Street

Self-Storage

Central Self Storage

3

San Jose, CA · 1020 Spring Street

Self-Storage

Bay Area Self-Storage

3

San Jose, CA · 1140 Bird Avenue

Self-Storage

JJ's Storage

3

Redwood City, CA · 1715 East Bayshore Road

Self-Storage

Prime Storage

3

Fort Collins, CO · 2120 Midpoint Drive

Self-Storage
Phone Email

Wellington Toy Storage

3

CO · 4000 Washington Avenue

Self-Storage
Phone Email

Catch All Mini Storage

3

CO · 750 14th Street Southeast

Self-Storage
Phone Email

Bargain Storage

3

CO · 1450 Valency Drive

Self-Storage
Phone

Storage Sense

3

CO · 215 West 29th Street

Self-Storage

Just Store It! Self Storage

3

CO · 1640 Riverside Avenue

Self-Storage

Stow It Self Storage

3

Fort Collins, CO · 1630 Riverside Avenue

Self-Storage

U-Haul

3

Aurora, CO · 15250 East 40th Avenue

Self-Storage
Phone Email

Prime Storage

3

Centennial, CO · 20210 East Smoky Hill Road

Self-Storage
Phone Email

Vault Storage Units

3

Fort Collins, CO · 3021 West Prospect Road

Self-Storage
Phone

CubeSmart

3

Arvada, CO · 9839 West 60th Avenue

Self-Storage

Extra Space Storage

3

CO · 664 Thornton Parkway

Self-Storage

CubeSmart

3

CO · 15413 East 18th Avenue

Self-Storage

Erie Storage

3

Erie, CO · 2831 Bonanza Drive

Self-Storage

Stor-n-Lock Self Storage

3

CO · 2103 Joseph Allen Drive

Self-Storage

Extra Space Storage

3

Loveland, CO · 120 West 43rd Street

Self-Storage

Extra Space Storage

3

Wilmington, DE · 3420 Kirkwood Highway

Self-Storage

CubeSmart

3

North Miami, FL · 1890 Northeast 123rd Street

Self-Storage

Extra Space Storage

3

Lake Worth, FL · 5219 Aquarius Boulevard

Self-Storage

Vero Easy Storage

3

Vero Beach, FL · 4870 20th Street

Self-Storage

Extra Space Storage

3

Vero Beach, FL · 2380 47th Street

Self-Storage

Extra Space Storage

3

Pearl City, HI · 98-710 Kuahao Place

Self-Storage

Extra Space Storage

3

Indian Land, SC · 8259 Charlotte Highway

Self-Storage

Prime Storage

3

Spartanburg, SC · 240 Cedar Springs Road

Self-Storage
Phone Email

Extra Space Storage

3

Lexington, SC · 748 West Main Street

Self-Storage

Extra Space Storage

3

GA · 2141 Powers Ferry Road Southeast

Self-Storage

Morningstar Storage

3

GA · 1795 Peachtree Road Northeast

Self-Storage
Phone Email

Extra Space Storage

3

GA · 1490 Terrell Mill Road Southeast

Self-Storage

Extra Space Storage

3

GA · 340 Franklin Road

Self-Storage

U-Haul Moving & Storage at Peters St

3

Atlanta, GA · 300 Peters Street Southwest

Self-Storage
Phone Email

Extra Space Storage

3

GA · 1125 Roberts Boulevard Northwest

Self-Storage

SpaceMax Storage

3

Greenville, SC · 305 McAlister Road

Self-Storage

Bee Safe Storage

3

Simpsonville, SC · 306 Harrison Bridge Road

Self-Storage

Extra Space Storage

3

Columbia, SC · 441 Clemson Road

Self-Storage

POM Self Storage

3

Greer, SC · 207 South Buncombe Road

Self-Storage
Phone

Bee Safe

3

Columbia, SC · 1214 Longreen Parkway

Self-Storage

U-Haul

3

Columbia, SC · 5604 Forest Drive

Self-Storage
Phone Email

Palmetto Self Storage

3

Laurens, SC · 31 Cranes Park Drive

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