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

Western Skies Motel

3

Clarendon, TX · 800 West 2nd Street

Budget Motels
Phone Email

Traveler Motel

3

Amarillo, TX · 4420 Canyon Drive

Budget Motels
Phone Email

Town House Motel

3

Amarillo, TX · 112 West Amarillo Boulevard

Budget Motels
Phone

Camelot Inn

3

Amarillo, TX · 2508 East Interstate Drive

Budget Motels
Phone Email

Americas Best Value Inn Amarillo Airport

3

Amarillo, TX · 3930 East Interstate 40

Budget Motels
Phone Email

Economy Inn

3

Sherman, TX · 1530 Texoma Parkway

Budget Motels
Phone

The Bunk House Motel

3

Floydada, TX · 500 West Kentucky Street

Budget Motels
Phone

Cardinal Inn

3

Denison, TX · 1505 South Austin Avenue

Budget Motels
Phone

Motel 6

3

Denison, TX · 615 North Highway 75

Budget Motels
Phone

Heritage House Inn

3

Muleshoe, TX · 2301 West American Boulevard

Budget Motels
Phone

Wagon Wheel Motel

3

Amarillo, TX · 3602 East Amarillo Boulevard

Budget Motels
Phone

Shamrock Country Inn

3

Shamrock, TX · 711 East 12th Street

Budget Motels
Phone Email

Econo Lodge

3

Childress, TX · 1801 Avenue F Northwest

Budget Motels
Phone

Knights Inn Amarillo Airport

3

Amarillo, TX · 1803 South Lakeside Drive

Budget Motels
Phone

Texoma Inn

3

Cartwright, TX · 303 Main Street

Budget Motels
Phone

Electra Inn

3

Electra, TX · 802 East US Highway 287

Budget Motels
Phone

Budget Inn Perryton

3

Perryton, TX · 711 North Main Street

Budget Motels
Phone

Ranchouse Motel

3

Perryton, TX · 1513 South Main Street

Budget Motels
Phone

Goodnight Inn

3

Claude, TX · 800 East 1st Street

Budget Motels
Phone

Victorian Inn

3

Whitesboro, TX · 1013 Highway 82 West

Budget Motels
Phone

Motel 6

3

Childress, TX · 1612 Avenue F Northwest

Budget Motels
Phone Email

Stingaree Marina

3

TX

Marinas

Clem's Marina

3

TX · 13304 S Padre Island Dr

Marinas
Phone

Black Dragon Cruises

3

Port Isabel, TX · 501 East Maxan Street

Marinas
Phone

Lake Somerville Marina

3

TX

Marinas

Nassau Bay Yacht Club

3

Nassau Bay, TX · 18250 Nassau Bay Drive

Marinas
Phone

Waterpoint Marina

3

TX

Marinas
Phone

Beaumont RV & Marina

3

Beaumont, TX · 560 Marina Street

Marinas
Phone Email

Pleasure Island Marina

3

TX

Marinas
Phone

Juniper Cove Marina

3

TX

Marinas
Phone Email

Grandpappy Point Resort and Marina

3

TX

Marinas

Little River Marina

3

Norman, TX · 13801 Marina Road

Marinas

Calypso Cove Marina

3

TX

Marinas
Phone

The Dock

3

TX

Marinas

Lake Tyler Marina Resort

3

Whitehouse, TX · 18183 Concession Road

Marinas
Phone Email

Harborlight Marina and Resort

3

TX

Marinas
Phone

Indian Harbor Marina /Stiletto’s Lakeside Kitchen

3

Granbury, TX · 1413 Blackhawk Circle

Marinas

Lake Athens Marina

3

Athens, TX · 5401 Marina Drive

Marinas
Phone Email

Highport Marina

3

TX

Marinas
Phone Email

Flowing Wells Resort and Marina

3

TX

Marinas

Cedar Mills Marina and Resort

3

TX

Marinas
Phone

Walnut Creek Resort

3

TX

Marinas
Phone

The Maverick Inn

3

Alpine, TX · 1200 East Holland Avenue

Budget Motels
Phone Email

Motel 6

3

Van Horn, TX · 1805 West Broadway Street

Budget Motels
Phone

Thunderbird Hotel

3

Marfa, TX · 601 West San Antonio Street

Budget Motels
Phone Email

Riata Inn Marfa

3

Marfa, TX · 1500 US Highway 90 East

Budget Motels
Phone Email

The Holland Hotel

3

Alpine, TX · 209 West Holland Avenue

Budget Motels
Phone Email

Americas Best Value Inn

3

Alpine, TX · 2010 East US Highway 90

Budget Motels
Phone Email

Budget Inn

3

Fort Stockton, TX · 801 East Dickinson Boulevard

Budget Motels
Phone

Economy Inn

3

Van Horn, TX · 1500 West Broadway Street

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