49,013 properties
0 phones
0 emails
0 for sale
5,884 results · Page 108/118
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:

Riviera Resort and Marina

3

FL · 2760 Botts Landing Road

Marinas

Shipwreck Motel

3

Fort Myers Beach, FL · 237 Old San Carlos Boulevard

Budget Motels

Sunrise Inn

3

Fort Lauderdale, FL · 4041 North Ocean Boulevard

Budget Motels
Phone

Blue Lagoon

3

Fort Lauderdale, FL · 3801 North Ocean Boulevard

Budget Motels

Galt Villas

3

Fort Lauderdale, FL · 3621 North Ocean Boulevard

Budget Motels

Ocean Breeze

3

Fort Lauderdale, FL · 3811 North Ocean Boulevard

Budget Motels

Sun Deck

3

Fort Lauderdale, FL · 3821 North Ocean Boulevard

Budget Motels

Motel X

3

Miami, FL · 7000 Northwest 27th Avenue

Budget Motels
Phone Email

Everglades Motel

3

Hialeah, FL · 1421 Southeast 9th Avenue

Budget Motels

Lani Kai Island Resort

3

Fort Myers Beach, FL · 1400 Estero Boulevard

Budget Motels
Phone

Lani Kai Bayside

3

Fort Myers Beach, FL · 1400 Estero Boulevard

Budget Motels
Phone

Flamingo Inn

3

Fort Myers Beach, FL · 6030 Estero Boulevard

Budget Motels
Email

Dolphin Inn

3

Fort Myers Beach, FL · 6555 Estero Boulevard

Budget Motels
Email

Immokalee Inn

3

Immokalee, FL · 721 N 15th St

Budget Motels
Email

Warm Mineral Springs Motel

3

North Port, FL · 12597 Tamiami Trail South

Budget Motels
Phone Email

Motel 6 Tallahassee Downtown

3

Tallahassee, FL · 1027 Apalachee Parkway

Budget Motels
Phone

Motel 6 Tallahassee West

3

Tallahassee, FL · 2738 North Monroe Street

Budget Motels
Phone

Anthony on the Beach

3

FL · 1 East 35th Street

Budget Motels
Phone Email

Budget Motel Titusville

3

Titusville, FL · 612 South Washington Avenue

Budget Motels
Phone Email

Apollo Inn

3

Cocoa, FL · 4125 US Highway 1

Budget Motels
Email

Super 8 by Wyndham Kissimmee

3

Kissimmee, FL · 1815 West Vine Street

Budget Motels
Phone Email

Econo Lodge

3

Kissimmee, FL · 2934 Polynesian Isles Boulevard

Budget Motels

Studio 1 Motel

3

Daytona Beach Shores, FL · 1700 South Atlantic Avenue

Budget Motels

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
← Prev 108 / 118 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