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

Public Storage

2

Niceville, FL · 1850 East John Sims Parkway

Self-Storage
Phone

4th Street Mini-Storage

2

FL

Self-Storage
Phone

Store-It Mini Warehouses

2

FL

Self-Storage
Phone

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

South Beach Storage

3

Miami Beach, FL · 1880 West Avenue

Self-Storage
Phone

Public Storage

3

Aventura, FL · 21288 Biscayne Boulevard

Self-Storage
Phone

Storsafe Self-Storage

3

Miami, FL · 10345 Hammocks Boulevard

Self-Storage
Phone Email

Safeguard Self Storage

3

Miami, FL · 800 West Flagler Street

Self-Storage
Phone

Metro Self Storage

3

FL

Self-Storage

Proposed Self Storage

3

Fort Pierce, FL · 3870 S US-1

Self-Storage
Phone

Self Storage

3

Vero Beach, FL · 445 27th Avenue

Self-Storage
Phone

Extra Space Storage

3

FL · 901 South Congress Avenue

Self-Storage
Phone Email

Extra Storage Space

3

FL · 11301 Bonita Beach Road Southeast

Self-Storage
Phone Email

Midgard Self Storage

3

Key West, FL · 2600 N Roosevelt Blvd

Self-Storage
Phone

Public Storage

3

Sunny Isles Beach, FL · 301 Sunny Isles Boulevard

Self-Storage
Phone

Public Storage

3

Doral, FL · 3900 Northwest 115th Avenue

Self-Storage
Phone

Public Storage

3

Miami Beach, FL · 1301 West Avenue

Self-Storage
Phone

Safeguard Storage

3

FL · 6101 West Commercial Boulevard

Self-Storage
Phone Email

Public Storage

3

FL · Northwest 9th Avenue

Self-Storage
Phone

Safeguard

3

Miami, FL · 7691 Northwest 12th Street

Self-Storage
Phone

A+ Storage

3

Miami, FL · 12200 Southwest 117th Avenue

Self-Storage
Phone

CubeSmart

3

Cutler Bay, FL · 10100 Southwest 216th Street

Self-Storage
Phone Email

Public Storage

3

Doral, FL · 9600 Northwest 40th Street Road

Self-Storage
Phone

Extra Space Storage

3

FL · 10760 Southwest 186th Street

Self-Storage
Phone Email

Public Storage

3

Miami, FL · 8590 Southwest 124th Avenue

Self-Storage
Phone

CubeSmart

3

Aventura, FL · 19500 West Dixie Highway

Self-Storage
Phone Email

Extra Space Storage

3

FL · 910 Southwest 68th Avenue

Self-Storage
Phone Email

Public Storage

3

FL · 3350 Southwest 10th Street

Self-Storage
Phone

The Fortress

3

Miami, FL · 1629 Northeast 1st Avenue

Self-Storage
Phone Email

Big Jim Self Storage

3

Sarasota, FL · 5109 Fruitville Road

Self-Storage
Phone

Extra Space Storage

3

Miami, FL · 490 Northwest 36th Street

Self-Storage
Phone

Extra Space Storage

3

Sarasota, FL · 3265 University Parkway

Self-Storage
Phone

Compass Self Storage

3

Sarasota, FL · 7750 Lockwood Ridge Road

Self-Storage
Phone

Extra Space Storage

3

Miami, FL · 2641 Northeast 186th Terrace

Self-Storage
Phone

Extra Space Storage

3

Plantation, FL · 7795 West Sunrise Boulevard

Self-Storage
Phone Email

Public Storage

3

Hollywood, FL · 910 South Dixie Highway

Self-Storage
Phone

Extra Space Storage

3

Miami, FL · 212 Northeast 26th Street

Self-Storage
Phone

Extra Space Storage

3

Sarasota, FL · 757 Apex Road

Self-Storage
Phone

iStorage

3

Cape Coral, FL · 1521 Del Prado Boulevard North

Self-Storage
Phone Email

Public Storage

3

Miami, FL · 23025 South Dixie Highway

Self-Storage
Phone

Oakdale Storage

3

Crestview, FL · 285 Oakdale Avenue East

Self-Storage
Phone

Tellus Self Storage - Crestview

3

Crestview, FL · 997 Industrial Drive

Self-Storage
Phone

American Self Storage

3

Crestview, FL · 1501 East James Lee Boulevard

Self-Storage
Phone Email

Crestview Mini Storage

3

Crestview, FL · 601 North Ferdon Boulevard

Self-Storage
Phone

Advanced Storage Inc

3

Crestview, FL · 5180 South Ferdon Boulevard

Self-Storage

Southern Self Storage

3

Pensacola, FL · 9311 Pine Forest Road

Self-Storage
Phone

Panama Mini Warehouses

3

Panama City, FL · 1603 West 15th Street

Self-Storage
Phone Email
// 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