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

Motel 6 Moline, IL

3

Moline, IL · 2501 52nd Avenue

Budget Motels
Phone Email

Carlin Villa Motel

3

Carlinville, IL · 18891 Rt. 4 Old Rt. 66

Budget Motels
Phone Email

Cicero Motel

3

Chicago, IL · 4501 South Cicero Avenue

Budget Motels
Phone Email

Super 8 Le Roy

3

Le Roy, IL · 1 Demma Drive

Budget Motels
Phone

Americas Best Value Inn Ullin Mounds

3

Ullin, IL · 128 Cheekwood Lane

Budget Motels
Phone Email

Bel-Air Motel

3

Wood River, IL · 542 West Ferguson Avenue

Budget Motels
Phone Email

Budget Host Inn Gilman

3

Gilman, IL · 723 South Crescent Street

Budget Motels
Phone

Key Motel

3

Alsip, IL · Cicero Avenue

Budget Motels
Phone

Miami Inn & Suites

3

Oak Lawn, IL · 9041 South Cicero Avenue

Budget Motels
Phone Email

Midway Inn & Suites

3

Oak Lawn, IL · 9320 South Cicero Avenue

Budget Motels
Phone Email

Budget Inn Motel

3

Du Quoin, IL · 1266 South Washington Street

Budget Motels
Phone

Loyalty Inn

3

Maryville, IL · 2701 Maryville Road

Budget Motels
Phone

Americas Best Value Inn Fairview Heights/St. Louis East

3

Fairview Heights, IL · 305 Salem Place

Budget Motels
Phone

Americas Best Value Inn Marion, IL

3

IL · 1802 Bittle Place

Budget Motels
Phone Email

Super 8 by Wyndham Gilman

3

Gilman, IL · 1301 South Crescent Street

Budget Motels
Phone Email

Star Way Inn

3

Lansing, IL · 2505 Bernice Road

Budget Motels
Phone

Starlite Motel

3

South Holland, IL · 466 West 162nd Street

Budget Motels
Phone

Motel 6 Joliet, IL - I-80

3

Joliet, IL · 1850 McDonough Street

Budget Motels
Phone

Relax Inn

3

Schiller Park, IL · 3760 Des Plaines River Road

Budget Motels
Phone

Des Plaines Motel

3

Des Plaines, IL · 1322 Rand Road

Budget Motels
Phone

Colonial Lodge Motel

3

IL · 788 Villa Street

Budget Motels
Phone

Americas Best Value Inn & Suites Waukegan Gurnee

3

Waukegan, IL · 411 South Green Bay Road

Budget Motels
Phone Email

Hillcrest Motel

3

Rochelle, IL · 207 Powers Road

Budget Motels
Phone

Motel 6

3

Elk Grove Village, IL · 1000 West Devon Avenue

Budget Motels
Phone

Motel 6 Prospect Heights

3

Prospect Heights, IL · 540 Milwaukee Avenue

Budget Motels
Phone

United Motel

3

Lansing, IL · 17356 Torrence Avenue

Budget Motels
Phone

Luxe Inn

3

Dolton, IL · 1335 East Sibley Boulevard

Budget Motels
Phone Email

Motel 6 Harvey, IL

3

Harvey, IL · 16940 Halsted Street

Budget Motels
Phone

Village Motel

3

Niles, IL · 6871 North Milwaukee Avenue

Budget Motels
Phone

Motel 6 Alsip

3

Alsip, IL · 5150 West 127th Street

Budget Motels
Phone
← Prev 5 / 5
// 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