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

West Fuqua Self Storage

2

Houston, TX · 5755 West Fuqua Street

Self-Storage
Phone Email

CubeSmart

2

Austin, TX · 5715 Burnet Road

Self-Storage
Phone

Public Storage

2

Austin, TX · 14002 Owen-Tech Boulevard

Self-Storage
Phone Email

City Storage

2

Kerrville, TX · 339 Junction Highway

Self-Storage
Phone

Lakeline Storage

2

Austin, TX · 11000 South Lakeline Boulevard

Self-Storage
Phone

Marbach Road Self Storage

2

San Antonio, TX · 9975 Marbach Road

Self-Storage
Phone Email

StorWise Self Storage

2

Kerrville, TX · 2824 Junction Highway

Self-Storage
Phone Email

U Store & Lock

2

Kerrville, TX · 2210 Junction Highway

Self-Storage
Phone

CubeSmart

2

Bastrop, TX · 510 State Highway 71 West

Self-Storage
Phone

Stuff Safe Secure Storage

2

Kerrville, TX · 2933 Junction Highway

Self-Storage
Phone

183 Storage

2

Leander, TX · 1905 South Highway 183

Self-Storage
Phone Email

Public Storage

2

San Antonio, TX · 555 West Sunset Road

Self-Storage
Phone Email

Public Storage

2

Buda, TX · 16091 South Interstate 35

Self-Storage
Phone

Lone Star Storage

2

Bastrop, TX · 807 State Highway 71 West

Self-Storage
Phone Email

Extra Space Storage

2

Georgetown, TX · 3009 Dawn Drive

Self-Storage
Phone

Space Savers #1

2

San Antonio, TX · 2331 Goliad Road

Self-Storage
Phone

Lockaway Storage

2

San Antonio, TX · 2507 Goliad Road

Self-Storage
Phone Email

Public Storage

2

San Antonio, TX · 4910 South Zarzamora Street

Self-Storage
Phone

CubeSmart

2

Georgetown, TX · 3901 Shell Road

Self-Storage
Phone

CubeSmart

2

Georgetown, TX · 2400 North Austin Avenue

Self-Storage
Phone

U-Haul

2

Pflugerville, TX · 1617 Three Points Road

Self-Storage
Phone Email

A-1 Pflugerville Storage

2

Pflugerville, TX · 1531 West Pflugerville Loop

Self-Storage
Phone

Windermere Storage

2

Pflugerville, TX · 15907 Windermere Drive

Self-Storage
Phone Email

SpareBox Storage

2

Round Rock, TX · 6701 County Road 110

Self-Storage
Phone

Alamo Mini-Storage

2

Hutto, TX · 2339 Innovation Boulevard

Self-Storage
Phone

Affordable Storage RV, Boat, and Shops

2

Hutto, TX · 333 CR 119

Self-Storage
Phone

CubeSmart

2

Austin, TX · 14509 Owen-Tech Boulevard

Self-Storage
⚠️ Phone

Extra Space Storage

2

Georgetown, TX · 5431 Williams Drive

Self-Storage
Phone

Hill Country Boat & RV Storage

2

Georgetown, TX · 6200 Interstate 35 Frontage Road

Self-Storage
Phone Email

Champion Forest Self Storage

2

Houston, TX · 14850 Cutten Road

Self-Storage
Phone

Stuebner Airline Self Storage

2

Houston, TX · 14929 Stuebner Airline Road

Self-Storage
Phone

Patriot RV & Boat Storage

2

Liberty Hill, TX · 292 County Road 214

Self-Storage
Phone

American Self Storage

2

Liberty Hill, TX · 13750 TX 29

Self-Storage
Phone

iStorage

2

Conroe, TX · 1777 North Loop 336 West

Self-Storage
Phone

Public Storage

2

Austin, TX · 10931 Research Boulevard

Self-Storage
Phone

Public Storage

2

Georgetown, TX · 2100 South Interstate 35

Self-Storage
Phone

CubeSmart

2

Georgetown, TX · 108 Boselli Way

Self-Storage
Phone

Extra Space Storage

2

Killeen, TX · 5004 Thayer Drive

Self-Storage
Phone

5 Star Boat and RV Storage

2

Georgetown, TX · 5201 RM 2243

Self-Storage
Phone

A-Affordable RV & Boat Storage

2

Bertram, TX · 8405 County Road 252

Self-Storage
Phone

Extra Space Storage

2

Kyle, TX · 1602 Bunton Creek Road

Self-Storage
Phone

RightSpace Self Storage

2

Georgetown, TX · 7650 TX 29

Self-Storage
Phone

Storage Star Mopac

2

Austin, TX · 12900 North Mopac Expressway

Self-Storage
Phone

Public Storage

2

Austin, TX · 7112 South Congress Avenue

Self-Storage
Phone Email

RightSpace Storage

2

Buda, TX · 227 Park 35 Cove North

Self-Storage
Phone

Public Storage

2

Round Rock, TX · 1517 Round Rock Avenue

Self-Storage
Phone

StorQuest

2

Spring, TX · 23103 Gosling Road

Self-Storage
Phone Email

iStorage

2

San Antonio, TX · 870 Hot Wells Boulevard

Self-Storage
Phone

G Street Mini Storage

2

Floresville, TX · 1807 G Street

Self-Storage
Phone Email

US Storage Centers

2

Floresville, TX · 512 10th Street

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