49,013 properties
0 phones
0 emails
0 for sale
6,315 results · Page 18/127
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:

Vandalia Self Storage

2

Vandalia, MO · 610 US 54

Self-Storage
Phone

Extra Space Storage

2

Champaign, IL · 2809 Lager Drive

Self-Storage
Phone

Public Storage

2

Chicago, IL · 5643 North Broadway

Self-Storage
Phone Email

Extra Space Storage

2

Naperville, IL · 1950 North Washington Street

Self-Storage
Phone

U-Haul

2

Champaign, IL · 306 East University Avenue

Self-Storage
Phone Email

U-Haul

2

Aurora, IL · 195 South Illinois Route 59

Self-Storage
Phone Email

EZMove Self Storage

2

Union, MO · 1320 West Springfield Avenue

Self-Storage
Phone

Extra Space Storage

2

Saint Louis, MO · 4210 Forest Park Avenue

Self-Storage
Phone

U-Haul

2

Saint Louis, MO · 2101 South Kingshighway Boulevard

Self-Storage
Phone Email

Storage Masters South Shores

2

Decatur, IL · 618 West South Side Drive

Self-Storage
Phone

Haycraft Mini Storage

2

Eldridge, IA · 501 North 9th Avenue

Self-Storage
Phone

Parkway Pointe Mini Storage

2

Springfield, IL · 3108 Great Northern Avenue

Self-Storage
Phone Email

CubeSmart

2

Joliet, IL · 305 South Larkin Avenue

Self-Storage
Phone

Milan Storage

2

Milan, IL · 421 West 1st Avenue

Self-Storage
Phone

CubeSmart

2

Naperville, IL · 2708 Forgue Drive

Self-Storage
Phone

CubeSmart

2

Gary, IN · 855 Taft Street

Self-Storage
Phone

Storage Rentals of America

2

Hebron, IN · 254 South 725 West

Self-Storage
Phone Email

U-Haul

2

Danville, IL · 2531 Georgetown Road

Self-Storage
Phone Email

Four Seasons U Lock

2

Crown Point, IN · 8501 East 109th Avenue

Self-Storage
Phone Email

Extra Space Storage

2

Wheeling, IL · 991 North Milwaukee Avenue

Self-Storage
Phone

Area U Lock

2

Gary, IN · 3721 North Colfax Street

Self-Storage
Phone Email

American General Storage

2

Hampshire, IL · 170 Rowell Road

Self-Storage
Phone Email

Pro Self Storage

2

Wilmette, IL · 3626 Lake Avenue

Self-Storage
Phone Email

Art's High Ridge Self Storage

2

High Ridge, MO · 2737 Cape Town Village Road

Self-Storage
Phone

Extra Space Storage

2

Champaign, IL · 611 West Kenyon Road

Self-Storage
Phone

Extra Space Storage

2

Champaign, IL · 2208 North Market Street

Self-Storage
Phone

Extra Space Storage

2

Urbana, IL · 1710 North Cunningham Avenue

Self-Storage
Phone

Intra-Lock Self Storage

2

Chesterton, IN · 1535 South Calumet Road

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

A Storage

2

DeForest, WI · 4202 Reardon Road

Self-Storage
Phone Email

All-Star Storage of Newport

2

Newport, MI · 8800 North Telegraph Road

Self-Storage
Phone

ABC Kortsch Moving & Storage

2

Milwaukee, WI · 2403 North Maryland Avenue

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

Toy Den Self Storage

2

Manitowish Waters, WI · 5807 US 51 South

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
← Prev 18 / 127 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