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

EZ Storage

2

Sterling Heights, MI · 33260 Van Dyke Avenue

Self-Storage
Phone Email

Extra Space Storage

2

MI · 3512 South Martin Luther King Jr Boulevard

Self-Storage
Phone

Simply Self Storage

2

Clinton Township, MI · 20722 Hall Road

Self-Storage
Phone

Harbor Park Self Storage

2

Harbor Springs, MI · 3389 M 119

Self-Storage
Phone

Enterprise Park RV & Boat Storage

2

Melvindale, MI · 23900 Outer Drive West

Self-Storage
Phone Email

Friendly RV Outdoor Storage

2

Sterling Heights, MI · 33400 Maple Lane Drive

Self-Storage
Phone Email

Public Storage

2

Linden, MI · 15123 South Linden Road

Self-Storage
Phone

Guardian Storage

2

West Branch, MI · 1797 South 1st Street

Self-Storage
Phone

RDL Self Storage

2

MI · 408-B South Nine Mound Road

Self-Storage
Phone

Public Storage

2

Sterling Heights, MI · 6263 18 1/2 Mile Road

Self-Storage
Phone Email

Compass Self Storage

2

Fraser, MI · 32968 Groesbeck Highway

Self-Storage
Phone

Dundee Storage

2

Dundee, MI · 755 Irish Road

Self-Storage
Phone

Public Storage

2

Sterling Heights, MI · 36260 Van Dyke Avenue

Self-Storage
Phone Email

ClearHome Self Storage

2

Shelby Township, MI · 6625 23 Mile Road

Self-Storage
Phone

Paully Road Storage

2

Cheboygan, MI · 9990 North Straits Highway

Self-Storage
Phone Email

Northland Self Storage

2

Alanson, MI · 7340 M-68

Self-Storage
Phone

Conway Storage

2

Conway, MI · 5040 Rosada Street

Self-Storage
Phone Email

Lake Macatawa Storage

2

Holland, MI · 500 Douglas Avenue

Self-Storage
Phone

Public Storage

2

Fraser, MI · 31505 Groesbeck Highway

Self-Storage
Phone Email

Public Storage

2

Fraser, MI · 32775 Groesbeck Highway

Self-Storage
Phone Email

Ford River Storage

2

Escanaba, MI · 3929 M 35

Self-Storage
Phone

U-Haul Moving and Storage

2

Atlantic Mine, MI · 46705 M 26

Self-Storage
Phone

My Space

2

MI · 5814 South Pennsylvania Avenue

Self-Storage
Phone

Storage Sense

2

Romulus, MI · 6535 Middlebelt Road

Self-Storage
Phone

Stor-Your-Stuf

2

Leonard, MI · 557 Rochester Road

Self-Storage
Phone

U-Haul

2

Byron Center, MI · 701 68th Street Southwest

Self-Storage
Phone

All Aboard Boat Storage

2

Cheboygan, MI · 1131 East State Street

Self-Storage
Phone

Huron Storage

2

Cheboygan, MI · 1060 South Huron Street

Self-Storage
Phone

Sports & RV Storage

2

West Branch, MI · 2101 South M-33

Self-Storage
Phone

West Branch Downtown Storage

2

West Branch, MI · 136 South 5th Street

Self-Storage
Phone

Countryside Storage

2

West Branch, MI · 1455 East M-55

Self-Storage
Phone

Sunrise Storage

2

Alpena, MI · 4241 US 23 North

Self-Storage
Phone

U Stor Mini Storage

2

Alpena, MI · 1947 M-32 West

Self-Storage
Phone

Great Lakes Security Storage

2

Alpena, MI · 3192 US 23 South

Self-Storage
Phone

Ossineke Mini Storage

2

Ossineke, MI · 13012 US 23 South

Self-Storage
Phone

Posen Storage

2

Posen, MI · 10799 Michigan Avenue

Self-Storage
Phone

PPM Storage

2

Gaylord, MI · 212 Fairview Road

Self-Storage
Phone

APS Mini Warehouse

2

Gaylord, MI · 112 East 6th Street

Self-Storage
Phone

Cutting Edge Storage

2

Gaylord, MI · 711 South Wisconsin Avenue

Self-Storage
Phone

ODS Storage

2

Gaylord, MI · 200 Sides Drive

Self-Storage
Phone

Ripley Mini Storage

2

Alpena, MI · 140 South Ripley Street

Self-Storage
Phone

West State Street Storage

2

Cheboygan, MI · 740 West State Street

Self-Storage
Phone

Brandt's Sport Center

2

Cheboygan, MI · 6530 North M-33 Highway

Self-Storage
Phone

Seven Lakes Storage

2

National City, MI · 3488 Indian Lake Road

Self-Storage
Phone

Rogers City Mini-Storage

2

Rogers City, MI · 1311 Cedar Street

Self-Storage
Phone

A+ Storage

2

Croswell, MI · 5178 Peck Road

Self-Storage
Phone

Kenosha Self Storage

2

MI

Self-Storage
Phone

A-Z Storage

2

Menominee, MI · 3921 10th Street

Self-Storage
Phone

Secure Storage

2

Menominee, MI · 3808 10th Street

Self-Storage
Phone

Browns Osa Self Storage

2

Sault Ste Marie, MI · 7445 South M-129

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