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

Half Price Storage

3

Mineral Wells, TX · 7703 East US 180

Self-Storage
Phone Email

Northstar Self Storage

3

Forney, TX · 10460 FM 740

Self-Storage
Phone

Century Self Storage

3

Cleburne, TX · 127 Century Drive

Self-Storage
Phone

KD's Land Company Mini Storage

3

Keene, TX · 205 East US Highway 67

Self-Storage
Phone

Grizzly Self Storage

3

Mesquite, TX · 1125 East Main Street

Self-Storage
Phone

Extra Space Storage

3

Haslet, TX · 12460 Northwest US Highway 287

Self-Storage
Phone

U-Haul

3

Prosper, TX · 1566 West University Drive

Self-Storage

Iron Guard Stoarge

3

Denton, TX · 550 Fort Worth Drive

Self-Storage
Phone

Public Storage

3

White Settlement, TX · 201 South Jim Wright Freeway

Self-Storage
Phone

Public Storage

3

Richland Hills, TX · 7601 Airport Freeway

Self-Storage
Phone

TurnKey Storage

3

Abilene, TX · 4220 North 1st Street

Self-Storage
Phone Email

CubeSmart

3

Lewisville, TX · 501 East State Highway 121

Self-Storage
Phone

J & L Self Storage

3

Mesquite, TX · 626 Windbell Circle

Self-Storage
Phone

CubeSmart

3

Mesquite, TX · 920 US Highway 80 East

Self-Storage
Phone

Extra Space Storage

3

Richardson, TX · 500 Buckingham Road

Self-Storage
Phone

G.E.T. Storage

3

Longview, TX · 1801 Hollybrook Drive

Self-Storage
Phone

Lock Box West

3

Longview, TX · 5615 West Marshall Avenue

Self-Storage
Phone Email

Public Storage

3

Dallas, TX · 1611 Chestnut Street

Self-Storage
Phone

Macho Self Storage

3

Waxahachie, TX · 3467 North US Highway 77

Self-Storage
Phone

Gunter Self Storage

3

Gunter, TX · 105 West Maple Street

Self-Storage
Phone Email

Lago Vista Storage

3

TX

Self-Storage
Phone

Superior Storage

3

Longview, TX · 3821 McCann Road

Self-Storage
Phone

Public Storage

3

Denton, TX · 3251 North Interstate 35

Self-Storage
Phone

Macho Self Storage

3

Denton, TX · 525 Fort Worth Drive

Self-Storage
Phone

US Storage Centers

3

Corinth, TX · 3701 Swisher Road

Self-Storage
Phone

Extra Space Storage

3

Corinth, TX · 3831 Swisher Road

Self-Storage

Public Storage

3

Fort Worth, TX · 13210 Avondale Haslet Road

Self-Storage
Phone

Extra Space Storage

3

TX · 7701 Banner Drive

Self-Storage
Phone

Affordable Self Storage

3

Denton, TX · 518 Smith Street

Self-Storage
Phone Email

Public Storage

3

Mesquite, TX · 5315 North Galloway Avenue

Self-Storage
Phone

Amy's Attic Self Storage

3

Waco, TX · 1821 South New Road

Self-Storage
Phone

Stor Self Storage

3

Irving, TX · 7390 Riverside Drive

Self-Storage
Phone

Advantage Storage

3

Irving, TX · 330 West Lyndon B Johnson Freeway

Self-Storage
Phone

Public Storage

3

Aledo, TX · 8500 East Interstate 20

Self-Storage
Phone

Extra Space Storage

3

Mesquite, TX · 2233 Franklin Drive

Self-Storage
Phone Email

Area 51 Self Storage

3

TX · West 50th Street

Self-Storage

Public Storage

3

Roanoke, TX · 4415 Dale Earnhardt Way

Self-Storage
Phone

Public Storage

3

TX · 1225 West Trinity Mills Road

Self-Storage
Phone

Extra Space Storage

3

TX · 1751 East Belt Line Road

Self-Storage
Phone

Quality Storage

3

Gatesville, TX · 109 Wells Park

Self-Storage
Phone

Twin Oaks Kilgore Storage

3

Kilgore, TX · 3646 County Road 192 East

Self-Storage

Quinton's Storage

3

Gatesville, TX · 3014 TX 36

Self-Storage
Phone

Sunset Self Storage

3

McGregor, TX · 2050 South Main Street

Self-Storage
Phone

SecurCare Self Storage

3

Longview, TX · 3400 East Marshall Avenue

Self-Storage
Phone Email

Live Oak Self Storage

3

Clifton, TX · 507 Live Oak Street

Self-Storage
Phone

CubeSmart

3

Tyler, TX · 12324 State Highway 155 South

Self-Storage
Phone

Compass Self Storage

3

Rockwall, TX · 4100 East Interstate 30

Self-Storage
Phone

The Space Place

3

TX

Self-Storage
Phone Email

Public Storage

3

Sachse, TX · 5760 Bunker Hill Road

Self-Storage
Phone

380 Storage

3

Denton, TX · 3900 East University Drive

Self-Storage
Phone
← Prev 14 / 15 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