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

69 Mini Storage

2

TX

Self-Storage
Phone

Verden Mini Storage

2

TX

Self-Storage
Phone

Holly Self Storage

2

TX

Self-Storage
Phone

Downtown Mini Storage

2

TX

Self-Storage
Phone

Arborstone Storage

2

TX

Self-Storage
Phone

Lock & Leave

3

Fort Bliss, TX · 1016 Carter Road

Self-Storage
Phone

Storage @ Coldspring

3

Coldspring, TX · 13860 State Highway 150

Self-Storage

Tillman Self Storage

3

Cedar Park, TX · 1212 West Whitestone Boulevard

Self-Storage
Phone Email

CubeSmart

3

TX · 7950 Bandera Road

Self-Storage

My Garage Self Storage

3

Temple, TX · 4800 South 31st Street

Self-Storage

Southpark Self Storage

3

Temple, TX · 4715 South 31st Street

Self-Storage
Phone

U-Haul Move & Store

3

TX · 1633 West Grand Parkway North

Self-Storage
Phone Email

Extra Space Storage

3

San Antonio, TX · 4515 De Zavala Road

Self-Storage

Watson & Taylor Self Storage

3

San Antonio, TX · 2410 Southwest Loop 410

Self-Storage

Extra Space Storage

3

San Antonio, TX · 7363 North Loop 1604 West

Self-Storage

N. 123 Store House

3

Seguin, TX · 3579 North Highway 123 Bypass

Self-Storage

Extra Space Storage

3

Killeen, TX · 4201 South Clear Creek Road

Self-Storage

Extra Space Storage

3

Leander, TX · 11800 West Hero Way

Self-Storage

Public Storage

3

Leander, TX · 140 East Sonny Drive

Self-Storage
Phone

Extra Space Storage

3

Houston, TX · 10615 South Gessner Drive

Self-Storage

Metro Self Storage

3

Houston, TX · 1918 Gessner Road

Self-Storage

Extra Space Storage

3

Round Rock, TX · 1350 East Old Settler's Boulevard

Self-Storage

Morningstar Storage

3

TX · 3506 Greenhouse Road

Self-Storage
Phone Email

Extra Space Storage

3

Round Rock, TX · 2101 Double Creek Drive

Self-Storage

Move It Storage

3

Alamo, TX · 501 South Alamo Road

Self-Storage
Phone

Discount Self Storage

3

Wolfforth, TX · 7801 FM 179

Self-Storage

U-Haul of South Amarillo

3

TX · Canyon Expressway

Self-Storage
Phone Email

Reliable Self Storage

3

TX · 1908 Wasson Road

Self-Storage
Phone Email

The Attic Self-Storage

3

Addison, TX · 15025 Inwood Road

Self-Storage
Phone Email

All Around Storage

3

TX · 2650 South City Lake Road

Self-Storage

Public Storage

3

Dallas, TX · 5959 Alpha Road

Self-Storage
Phone Email

Public Storage

3

TX · 4721 Ross Avenue

Self-Storage
Phone Email

Highway 66 Storage

3

TX · 4208 TX 66

Self-Storage
Phone

Public Storage

3

Allen, TX · 1379 Andrews Parkway

Self-Storage
Phone Email

The Storage Bin

3

TX · 2521 Farm-to-Market Road 2869

Self-Storage

Cornerstone Mini Storage

3

Cleburne, TX · 1627 West Henderson Street

Self-Storage
Phone Email

Sitzes Self Storage

3

Cleburne, TX · 791 East Katherine P Raines Road

Self-Storage
Phone Email

Hammel Self Storage

3

TX · 1617 North Crowley Road

Self-Storage
Phone

Lockaway Storage

3

Texarkana, TX · 4030 New Boston Road

Self-Storage
Phone Email

Essential Storage Vidor

3

Vidor, TX · 4497 North Main Street

Self-Storage
Phone

Storage Rental Units

3

Morton, TX · Northwest 3rd Street

Self-Storage

SpareBox Storage

3

Amarillo, TX · 4506 South Georgia Street

Self-Storage
Phone

CW Storage

3

Groom, TX · 501 East Front Street

Self-Storage
Phone Email

Extra Space Storage

3

Amarillo, TX · 6220 Lowes Lane

Self-Storage
Phone

Rockin' R II Self Storage

3

Canyon, TX · 1210 24th Street

Self-Storage
Phone Email

Country Comfort Storage

3

Amarillo, TX · 10051 South Western Street

Self-Storage
Phone

Another Attic Self-Storage

3

Amarillo, TX · 8701 Soncy Road

Self-Storage
Phone

All Storage - Southern

3

Amarillo, TX · 6619 South Western Street

Self-Storage
Phone

B & W Self Storage

3

Pampa, TX · 2200 Alcock Street

Self-Storage
Phone

All Storage I-40 East

3

Amarillo, TX · 7841 East Interstate Drive

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