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

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

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

Fast Eddie's

2

Lansing, MI · 6939 South Cedar Street

Car Washes
Phone

Mr. Bubble Auto Spa

2

MI · 3265 South Grove Street

Car Washes
Phone

Bob & Kay’s Auto Wash

2

Kalamazoo, MI · 5566 Gull Road

Car Washes
Phone Email

Wash World

2

Flint, MI · 2109 West Hill Road

Car Washes
Phone

Don's Done Rite Auto Wash

2

Berkley, MI · 3563 West 12 Mile Road

Car Washes
Phone

Ace Car Wash - Troy

2

Troy, MI · 2886 East Maple Road

Car Washes
Phone

Dearborn Handwash & Detail

2

Dearborn, MI · 4892 Greenfield Road

Car Washes
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