49,013 properties
0 phones
0 emails
0 for sale
184 results · Page 1/4
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:

East Bank Storage

1B

Milwaukee, MI · 2025 North Doctor Martin Luther King Junior Drive

Self-Storage
Phone Email

Attic Storage Centers

1B

Corunna, MI · 921 West Corunna Avenue

Self-Storage
Phone Email

Thunder Bay Moving and Storage

1B

Alpena, MI · 817 West Miller Street

Self-Storage
Phone Email

Inland Lakes Storage

1B

Indian River, MI · 5138 South Straits Highway

Self-Storage
Phone Email

Inland Lake Storage

1B

Indian River, MI · 4601 South Straits Highway

Self-Storage
Phone Email

Inland Lakes Storage

1B

Indian River, MI · 4499 Tahoe Lane

Self-Storage
Phone Email

Expressway Storage

1B

Gaylord, MI · 567 Expressway Court

Self-Storage
Phone Email

Knaffle's Mini-Storage

1B

Cheboygan, MI · 12106 Inverness Trail Road

Self-Storage
Phone Email

Alanson Self Storage

1B

Alanson, MI · 7362 Keystone Park Drive

Self-Storage
Phone Email

Up North Storage

1B

Presque Isle, MI · 7825 East Grand Lake Road

Self-Storage
Phone Email

Algoma Self Storage

1B

Wawa, MI · 30 Pinewood Drive

Self-Storage
⚠️ Phone Email

Longview Storage Partners

1B

West Branch, MI · 3249 M-76

Self-Storage
Phone Email

Flex Building Systems

1B

Sterling Heights, MI · 42600 R. Mancini Drive

Self-Storage
⚠️ Phone Email

Action Storage

1B

Gaylord, MI · 133 North Illinois Avenue

Self-Storage
Phone Email

SmartStop Self Storage

1B

Sterling Heights, MI · 42557 Van Dyke Avenue

Self-Storage
Phone Email

Windjammer Marina Storage

1B

Alanson, MI · 8419 South US-31 Highway

Self-Storage
Phone Email

Guardian Fine Art Services

1B

MI

Self-Storage
Phone Email

Vortex Self Storage

1B

Traverse City, MI · 1760 Southpeak Drive

Self-Storage
Phone Email

Ample Storage LLC

1B

Alanson, MI · 7319 Keystone Park Drive

Self-Storage
Phone Email

Record Nations

1B

Holland, MI · 257 West Lakewood Boulevard

Self-Storage
Phone Email

Legacy Mini Storage

1B

MI

Self-Storage
Phone Email

Devon Self-Storage

1B

Holland, MI · 257 West Lakewood Boulevard

Self-Storage
Phone Email

Monroe Self Storage

2

Monroe, MI · 15441 S Telegraph Rd

Self-Storage
Phone

Lock Tite Storage

2

Flat Rock, MI · 14701 Telegraph Rd

Self-Storage
Phone

Airport & Grand River Self Storage

2

MI · 4400 Millwood Road

Self-Storage
Phone

All-Star Storage of Newport

2

Newport, MI · 8800 North Telegraph Road

Self-Storage
Phone

Expert Storage Solutions

2

St. Clair, MI · 4743 Gratiot Avenue

Self-Storage
Phone

Warren RV Storage

2

Warren, MI · 6900 East 14 Mile Road

Self-Storage
Phone

Sherman Self Storage

2

Muskegon, MI · 1054 West Sherman Boulevard

Self-Storage
Phone Email

Storage Sense - Eastpointe

2

Eastpointe, MI · 21500 North Gratiot Avenue

Self-Storage
Phone

Creekside Storage Suites

2

Grand Rapids, MI · 6535 Creekside View Drive

Self-Storage
Phone

Country Storage

2

Northville, MI · 58000 8 Mile Road

Self-Storage
Phone

American Storage USA

2

Rogers City, MI · 278 Wenonah Drive

Self-Storage
Phone Email

Patchwood Plaza

2

Hillman, MI · 14797 State Street

Self-Storage
Phone

Lock and Roll Storage

2

Alger, MI · 7878 Maple Ridge Road

Self-Storage
Phone

American Storage USA

2

Indian River, MI · 5584 Commerce Boulevard

Self-Storage
Phone Email

American Storage USA

2

Onaway, MI · 3555 Maple Street

Self-Storage
Phone Email

Gaylord Storage

2

Gaylord, MI · 201 Fairview Road

Self-Storage
Phone

Conway Storage

2

Petoskey, MI · 2020 Fochtman Industrial Drive

Self-Storage
Phone Email

Michigan Natural Storage

2

Holland, MI · 449 Howard Avenue

Self-Storage
Phone

Eagle Park Mini-Storage

2

National City, MI · 3391 Plank Road

Self-Storage
Phone Email

Lake Michigan Self Storage

2

MI · 8454 Lake Michigan Dr, Allendale, MI 49401, USA

Self-Storage
Phone Email

Lake Michigan Self Storage

2

Lakeview, MI · 8797 Tamarack Road

Self-Storage
Phone Email

Lake Michigan Self Storage

2

Plainwell, MI · 510 10th Street

Self-Storage
Phone Email

North Greenville Self Storage

2

Greenville, MI · 6910 South Greenville Road

Self-Storage
Phone

Flat River Storage

2

Greenville, MI · 12875 Old 14 Mile Road Northeast

Self-Storage
Phone

U-Haul

2

Escanaba, MI · 801 North Lincoln Road

Self-Storage
Phone Email

Downtown Self-Storage Co

2

Detroit, MI · 1551 Church Street

Self-Storage
Phone

WI Self Storage Appleton

2

Appleton, MI · 1117 West Washington Street

Self-Storage
Phone

CubeSmart

2

Ann Arbor, MI · 1901 East Ellsworth Road

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