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

Alvarado Self Storage

2

Alvarado, TX · 600 East US Highway 67

Self-Storage
Phone Email

Absolute Self Storage

2

Tulsa, TX · 7710 West 41st Street South

Self-Storage
Phone Email

Cleburne Mini Storage

2

Cleburne, TX · 316 West Kilpatrick Avenue

Self-Storage
Phone Email

Creekside Self Storage

2

Cleburne, TX · 1441 West Kilpatrick Avenue

Self-Storage
Phone

Pedigo Storage

2

Cleburne, TX · 204 West Kilpatrick Avenue

Self-Storage
Phone

Corner Post Self Storage

2

Godley, TX · 216 East Railroad Street

Self-Storage
Phone Email

CubeSmart

2

Sachse, TX · 7970 Woodbridge Parkway

Self-Storage
Phone

KO Storage

2

TX · 1200 North Birch Avenue

Self-Storage
Phone

UTEX Self Storage

2

Denton, TX · 2820 Virginia Circle

Self-Storage
Phone

Mini U Storage

2

Crowley, TX · 786 East FM 1187

Self-Storage
Phone Email

Southlake Storage

2

Southlake, TX · 2060 East Continental Boulevard

Self-Storage
Phone Email

Ko Storage

2

Weatherford, TX · 113 West Park Avenue

Self-Storage
Phone

Safe Space Storage

2

Waco, TX · 920 North Valley Mills Drive

Self-Storage
Phone

SpareBox Storage

2

Waco, TX · 400 Texas Central Parkway

Self-Storage
Phone

U-Haul

2

Waco, TX · 200 Texas Central Parkway

Self-Storage
Phone Email

CubeSmart

2

Dallas, TX · 17613 Coit Road

Self-Storage
Phone

E-Z Storage TX

2

Jewett, TX · 29115 US 79

Self-Storage
Phone Email

Pods

2

Amarillo, TX · 3333 Southeast 3rd Avenue

Self-Storage
Phone

SecurCare Self Storage

2

Amarillo, TX · 6220 Lowes Lane

Self-Storage
Phone

River Rd Self Storage

2

Amarillo, TX · 5024-5022 Valley Avenue

Self-Storage
Phone

Quad Wolf Mini Storage

2

Amarillo, TX · 1790 North Western Street

Self-Storage
Phone

U-Haul

2

Amarillo, TX · 2100 Southwest 6th Avenue

Self-Storage
Phone

Document Shredding & Storage, Ltd.

2

Amarillo, TX · 2727 Southwest 45th Avenue

Self-Storage
⚠️ Phone

Easy Stop Storage

2

Amarillo, TX · 4907 South Washington Street

Self-Storage
Phone

Mirror Plaza Storage

2 🌐 Multi-Vertical

Amarillo, TX · 700 North Houston Street

Self-Storage
Phone

I-40 Bell Self Storage

2

Amarillo, TX · 6015 Plains Boulevard

Self-Storage
Phone

A-Plus Storage

2

Dumas, TX · 502 North Maddox

Self-Storage
Phone

Triple-J Mini Storage

2

Dumas, TX · 415 North Maddox

Self-Storage
Phone

Affordable Storage

2

Dumas, TX · 217 South Porter Avenue

Self-Storage
Phone

Legion Road Mini Storage

2

New Caney, TX · 21130 Legion Road

Self-Storage
Phone

Caney Creek Self-Storage

2

New Caney, TX · 18318 Highway 59 South

Self-Storage
Phone

Storage Plus

2

Georgetown, TX · 4401 Williams Drive

Self-Storage
Phone

Storage King

2

Taylor, TX · 3910 North Main Street

Self-Storage
Phone

Happy Camper Boat and RV Storage

2

Georgetown, TX · 4233 County Road 110

Self-Storage
Phone

Extra Space Storage

2

Kyle, TX · 5141 Cromwell Drive

Self-Storage
Phone

Seaside Storage Inc

2

Sinton, TX · 8109 US Highway 77

Self-Storage
Phone

A Discount Storage

2

Jersey Village, TX · 7906 Wright Road

Self-Storage
Phone

CubeSmart

2

Houston, TX · 1202 Shepherd Drive

Self-Storage
Phone

Neighbor Self Storage

2

Cedar Park, TX · 1600 South Lakeline Boulevard

Self-Storage
Phone

Neighbor Self Storage

2

Austin, TX · 2800 Bartons Bluff Lane

Self-Storage
Phone

Spicewood Super Storage

2

Spicewood, TX · 9514 East State Highway 71

Self-Storage
Phone

Highway 46 Self-Storage

2

Seguin, TX · 602 South State Highway 46

Self-Storage
Phone

Morningstar Storage

2

Buda, TX · 1001 West Goforth Road

Self-Storage
Phone

StorageMart

2

San Antonio, TX · 9580 Potranco Road

Self-Storage
Phone

Solid Ground Storage

2

Elgin, TX · 505 West US Highway 290

Self-Storage
Phone

Lone Star Climate Controlled Storage

2

Ingram, TX · 3154 Junction Highway

Self-Storage
Phone

Extra Space Storage

2

San Antonio, TX · 10260 Marbach Road

Self-Storage
Phone

Public Storage

2

San Antonio, TX · 6624 FM78

Self-Storage
Phone

Georgetown Self Storage

2

Georgetown, TX · 6607 Lakewood Drive South

Self-Storage
Phone

Mayflower Self Storage

2

TX

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