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

CubeSmart

3

TX · 10705 North Interstate Highway 35 Service Road

Self-Storage
Phone Email

U-Haul

3

TX · 336 East Ben White Boulevard

Self-Storage
Phone

Lock Away Storage

3

San Antonio, TX · 8223 West Loop 1604 North

Self-Storage
Phone Email

Community Self Storage

3

Houston, TX · 2515 Washington Avenue

Self-Storage
Phone

CubeSmart

3

TX · 5700 Washington Avenue

Self-Storage
Phone Email

RightSpace Storage

3

Round Rock, TX · 16450 Ranch-to-Market Road 620

Self-Storage
Phone

Smart Self Storage

3

Texas City, TX · 2701 FM 2004

Self-Storage
Phone

A-AAAKey Mini Storage

3

San Antonio, TX · 13651 Interstate 10 West

Self-Storage
Phone

U-Haul Moving & Storage of Wurzbach

3

San Antonio, TX · 3817 Parkdale Drive

Self-Storage
Phone

Humidity Temperature Controlled

3

San Antonio, TX · 9436 Frontage Rd

Self-Storage

Alamo Mini-Storage

3

San Antonio, TX · 8747 Wurzbach Road

Self-Storage
Phone

High Point Storage

3

Dickinson, TX · 5600 FM 646 W

Self-Storage
Phone

South Meadow Self Storage

3

Laredo, TX · 1320 South Meadow Avenue

Self-Storage
Phone

Bullseye Storage

3

Houston, TX · 3200 West Dallas Street

Self-Storage
Phone

A-AAAKey Mini Storage

3

San Antonio, TX · 9610 West Loop 1604 North

Self-Storage
Phone

SmartStop Self Storage

3

The Woodlands, TX · 3750 FM 1488

Self-Storage
Phone

Public Storage

3

Austin, TX · 8101 North Lamar Boulevard

Self-Storage
Phone

The Keep Storage

3

San Antonio, TX · 9106 Ingram Road

Self-Storage
Phone

Lok-Tite

3

Richmond, TX · 1609 FM 359

Self-Storage
Phone Email

Stick It & Store It

3

Richmond, TX · 228 Fm 359

Self-Storage
Phone

Store Space Self Storage

3

Sugar Land, TX · 4815 LJ Parkway

Self-Storage
Phone Email

Westore Mini-Storage

3

San Antonio, TX · 11827 West Avenue

Self-Storage

Texas Maxi-Mini Storage

3

San Antonio, TX · 12325 West Avenue

Self-Storage
Phone

Extra Space Storage

3

San Antonio, TX · 5611 Lone Star Parkway

Self-Storage
Phone Email

CubeSmart

3

San Antonio, TX · 9238 Interstate Highway 10 Frontage Road

Self-Storage
Phone

A-AAAKey Mini Storage

3

San Antonio, TX · 6414 West Loop 1604 North

Self-Storage
Phone

A-AAAKey Mini Storage

3

San Antonio, TX · 11707 Culebra Road

Self-Storage
Phone

Extra Space Storage

3

San Antonio, TX · 6450 De Zavala Road

Self-Storage
Phone Email

Public Storage

3

Houston, TX · 1165 North Loop West

Self-Storage
Phone

Montgomery Self-Storage

3

TX · 14132 Schroeder Road

Self-Storage
Phone

Alamo Storage

3

San Antonio, TX · 9738 Interstate Highway 35 Frontage Road

Self-Storage
Phone

Hill Country Storage

3

Pipe Creek, TX · 8616 State Highway 16 South

Self-Storage
Phone

Public Storage

3

Hill Country Village, TX · 15889 San Pedro Avenue

Self-Storage

Public Storage

3

San Antonio, TX · 23015 US Highway 281 North

Self-Storage
Phone

281 Mini Storage

3

TX · 3608 US 281

Self-Storage
Phone

Extra Space Storage

3

San Antonio, TX · 9738 Huebner Road

Self-Storage
Phone Email

Extra Space Storage

3

Houston, TX · 3535 Katy Freeway

Self-Storage
Phone

Key Storage

3

San Antonio, TX · 10102 State Highway 151

Self-Storage
Phone

A-AAAKey Mini Storage

3

San Antonio, TX · 5555 Northwest Loop 410

Self-Storage
Phone

CubeSmart Self Storage

3

San Antonio, TX · 838 North Loop 1604 East

Self-Storage
Phone

Lockaway Storage

3

Boerne, TX · 29620 Interstate 10 West

Self-Storage
Phone

All American Self Storage

3

Boerne, TX · 29257 Interstate 10 West

Self-Storage
Phone Email

Extra Space Storage

3

San Antonio, TX · 202 North Loop 1604 West

Self-Storage
Phone Email

Lockaway Storage

3

San Antonio, TX · 3280 Northwest Loop 410

Self-Storage
Phone

Extra Space Storage

3

San Antonio, TX · 13806 Galm Road

Self-Storage
Phone Email

Brazos Moving and Storage

3

College Station, TX · 17535 TX 6

Self-Storage
Phone Email

All Seasons Storage Centers - College Station

3

College Station, TX · 3201 South Earl Rudder Freeway Frontage Road

Self-Storage
Phone

Extra Space Storage

3

San Antonio, TX · 15322 San Pedro Avenue

Self-Storage
Phone Email

CubeSmart

3

TX · 32010 Conroe Hufsmith Road

Self-Storage
Phone Email

CubeSmart Self Storage

3

San Antonio, TX · 19322 Bulverde Road

Self-Storage
Phone
← Prev 10 / 15 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