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

SUPREME ONE TOWING, INC.

3

BOLINGBROOK, IL · 269 CREEKSIDE DR

Self-Storage
Phone

TRIPLE D TOWING & RECOVERY LLC

3

PARKFOREST, IL · 55 NORTH STREET 1ST

Self-Storage
Phone Email

REDLINE TOWING, INC.

3

CHICAGO RIDGE, IL · 10103 KITTY AVE

Self-Storage
Phone Email

PLATINUM TOWING SERVICE

3

BELLWOOD, IL · 5020 ST CHARLES RD 1&2

Self-Storage
Phone Email

KUSTOM TRANSPORT

3

MELROSE PARK, IL · 2000 N 15TH AVE

Self-Storage
Phone Email

ASAP TOWING N RECOVERY

3

WESTCHESTER, IL · 9825 W ROOSEVELT RD

Self-Storage
Phone

MARQUEZ SONS TOWING

3

AURORA, IL · 1044 DEARBORN AVE

Self-Storage
Phone

ROKAITIS INDUSTRIES

3

CHICAGO, IL · 3301-3309 W 47TH ST 1ST

Self-Storage
Phone Email

FIVE STAR TOWING AND ROADSIDE

3

STONE PARK, IL · 3907-3911 W LAKE ST

Self-Storage

RABELO TOWING

3

AURORA, IL · 1044 DEARBORN AVE

Self-Storage
Phone

MUNICIPAL TOWING AND RECOVERY INC.

3

CHICAGO, IL · 1832 W WALNUT ST

Self-Storage
Phone Email

OMEGA TOWING SERVICE INC.

3

ELGIN, IL · 290 WILLARD AVE

Self-Storage
Phone

PRIORITY WRECKER SERVICE

3

CHICAGO, IL · 2103-2113 W FULTON ST 1ST

Self-Storage
Phone

ELITE TOWING & RECOVERY INC.

3

LAGRANGE PARK, IL · 825 E 26TH ST

Self-Storage

RHINOS TOWING LLC

3

BENSENVILLE, IL · 909 W IRVING PARK RD

Self-Storage
Phone Email

GABY'S TOWING SERVICE LLC

3

CICERO, IL · 5205 W 25TH PL 2

Self-Storage
Phone Email

AL'S & SONS TOWING LLC

3

MAYWOOD, IL · 1119 W ROOSEVELT RD

Self-Storage
Phone

J & L TOWING SERVICES INC.

3

CHICAGO, IL · 3242-3250 S LAWNDALE AVE 1

Self-Storage
Phone

MAPX1 TOWING & RECOVERY INCORPORATED

3

BROOKFIELD, IL · 8848 47TH ST

Self-Storage

DN N DRTY

3

MCHENRY, IL · 1302 BORDEN ST

Self-Storage
Phone Email

SCHOCK'S TOWING SERVICE, INC.

3

GILBERTS, IL · 221 SOLA DR

Self-Storage
Phone

LIMITLESS TOWING & RECOVERY COMPANY

3

CHICAGO, IL · 1832 W WALNUT ST 1ST

Self-Storage
Phone Email

JONES ROADSIDE ASSISTANCE & TRANSPORT

3

EVERGREEN, IL · 8700 S UTICA AVE

Self-Storage
Phone Email

LEYDEN WINDY CITY TOWING

3

SCHILLER PARK, IL · 9345 BRYON ST

Self-Storage
Phone

AIDEN TOWING

3

LYONS, IL · 8228 47TH ST

Self-Storage
Phone

OFFICIAL TOWING

3

OAK LAWN, IL · 9200 KILPATRICK AVE

Self-Storage
Phone

CJ'S TOWING & RECOVERY

3

CALUMET PARK, IL · 11942 S PAULINA

Self-Storage
Phone

YAFFO TOWING L.L.C.

3

CHICAGO RIDGE, IL · 6633 W 99TH ST

Self-Storage
Phone Email

MAJOR LEAGUE TOWING LLC

3

LANSING, IL · 19208 BURNHAM AVE

Self-Storage
Phone

SPEEDY G TOWING SERVICE, INC

3

SOUTH BARRINGTON, IL · 50 W HIGGINS

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