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

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

Mineola Self Storage

3

Mineola, TX · 1823 South United States Highway 69

Self-Storage
Phone

Extra Space Storage

3

Mesquite, TX · 1350 North Belt Line Road

Self-Storage
Phone Email

Public Storage

3

Frisco, TX · 6707 Eldorado Parkway

Self-Storage
Phone

CubeSmart

3

Balch Springs, TX · 4108 Hickory Tree Road

Self-Storage
Phone

Public Storage

3

Mesquite, TX · 3443 Sorrento Drive

Self-Storage
Phone

Extra Space Storage

3

Mesquite, TX · 2680 Gus Thomasson Road

Self-Storage
Phone Email

West Argyle Storage

3

TX

Self-Storage
Phone

Bronco Bubbles Carwash

3

Sonora, TX · 404 South Crockett Avenue

Car Washes

BlueWave Express Car Wash

3

Eagle Pass, TX · 645 South Bibb Avenue

Car Washes
Phone Email

H-E-B Car Wash

3

Alice, TX · East Main Street

Car Washes
Phone

The Bubble Bath

3

San Antonio, TX · Austin Highway

Car Washes
Phone

H-E-B Car Wash

3

Hutto, TX · 5000 State Highway 130

Car Washes
Phone

Shine AutoSpa Midtown

3

Houston, TX · 4401 Almeda Road

Car Washes
Phone

Splashes

3

Pearland, TX · 9724 West Broadway Street

Car Washes
Phone Email

Tidwell Car Wash

3

Houston, TX · 105 Tidwell Road

Car Washes
Phone

Dr. Gleem Auto Salon

3

Houston, TX · 3103 Ella Boulevard

Car Washes
Phone

Swiftwater Car Wash #8

3

San Antonio, TX · 7618 South Presa Street

Car Washes
Phone

H-E-B Car Wash

3

San Antonio, TX · Potranco Road

Car Washes

Blue Wave Express Carwash

3

Houston, TX · 9801 Jones Road

Car Washes
Phone Email

Mister Car Wash

3

Houston, TX · 5735 Westheimer Road

Car Washes
Phone

H-E-B Car Wash

3

Willis, TX · 12350 Interstate 45 North

Car Washes

WhiteWater Express Car Wash

3

Austin, TX · 1901 East Parmer Lane

Car Washes
Phone

Go Car Wash

3

Corpus Christi, TX · 4145 Cimarron Boulevard

Car Washes
Phone

Rodeo Express Carwash

3

Cypress, TX · 17818 Longenbaugh Drive

Car Washes
Phone Email

Chevron

3

Austin, TX · 30 North Interstate 35

Car Washes
Phone

Connie's Car Wash

3

Georgetown, TX · 700 West University Avenue

Car Washes
Phone

iShine Katy

3

Katy, TX · 23103 Clay Road

Car Washes
Phone Email

Whitewater Express Car Wash

3

Cedar Park, TX · 1312 North Bell Boulevard

Car Washes
Phone

H2o Hand Car Wash and Detail

3

Cedar Park, TX · 602 North Bell Boulevard

Car Washes
Phone

Club Car Wash

3

San Antonio, TX · 7514 South Zarzamora Street

Car Washes
Phone

Quick Quack Car Wash

3

Katy, TX · 26742 FM 1093

Car Washes
Phone

Hot City Auto Spa

3

Conroe, TX · 2206 North Frazier Street

Car Washes

ClearWater Express Wash

3

Conroe, TX · 610 North Loop 336 West

Car Washes
Phone Email

Connie's Car Wash

3

Leander, TX · 310 Crystal Falls Parkway

Car Washes
Phone

Wingman Car Wash

3

Marble Falls, TX · 2605 North US Highway 281

Car Washes
Phone Email

H-E-B Wash

3

San Antonio, TX · Culebra Road

Car Washes
Phone

H-E-B Car Wash

3

Leander, TX · 651 North US Highway 183

Car Washes
Phone
← Prev 40 / 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