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

Self Storage of America

2

Grand Junction, CO · 424 South Avenue

Self-Storage
⚠️ Phone

SmartStop Self Storage

2

Lakewood, CO · 12750 West Alameda Parkway

Self-Storage
Phone

Gold Dust Store It

2

Creede, CO · 20402 CO 149

Self-Storage
Phone Email

Sopris Self Storage

2

Carbondale, CO · 1201 Colorado Avenue

Self-Storage
Phone

Extra Space Storage

2

Highlands Ranch, CO · 8569 South Poplar Way

Self-Storage
Phone

Extra Space Storage

2

Claymont, DE · 2105 Philadelphia Pike

Self-Storage
Phone

Sentinel Storage

2

Middletown, DE · 213 East Main Street

Self-Storage
Phone

Sentinel Self Storage - Deepwater, NJ

2

Pennsville, NJ · 376 North Broadway

Self-Storage
Phone

Storage King USA

2

Miami, FL · 16200 Southwest 137th Avenue

Self-Storage
Phone

Discount Mini Storage of Vero Beach

2

Vero Beach, FL · 1803 90th Avenue

Self-Storage
Phone Email

Value Store It

2

Cutler Bay, FL · 10900 Southwest 186th Street

Self-Storage
Phone

Glendale Mini Storage

2

Vero Beach, FL · 900 9th Place

Self-Storage
Phone

LifeStorage

2

Vero Beach, FL · 8485 20th Street

Self-Storage
⚠️ Phone

Attic 60 Self-Storage

2

Vero Beach, FL · 8545 20th Street

Self-Storage
Phone

Riverside Self Storage

2

Vero Beach, FL · 750 16th Street

Self-Storage
Phone

Vero Airport Trade Center

2

Vero Beach, FL · 2501 27th Avenue

Self-Storage
Phone Email

A+ Storage - Lauderhill

2

Lauderhill, FL · 1403 Northwest 40th Avenue

Self-Storage
Phone Email

Renaissance Self Storage

2

Boynton Beach, FL · 1500 Gateway Boulevard

Self-Storage
Phone

Prime Storage

2

West Palm Beach, FL · 422 7th Street

Self-Storage
Phone Email

Snapbox Self-Storage

2

North Miami, FL · 15025 Northeast 18th Avenue

Self-Storage
Phone Email

Public Storage

2

Miami, FL · 5609 Northeast 2nd Court

Self-Storage
Phone Email

Value Store It Self Storage

2

North Miami Beach, FL · 901 North Miami Beach Boulevard

Self-Storage
Phone

The Lock Up

2

FL · 17845 Curry Preserve Drive

Self-Storage
Phone

Public Storage

2

Cutler Bay, FL · 10505 Marlin Road

Self-Storage
Phone Email

Extra Space Storage

2

Miami, FL · 6850 Southwest 81st Terrace

Self-Storage
Phone

StorQuest

2

North Miami Beach, FL · 15555 West Dixie Highway

Self-Storage
Phone Email

Public Storage

2

Miami Beach, FL · 331 69th Street

Self-Storage
Phone Email

Public Storage

2

Miami, FL · 2190 Southwest 8th Street

Self-Storage
Phone Email

Public Storage

2

Miami, FL · 300 Northwest 36th Street

Self-Storage
Phone Email

CubeSmart

2

Ave Maria, FL · 5320 Useppa Drive

Self-Storage
Phone

CubeSmart

2

Boynton Beach, FL · 7358 West Boynton Beach Boulevard

Self-Storage
Phone

Stor-Rite Self Storage

2

Cape Coral, FL · 2555 Northeast Pine Island Road

Self-Storage
Phone

Public Storage

2

Lantana, FL · 4390 Hypoluxo Road

Self-Storage
Phone Email

Public Storage

2

Lake Worth, FL · 7480 South Military Trail

Self-Storage
Phone Email

Extra Space Storage

2

Port Charlotte, FL · 4536 Tamiami Trail

Self-Storage
Phone

Storage King USA

2

Tallahassee, FL · 942 Capital Circle SW

Self-Storage
Phone

Callaway Self Storage

2

Panama City, FL · 315 N Tyndall Pkwy

Self-Storage
Phone

The Lock Up

2

Honolulu, HI · 1901 Kapiolani Boulevard

Self-Storage
Phone

Public Storage

2

Pearl City, HI · 989 Kamehameha Highway

Self-Storage
Phone Email

Public Storage

2

Aiea, HI · 99-819 Iwaena Street

Self-Storage
Phone Email

Public Storage

2

Pearl City, HI · 1200 Kuala Street

Self-Storage
Phone Email

Hawaii Self Storage

2

Pearl City, HI · 98-138 Hila Place

Self-Storage
Phone Email

Public Storage

2

Waipahu, HI · 94-1355 Waipio Uka Street

Self-Storage
Phone Email

Public Storage

2

Waipahu, HI · 94-1128 Ka Uka Boulevard

Self-Storage
Phone Email

StorQuest

2

Waipahu, HI · 94-299 Farrington Highway

Self-Storage
⚠️ Phone Email

SecureSpace Self Storage

2

Waipahu, HI · 94-130 Leokane Street

Self-Storage
Phone

U-Haul

2

FL · 631 Beal Parkway Northwest

Self-Storage
Phone Email

Storage King USA

2

Tallahassee, GA · 942 Capital Circle SW

Self-Storage
Phone

Colonial Self Storage

2

Albany, GA · 1604 Camp Ln

Self-Storage
Phone

CubeSmart

2

Spartanburg, SC · 899 East Main Street

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