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

Pollok Self Storage

2

Floresville, TX · 1101 US Highway 181 North

Self-Storage
Phone

Public Storage

2

Houston, TX · 11900 Katy Freeway

Self-Storage
⚠️ Phone

CubeSmart

2

Leander, TX · 2407 South US Highway 183

Self-Storage
Phone

Extra Space Storage

2

Leander, TX · 2100 North Bell Boulevard

Self-Storage
Phone

AAA Storage

2

Round Rock, TX · 3501 Sunrise Road

Self-Storage
Phone

All Star Storage Richmond

2

Richmond, TX · 2122 East US Highway 90A

Self-Storage
Phone

A-1 Self Storage

2

Albuquerque, TX · 49 Hotel Circle Northeast

Self-Storage
Phone

A3 Storage Centers

2

Odessa, TX · 135 West 42nd Street

Self-Storage
Phone

America's Storage Center

2

Midland, TX · 4011 North Midland Drive

Self-Storage
Phone

Jerry's Storage

2

Kemp, TX · 16131 E Highway 175

Self-Storage
Phone

All Storage

2

Plano, TX · 500 Talbert Drive

Self-Storage
Phone

Country Club Storage

2

Wylie, TX · 2744 Southview Dr

Self-Storage
Phone

Almond Street Cold Storage

2

Abilene, TX · 800 Almond Street

Self-Storage
Phone

Eagle Self Storage

2

Fort Worth, TX · 4450 Rivertree Boulevard

Self-Storage
Phone

Stor-Mor4Less Storage

2

Palestine, TX · 4345 South State Highway 19

Self-Storage
Phone Email

Affordable Self Storage

2

Denton, TX · 1239 Teasley Lane

Self-Storage
Phone

Fossil Storage

2

Joshua, TX · 410 North Broadway Street

Self-Storage
⚠️ Phone

Storage Depot

2

Burleson, TX · 825 West Hidden Creek Parkway

Self-Storage
Phone

Smithfield Storage

2

North Richland Hills, TX · 7510 Smithfield Road

Self-Storage
Phone

Public Storage

2

TX · 8510 Benbrook Boulevard

Self-Storage
Phone Email

Extra Space Storage

2

Anna, TX · 501 South Ferguson Parkway

Self-Storage
Phone

Store It All

2

Mesquite, TX · 3940 Samuell Boulevard

Self-Storage
Phone

Simply Stor-It Longview

2

Longview, TX · 1100 McCann Road

Self-Storage
Phone Email

Public Storage

2

Grand Prairie, TX · 1401 North State Highway 161

Self-Storage
Phone Email

U-Haul

2

Carrollton, TX · 2735 East Belt Line Road

Self-Storage
Phone Email

Public Storage

2

TX · 5342 East Mockingbird Lane

Self-Storage
Phone Email

Keyport Self Storage

2

Fayetteville, TX · 1660 North College Avenue

Self-Storage
Phone

Ash Street Self Storage

2

Fayetteville, TX · 661 West Ash Street

Self-Storage
Phone Email

AAA Self Storage

2

Fayetteville, TX · 2712 West Martin Luther King Junior Boulevard

Self-Storage
Phone Email

Extra Space Storage

2

Fort Worth, TX · 5900 Bryant Irvin Road

Self-Storage
Phone

Public Storage

2

Hurst, TX · 1147 West Hurst Blvd

Self-Storage
Phone

A&W Storage Hawkins

2

TX · 108 County Road 3802

Self-Storage
Phone Email

Joshua Storage

2

Joshua, TX · 944 South Broadway Street

Self-Storage
Phone

Capsule

2

Cleburne, TX · 3509 North Main Street

Self-Storage
Phone Email

Ideal Self Storage

2

Gatesville, TX · 1611 East Main Street

Self-Storage
Phone

Southern Storage

2

Fayetteville, TX · 1551 Main Drive

Self-Storage
Phone

Wesley Street Storage

2

Greenville, TX · 8604 Wesley Street

Self-Storage
Phone Email

Devon Self Storage

2

Greenville, TX · 8123 Wesley Street

Self-Storage
Phone Email

Raincross Storage

2

Greenville, TX · 2100 Traders Road

Self-Storage
Phone

Extra Space Storage

2

Dallas, TX · 3737 Frankford Road

Self-Storage
Phone

1565 Storage

2

Caddo Mills, TX · 5240 FM 1565

Self-Storage
Phone Email

CubeSmart

2

Caddo Mills, TX · 4701 West I-30

Self-Storage
Phone

Advantage Storage

2

Rowlett, TX · 5200 Lakeview Parkway

Self-Storage
Phone

Simply Self Storage

2

Frisco, TX · 8388 FM 423

Self-Storage
Phone

Colonial Mini Storage

2

Cleburne, TX · 304 South Colonial Drive

Self-Storage
Phone Email

Leopard Storage

2

Lucas, TX · 2205 Estates Parkway

Self-Storage
Phone

Extra Space Storage

2

TX · 4101 South Yale Avenue East

Self-Storage
Phone

Joshua Storage Depot

2

Joshua, TX · 100 West James Street

Self-Storage
Phone

84 Storage.com

2

Gatesville, TX · 104 Magoldi Street

Self-Storage
Phone

Coryell County Storage

2

Gatesville, TX · 101 South 34th 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