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

Public Storage

3

Orland Park, IL · 15359 Harlem Avenue

Self-Storage
Phone

Public Storage

3

Des Plaines, IL · 1723 Busse Highway

Self-Storage
Phone

Public Storage

3

Orland Hills, IL · 8901 West 159th Street

Self-Storage
Phone

Extra Space Storage

3

Skokie, IL · 7540 North McCormick Boulevard

Self-Storage
Phone Email

Extra Space Storage

3

Midlothian, IL · 3657 147th Street

Self-Storage
Phone

Extra Space Storage

3

Berwyn, IL · 1301 South Harlem Avenue

Self-Storage
Phone Email

Hammertime Self Storage LLC

3

Belvidete, IL · 2519 US-20

Self-Storage
Phone

StorCo Self Storage

3

Wood River, IL · 1401 Vaughn Road

Self-Storage
Phone

CubeSmart

3

Blue Island, IL · 12400 Western Avenue

Self-Storage
Phone

U-Haul

3

Chicago, IL · 1200 West Fullerton Avenue

Self-Storage
Phone

CubeSmart

3

Chicago, IL · 3637 North Central Avenue

Self-Storage
Phone

Extra Space Storage

3

Alsip, IL · 5253 West 111th Street

Self-Storage
Phone

Red Dot Storage - Harvestone Drive West

3

DeKalb, IL · 202 Harvestore Drive

Self-Storage
Phone

StorageMart

3

Northbrook, IL · 2121 Shermer Road

Self-Storage
Phone

U-Haul

3

Glenwood, IL · 19201 South Halsted Street

Self-Storage
Phone

Extra Space Storage

3

Chicago, IL · 901 West Adams Street

Self-Storage
Phone Email

U-Haul

3

Niles, IL · 7644 North Milwaukee Avenue

Self-Storage
Phone Email

Public Storage

3

Tinley Park, IL · 8201 West 159th Street

Self-Storage
Phone

Extra Space Storage

3

Tinley Park, IL · 8251 West 159th Street

Self-Storage
Phone Email

All Inn Storage

3

East Alton, IL · 978 Airline Dr

Self-Storage
Phone Email

U-Haul

3

Oak Lawn, IL · 8900 South Cicero Avenue

Self-Storage
Phone Email

CubeSmart

3

Maywood, IL · 101 South 1st Avenue

Self-Storage
Phone

The Lock Up

3

Northbrook, IL · 990 Skokie Boulevard

Self-Storage
Phone

The Lock Up

3

Northfield, IL · 800 Frontage Road

Self-Storage
Phone

CubeSmart

3

Bellwood, IL · 2801 Harrison Street

Self-Storage
Phone

Public Storage

3

Chicago Heights, IL · 1505 Western Avenue

Self-Storage
Phone

Pods

3

Phoenix, IL · 15230 Halsted Street

Self-Storage
Phone

iStorage

3

Posen, IL · 14750 Western Avenue

Self-Storage
Phone

U-Haul

3

Markham, IL · 2915 West 159th Street

Self-Storage
Phone

Safeguard Self Storage

3

Arlington Heights, IL · 523 West Algonquin Road

Self-Storage
Phone

Metro Self Storage

3

Deerfield, IL · 2021 Waukegan Road

Self-Storage
Phone

Herscher Mini Storage

3

Herscher, IL · 302 East Myrtle Avenue

Self-Storage
Phone Email

Extra Space Storage

3

Chicago, IL · 1300 North Ashland Avenue

Self-Storage
Phone Email

Extra Space Storage

3

South Holland, IL · 175 West 162nd Street

Self-Storage
Phone

Public Storage

3

Chicago Heights, IL · 20909 Western Avenue

Self-Storage
Phone

Extra Space Storage

3

Glenview, IL · 3701 West Lake Avenue

Self-Storage
Phone

CHICAGOTOWING.COM

3

SKOKIE, IL · 7445 CHANNEL RD 1ST

Self-Storage
Phone Email

Dark Angel Towing & Recovery Inc.

3

CHICAGO, IL · 1025-1031 N PULASKI RD 1

Self-Storage
Phone Email

MOTHER AND SON TOWING CORP.

3

CICERO, IL · 4701 W 26TH

Self-Storage

CHICAGO NORTHWEST TOWING

3

RIVER GROVE, IL · 2643 N HAYMOND

Self-Storage
Phone Email

IMMEDIATE RESPONSE TOWING AND RECOVERY

3

CHICAGO, IL · 4100 W FERDINAND ST 1

Self-Storage
Phone Email

MAGIC CITY TOWING INC.

3

EVANSTON, IL · 2523 OAKTON ST

Self-Storage
Phone

RECOVERY SPECIALIST AGENCY

3

CHICAGO, IL · 4157- 4159 W KINZIE ST

Self-Storage
Phone Email

WRECKMASTERS TOWING SERVICE CORP.

3

CHICAGO, IL · 4710 W AUGUSTA BLVD

Self-Storage
Phone

S & T AUTO

3

CHICAGO, IL · 3325 N KNOX AVE

Self-Storage
Phone Email

CARRY ALL TOWING, INC.

3

MELROSE PARK, IL · 2315 MANNHEIM RD

Self-Storage
Phone

PC TOWING AND RECOVERY LLC

3

CHICAGO RIDGE, IL · 10800 CENTRAL AVE

Self-Storage
Phone Email

AAA MAXIMUM TOWING AND RECOVERY

3

MELROSE PARK, IL · 5300 W LAKE ST

Self-Storage
Phone Email

INDUSTRIAL TOWING AND RECOVERY

3

CHICAGO, IL · 2312-2314 W 63RD ST

Self-Storage
Phone

IN-ROUTE TOWING

3

CICERO, IL · 5701 OGDEN AVE

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