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

Public Storage

3

Cypress, TX · 27214 Northwest Freeway

Self-Storage
Phone

Public Storage

3

Jersey Village, TX · 18106 Northwest Freeway

Self-Storage
Phone

Public Storage

3

Houston, TX · 8555 Larkwood Drive

Self-Storage
Phone

Extra Space Storage

3

Leander, TX · 10201 East Crystal Falls Parkway

Self-Storage
Phone

U-Haul

3

Houston, TX · 11911 North Freeway

Self-Storage
Phone

Lone Star Storage

3

New Braunfels, TX · 1674 South Seguin Avenue

Self-Storage
Phone Email

Public Storage

3

Houston, TX · 7780 Harwin Drive

Self-Storage
Phone

Palo Alto Self Storage

3

San Antonio, TX · 9018 Poteet Jourdanton Freeway

Self-Storage

Lockaway Storage

3

San Antonio, TX · 6551 FM78

Self-Storage
Phone

Super Storage

3

Brenham, TX · 1700 FM 389

Self-Storage
Phone

A Toy Box Storage

3

Aransas Pass, TX · 2220 West Wheeler Avenue

Self-Storage
Phone

East Country Self Storage

3

Laredo, TX · 7819 East Country Drive

Self-Storage
Phone

Extra Space Storage

3

San Antonio, TX · 23860 US Highway 281 North

Self-Storage
Phone Email

CubeSmart Self Storage

3

Houston, TX · 7900 FM 1960 Bypass Road West

Self-Storage
Phone

Stor Galore

3

McAllen, TX · 3129 North McColl Road

Self-Storage
Phone Email

Big Tex Storage

3

TX · 4503 Montrose Boulevard

Self-Storage
Phone

CubeSmart

3

Austin, TX · 1141 West 5th Street

Self-Storage
Phone

Public Storage

3

San Antonio, TX · 4714 Vance Jackson Road

Self-Storage
Phone

Extra Space Storage

3

San Antonio, TX · 2417 Jackson Keller Road

Self-Storage
Phone Email

Georgetown RV and Boat Storage

3

Georgetown, TX · 50 Meda Street

Self-Storage
Phone Email

Georgetown Mini Storage

3

Georgetown, TX · 2220 North Austin Avenue

Self-Storage
Phone

Georgetown Storage and Parking

3

Georgetown, TX · 2219 Old Airport Road

Self-Storage
Phone

MyPlace Self Storage

3

Sugar Land, TX · 15025 Voss Road

Self-Storage
Phone

Public Storage

3

Houston, TX · 9630 Hillcroft Avenue

Self-Storage
Phone

Shalimar Mini Storage

3

TX

Self-Storage
Phone

Right Move Storage

3

Houston, TX · 12121 Westminster Plaza Drive

Self-Storage
Phone

Admiral Storage

3

Georgetown, TX · 6610 Jim Hogg Drive

Self-Storage
Phone

Shell Road Storage

3

Georgetown, TX · 3700 Shell Road

Self-Storage
Phone Email

A Self Storage Place

3

Thrall, TX · 314 US 79

Self-Storage
Phone

Alpha Omega Self Storage

3

Temple, TX · 418 Old Waco Road

Self-Storage
Phone

EastSide Storage

3

Austin, TX · 3222 East 5th Street

Self-Storage
Phone Email

Affordable Boat and RV Storage

3

Florence, TX · 5301 FM 970

Self-Storage
Phone

Any Season RV & Boat Storage

3

Georgetown, TX · 35105 Ronald Reagan Boulevard

Self-Storage
Phone

CubeSmart

3

Onalaska, TX · 447 Old Trinity Road

Self-Storage
Phone

Stor UR Stuff Storage

3

Georgetown, TX · 1975 County Road 140

Self-Storage
Phone

Weir RV, Boat, & Mini Storage

3

Weir, TX · 380 FM 1105

Self-Storage
Phone

Public Storage

3

Cypress, TX · 8300 Fry Road

Self-Storage
Phone

Santa Fe Self Storage

3

TX · 1501 3rd Street

Self-Storage
Phone

A-1 Self Storage

3

TX · 1522 South Pacheco Street

Self-Storage
Phone Email

Los Hermanos Storage

3

TX · 1525 South Pacheco Street

Self-Storage
Phone Email

Extra Space Storage

3

Midland, TX · 1904 West Loop 250 North

Self-Storage
Phone

Seminole Mini Storage

3

Seminole, TX · 401 North Main Street

Self-Storage
Phone

North Main Storage

3

Seminole, TX · 508 North Main Street

Self-Storage
Phone

A-3 Storage Centers

3

Seminole, TX · 2310 Southwest Avenue G

Self-Storage
Phone

Metro Self Storage

3

Lubbock, TX · 3103 50th Street

Self-Storage
Phone

Affordable Self Storage

3

Lubbock, TX · 10214 Frankford Avenue

Self-Storage
Phone

Aark Self Storage

3

Lubbock, TX · 7617 University Avenue

Self-Storage
Phone Email

Nearby Storage

3

Lubbock, TX · 5106 Marsha Sharp Freeway

Self-Storage

Kwik-O Self Storage

3

Lubbock, TX · 1810 Oakridge Avenue

Self-Storage
Phone

Circle T Storage

3

Seminole, TX · 1209 North Main Street

Self-Storage
Phone
← Prev 37 / 67 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