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

Clifton Mini Storage

1B

Clifton, TX · 4400 FM 219

Self-Storage
Phone Email

Bosque County Storage

1B

Clifton, TX · 1414 West 5th Street

Self-Storage
Phone Email

Bosque County Storage

1B

Clifton, TX · 714 North Avenue H

Self-Storage
Phone Email

Store House Storage

1B

Cleburne, TX · 106 South Nolan River Road

Self-Storage
Phone Email

Cowboy Storage

1B

Stephenville, TX · 1855 East Washington Street

Self-Storage
Phone Email

Move It Self Storage - Weber Road

1B

Corpus Christi, TX · 6752 Weber Road

Self-Storage
Phone Email

Knight Outdoor Products

1B

Sealy, TX · 4662 NE I-10 Frontage Road

Self-Storage
Phone Email

Safe Storage Units

1B

TX · 515 Fannin Street

Self-Storage
Phone Email

Trails End Storage

1B

TX

Self-Storage
Phone Email

Love Street Storage

1B

Florence, TX · 111 South Love Avenue

Self-Storage
Phone Email

Budget Self Storage - Stuff Hotel

1B

TX · 5906 San Bernardo Avenue

Self-Storage
Phone Email

B. S. Storage

1B

Liberty Hill, TX · 16600 West State Highway 29

Self-Storage
Phone Email

Devon Self Storage

1B

TX

Self-Storage
Phone Email

American Self Storage

2

Pampa, TX · 101 South Naida Street

Self-Storage
Phone

Amarillo All Storage

2

Amarillo, TX · 2000 Hardy Street

Self-Storage
Phone

Eastside Self Storage

2

Sherman, TX · 319 East Mulberry Street

Self-Storage
Phone

Frontier Self Storage Center Inc.

2

Adkins, TX · 17560 US 87

Self-Storage
Phone

Public Storage

2

Austin, TX · 12312 North MoPac Expressway

Self-Storage
Phone Email

Devon Self Storage

2

Seabrook, TX · 3018 Bayport Boulevard

Self-Storage
Phone

Unicorn Moving

2

Austin, TX · 102 Victor Street

Self-Storage
Phone

Cane Island Storage

2

Katy, TX · 27748 US-90

Self-Storage
Phone

Paul's Stor-Galor Mini-Warehouses

2

Galveston, TX · 2302 45th Street

Self-Storage
Phone

Alamo Relocation & Storage

2

San Antonio, TX · 1113 East Houston Street

Self-Storage
Phone

Park Place 4 RV's

2

New Braunfels, TX · 9320 FM 306

Self-Storage
Phone

Watson & Taylor Storage - North Austin

2

Austin, TX · 11712 North Lamar Boulevard

Self-Storage
Phone

Eagle Drive Boat RV Self Storage & Office Warehouses

2

Baytown, TX · 8724 Eagle Drive

Self-Storage
Phone

AAA Cougar Self Storage

2

Jarrell, TX · 500 FM 487

Self-Storage
Phone Email

A-Affordable RV & Boat Storage

2

Hutto, TX · 707 Old County Road 105

Self-Storage
⚠️ Phone

Rabbit Hill Storage

2

Georgetown, TX · 10 Hillvue Road

Self-Storage
Phone

At The Tower Rental

2

Leander, TX · 631 CR 175

Self-Storage
Phone Email

Salado Eagle Storage

2

TX · 11315 Blackberry Road

Self-Storage
Phone Email

Metro Self Storage

2

Corpus Christi, TX · 6534 South Staples Street

Self-Storage
Phone

Store Space

2

San Antonio, TX · 1301 East Commerce Street

Self-Storage
Phone

StorageMart

2

Austin, TX · 15601 FM 1325

Self-Storage
⚠️ Phone Email

Extra Space Storage

2

Austin, TX · 12506 North Lamar Boulevard

Self-Storage
Phone

Summer Lakes Self Storage

2

Rosenberg, TX · 102 Benton Road

Self-Storage
Phone

CubeSmart

2

Kyle, TX · 701 Philomena Drive

Self-Storage
Phone

Stōr Self Storage

2

San Antonio, TX · 24171 Boerne Stage Road

Self-Storage
Phone

Extra Space Storage

2

Round Rock, TX · 506 McNeil Road

Self-Storage
Phone

Move It Self Storage - Crestway

2

San Antonio, TX · 7345 Crestway Road

Self-Storage
Phone

U-Haul

2

Austin, TX · 6610 Burnet Road

Self-Storage
Phone Email

Extra Space Storage

2

Austin, TX · 2607 West Braker Lane

Self-Storage
Phone

Space Self-Storage

2

Austin, TX · 11703 North Lamar Boulevard

Self-Storage
Phone Email

CubeSmart

2

Kyle, TX · 21400 South Interstate 35

Self-Storage
Phone

County Line Self Storage

2

New Braunfels, TX · 1629 W County Line Rd

Self-Storage
Phone

Public Storage

2

Pflugerville, TX · 19339 Wilke Lane

Self-Storage
Phone

Steer It Store It

2

Richmond, TX · 1610 Settegast Ranch Road

Self-Storage
Phone

Summerwood Self Storage

2

Houston, TX · 14411 West Lake Houston Parkway

Self-Storage
Phone

Browning Warehouse Self Storage

2

Kerrville, TX · 1809 Sidney Baker Street

Self-Storage
Phone

Lake Hills Boat & RV Storage

2

Marble Falls, TX · 4011 South US Highway 281

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