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

Floydada Storage Spot

3

Floydada, TX · 110 North 5th Street

Self-Storage
Phone

West Texas Mini Storage

3

Floydada, TX · 221 South Wall Street

Self-Storage
Phone

3M Self Storage

3

Pleasant Valley, TX · 179 FM 369 North

Self-Storage
Phone

StoreLine Self Storage

3

Wichita Falls, TX · 1408 10th Street

Self-Storage
Phone

Lil' Red Truck Self-Storage

3

Canyon, TX · 23500 I-27 Frontage Road

Self-Storage
Email

American Mini Storage

3

Missouri City, TX · 2604 Murphy Road

Self-Storage
Phone Email

Life Storage

3

Seabrook, TX · 3400 Bayport Boulevard

Self-Storage

1488 Boat & RV Storage

3

Conroe, TX · 4392 FM 1488

Self-Storage
Phone

Safekeeping Self Storage

3

Houston, TX · 430 West Parker Road

Self-Storage
Phone

Life Storage

3

San Antonio, TX · 2300 Broadway

Self-Storage
Phone

CubeSmart

3

Pearland, TX · 3045 Business Center Drive

Self-Storage
Phone

ExtraSpace Storage

3

Taylor, TX · 3706 North Main Street

Self-Storage
Phone

Houston Mini Storage

3

TX · 614 West Donovan Street

Self-Storage
Phone

BB&G Storage

3

Georgetown, TX · 2601 Rockride Lane

Self-Storage
Phone Email

SpareBox Storage

3

Pflugerville, TX · 1511 Panther Loop

Self-Storage

Amy's Attic Self Storage

3

Salado, TX · 3524 Farm-to-Market Road 2484

Self-Storage
Phone Email

CubeSmart

3

Georgetown, TX · 1301 Northeast Inner Loop

Self-Storage
Phone

Frank's RV & Boat Storage

3

Georgetown, TX · 2431 Westinghouse Road

Self-Storage
Phone

Public Storage

3

Katy, TX · 1001 South Mason Road

Self-Storage
Phone

Extra Space Storage

3

Georgetown, TX · 2801 TX 29

Self-Storage
Phone

Red Poppy Self Storage

3

Georgetown, TX · 7850 TX 29 East

Self-Storage
Phone

SpareBox Storage

3

Georgetown, TX · 3091 East University Avenue

Self-Storage
Phone

Store Space

3

TX · 260 Interstate 10 South

Self-Storage
Phone

Cimarron Storage

3

Goergetown, TX · 6510 TX 29 West

Self-Storage
Phone Email

Extra Space Storage

3

Spring, TX · 30690 Aldine Westfield Road

Self-Storage
Phone

Dun Deal Storage

3

Georgetown, TX · 6211 Williams Drive

Self-Storage
Phone

Georgetown Storage Space

3

Georgetown, TX · 26330 Ronald W Reagan Boulevard

Self-Storage
Phone

Blue Agave Economy RV & Mini Storage

3

Georgetown, TX · 101 Bonett Lane

Self-Storage
Phone

Oasis Rv Boat Storage

3

Georgetown, TX · 752 County Road 234

Self-Storage
Phone

T & J Storage

3

Georgetown, TX · 1251 County Road 147

Self-Storage
Phone Email

Pecan View Storage

3

Florence, TX · 12275 FM 487

Self-Storage

Spicewood 71 Self-Storage

3

Spicewood, TX · 7400 East State Highway 71

Self-Storage
Phone

Longhorn Storage Services

3

Georgetown, TX · 320 Green Acres

Self-Storage
Phone Email

Walburg RV & Boat Storage

3

Walburg, TX · 2650 FM 972

Self-Storage
Phone Email

CubeSmart

3

San Antonio, TX · 11303 West Loop 1604 North

Self-Storage
Phone

Cadman Self Storage

3

Houston, TX · 12310 Perry Road

Self-Storage
Phone

A-AAAKEY Mini Storage

3

San Antonio, TX · 8611 Potranco Road

Self-Storage
Phone

Extra Space Storage

3

Houston, TX · 5415 Bissonnet Street

Self-Storage
Phone

Proguard Self Storage

3

Houston, TX · 3770 Center Street

Self-Storage
Phone

Big Tex Storage

3

Houston, TX · 3480 Ella Boulevard

Self-Storage
Phone

Lockaway Storage

3

San Antonio, TX · 21703 Encino Commons

Self-Storage
Phone

Community Self Storage

3

Houston, TX · 2101 South Voss Road

Self-Storage
Phone

Extra Space Storage

3

Houston, TX · 14318 Tomball Parkway

Self-Storage
Phone

Lock Away Storage

3

San Antonio, TX · 6075 De Zavala Road

Self-Storage
Phone Email

Public Storage

3

Houston, TX · 7701 Main Street

Self-Storage
Phone

Public Storage

3

TX · 1033 East 41st Street

Self-Storage
Phone

Stor Self Storage

3

TX · 2201 Kinney Road

Self-Storage
Phone

Morningstar Mini-Storage

3

Austin, TX · 10220 West US Highway 290

Self-Storage
Phone Email

Waters Park Self Storage

3

TX · 12132 North MoPac Expressway

Self-Storage
Phone

Extra Space Storage

3

Houston, TX · 2412 West Holcombe Boulevard

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