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

E-Z Self Storage

2

Kerrville, TX · 106 Methodist Encampment Road

Self-Storage
Phone

Security Self Storage

2

Kerrville, TX · 100 Methodist Encampment Road

Self-Storage
Phone

Extra Space Storage

2

San Antonio, TX · 9403 Marbach Road

Self-Storage
Phone

Extra Space Storage

2

San Antonio, TX · 9665 Marbach Road

Self-Storage
Phone

Skyview Storage

2

Ingram, TX · 3154 Junction Highway

Self-Storage
Phone

Central Self Storage

2

Austin, TX · 8327 South Congress Avenue

Self-Storage
Phone

K&D Storage, Inc.

2

Leander, TX · 805 South Bagdad Road

Self-Storage
Phone

Store Space

2

Houston, TX · 5512 South Willow Drive

Self-Storage
Phone

Pleasant Hill Self Storage

2

Leander, TX · 10987 East Crystal Falls Parkway

Self-Storage
Phone

U-Haul

2

San Antonio, TX · 6743 FM78

Self-Storage
Phone

Sweet Bay Mini Barns

2

Aransas Pass, TX · 511 North Avenue A

Self-Storage
Phone

Public Storage

2

Austin, TX · 9814 West Gate Boulevard

Self-Storage
Phone

Maximum Mini Storage West Avenue

2

San Antonio, TX · 3835 West Avenue

Self-Storage
Phone

Pflugerville Self Storage

2

Pflugerville, TX · 15803 Windermere Drive

Self-Storage
Phone

SpareBox Storage

2

Round Rock, TX · 7525 County Road 110

Self-Storage
Phone

Tower Storage

2

Georgetown, TX · 50111 Warbonnet Trail

Self-Storage
Phone

North 130 Storage

2

Weir, TX · 345 FM 1105

Self-Storage
Phone

Weir Country Storage

2

Weir, TX · 4575 FM 971

Self-Storage
Phone

971 Mini Storage

2

TX

Self-Storage
Phone

Brauntex Storage

2

New Braunfels, TX · 726 North Walnut Avenue

Self-Storage
Phone

StorageMart

2

San Antonio, TX · 10930 Braun Road

Self-Storage
Phone

6400 Self Storage

2

Houston, TX · 6400 Eastex Freeway

Self-Storage
Phone

Discount Storage: Shop Rentals

2

Lubbock, TX · 12611 Indiana Avenue

Self-Storage
Phone

Discount Storage: Shop Rentals

2

Lubbock, TX · 13209 Frankford ave.

Self-Storage
Phone

287 RV Storage

2

TX

Self-Storage
Phone

Affordable Super Storage

2

San Angelo, TX · 6566 US Highway 67 South

Self-Storage
Phone

Discount Storage: 144th & Indiana ave.

2

Lubbock, TX · 14416 Indiana Avenue

Self-Storage
Phone

Discount Storage: RV, Boat Storage, & Shop Rentals

2

Lubbock, TX · 15820 County Road 2100

Self-Storage
Phone

All Store Mini Storage

2

Cleburne, TX · 3802 North Main Street

Self-Storage
Phone

Storage

2

Broken Arrow, TX · 3651 South Elm Place

Self-Storage
Phone

Arborstone Storage

2

TX

Self-Storage
Phone Email

Neighbor Self Storage

2

Frisco, TX · 8455 Grace Street

Self-Storage
Phone

Neighbor Self Storage

2

Dallas, TX · 3377 Blackburn Street

Self-Storage
Phone

Neighbor Car Storage

2

Mansfield, TX · 1701 East Debbie Lane

Self-Storage
Phone

Neighbor Self Storage

2

Farmers Branch, TX · 2061 Wittington Place

Self-Storage
Phone

Neighbor Self Storage

2

Frisco, TX · 6235 Frisco Street

Self-Storage
Phone

Neighbor Self Storage

2

Addison, TX · 3850 Vitruvian Way

Self-Storage
Phone

B&T Boat & RV Storage

2

TX · 1211 North Mingo Road

Self-Storage
Phone

Crosstown RV/Boat Storage

2

TX · 1315 North Mingo Road

Self-Storage
Phone

Colonial Storage

2

Lufkin, TX · 1513 East Denman Avenue

Self-Storage
Phone

Public Storage

2

TX · 2409 Old Denton Road

Self-Storage
Phone

Public Storage

2

McKinney, TX · 4700 Stacy Road

Self-Storage
Phone

Fayetteville Self Service Storage

2

Fayetteville, TX · 1790 North Birch Avenue

Self-Storage
Phone

Holly Lake Storage

2

TX

Self-Storage
Phone

Rockwall Mini Storage

2

Rockwall, TX · 1760 East Interstate 30

Self-Storage
Phone

Storage Depot

2

Fort Worth, TX · 6650 North Riverside Drive

Self-Storage
Phone

CubeSmart

2

TX · 900 West Round Grove Road

Self-Storage
Phone

Highway 412 Mini Storage

2

Springdale, TX · 1253 East Robinson Avenue

Self-Storage
Phone

Air-Tight Self Storage

2

Springdale, TX · 2571 East Robinson Avenue

Self-Storage
Phone

Wobbe Lane Storage

2

Springdale, TX · 598 East Randall Wobbe Lane

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