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

Outdoors Inn

2

Ponderay, ID

Budget Motels
⚠️ Phone

Gateway Motel

2

Shoshone, ID · 412 North Greenwood Street

Budget Motels
Phone

Caboose Motel

2

MT · 714 9th Street

Budget Motels
Phone

The Aspen Motel

2

Missoula, MT · 3720 Old Montana 200

Budget Motels
Phone

Almo Inn

2

Almo, ID · 3020 Elba-Almo Road

Budget Motels
Phone

Budget Inm

2

Belvidere, IL · 1345 North State Street

Budget Motels
Phone

Motel 6

2

IL · 2431 Old Country Inn Drive

Budget Motels
Phone

Pioneer

2

Springfield, IL · 4321 North Peoria Road

Budget Motels
Phone

Alpine Inn

2

Rockford, IL · 4404 East State Street

Budget Motels
Phone

Quality Lodge

2

Rockford, IL · 4605 East State Street

Budget Motels
Phone

Super 8

2

IL

Budget Motels
Phone Email

Motel 6

2

Carbondale, IL · 700 East Main Street

Budget Motels
Phone

Americas Best Value Inn

2

Belvidere, IL · 1605 North State Street

Budget Motels
Phone

Travel Inn

2

IL · 4850 East State Street

Budget Motels
Phone

Super 8

2

IL

Budget Motels
Phone Email

Heritage Inn Motel

2

Mahomet, IL · 801 Eastwood Drive

Budget Motels
Phone

Rodeway Inn

2

Portage, IN · 6200 Melton Road

Budget Motels
Phone

Drake Motel

2

Richmond, IL · 8613 Richmond Road

Budget Motels
Phone

Americas Best Value Inn

2

Decatur, IL · 333 North Wyckles Road

Budget Motels
Phone

Valley-Vu Motel

2

Stockton, IL · 400 East North Avenue

Budget Motels
Phone

Red Lion Motor Lodge

2

IL

Budget Motels
Phone Email

Suburban Extended Stay Hotel East

2

Louisville, KY · 4540 Taylorsville Road

Budget Motels
Phone

Super 8

2

IN

Budget Motels
Phone Email

Old Kentucky Home Motel

2

Bardstown, KY · 414 West Stephen Foster Avenue

Budget Motels
Phone

Manor Motel

2

Logansport, IN · 3315 George Street

Budget Motels
Phone

Gateway Villa Motel

2

Radcliff, KY · 1404 Dixie Highway North

Budget Motels
Phone

Lincoln House

2

Logansport, IN · 719 East Market Street

Budget Motels
Phone

Greencastle Inn

2

Greencastle, IN · 1233 South Bloomington Street

Budget Motels
Phone

Chief LLC Monthly Rentals

2

Wahoo, NE · 419 West 1st Street

Budget Motels
Phone

Moonlite Motel

2

Creston, IA · 704 New York Avenue

Budget Motels
Phone

Border Queen Bunkhouse

2

KS

Budget Motels
Phone Email

Heyl's Traveler Motel

2

Sharon Springs, KS · 702 KS-27

Budget Motels
Phone

Riverside Motel

2

Riverside, MO · 4717 Northwest Gateway Avenue

Budget Motels
Phone

Rodeway Inn - Fort Scott

2

Fort Scott, KS · 101 State Street

Budget Motels
Phone

Daniel Boone Motor Inn

2

KY · 150 Weddington Branch Road

Budget Motels
Phone

Budget Inn

2

Abingdon, VA · 15886 Porterfield Highway

Budget Motels
Phone

Econo Lodge

2

Richwood, KY · 11165 Frontage Road

Budget Motels
Phone

Motel 6

2

Carbondale, KY · 700 East Main Street

Budget Motels
Phone

Edge of Town Motel

2

Clarksville, TN · 106 Fort Campbell Boulevard

Budget Motels
Phone

Super 8

2

KY

Budget Motels
Phone Email

Catalina Motel

2

Lexington, KY · 208 West New Circle Road

Budget Motels
Phone

Rodeway Inn

2

Barboursville, KY · 3441 US Route 60 East

Budget Motels
Phone

Town & Country Motor Lodge

2

Lebanon, VA · 88 Town and Country Drive

Budget Motels
Phone

Super 8

2

Portsmouth, OH

Budget Motels
Phone Email

Eagle Inn

2

Beaver Dam, KY · 1080 North Main Street

Budget Motels
Phone

Broadway Inn

2

Hattiesburg, MS · 1818 Broadway Drive

Budget Motels
Phone

LaPlace Motel

2

LA

Budget Motels
Phone

Royal Inn

2

Shreveport, LA · 1906 North Market Street

Budget Motels
Phone

Crown Inn

2

Bossier City, LA · 1968 Airline Drive

Budget Motels
Phone

Super 7 Inn

2

Bossier City, LA · 210 John Wesley Boulevard

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