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

Midgard Self Storage

2

Murrells Inlet, GA · 4971 Highway 17

Self-Storage
Phone

Alexander Drive Self Storage

2

SC

Self-Storage
Phone Email

Public Storage

2

Conway, SC · 4330 Highway 90

Self-Storage
Phone

S&J Self storage

2

Sioux Falls, SD · 2501 N Maple Lane

Self-Storage
Phone

Area Inc - Storage Units

2

Lake Norden, SD · 410 Jay Headley Avenue

Self-Storage
Phone

Main Street Storage

2

Lake Norden, SD · 702 Main Avenue

Self-Storage
Phone

J&R Distributing-Storage Units

2

Lake Norden, SD · 610 Jay Headley Avenue

Self-Storage
Phone

Johnson Storage Units

2

Lake Norden, SD · 800 1st Avenue North

Self-Storage
Phone

Inman Street Climate Control Storage

2

Cleveland, TN · 421 Inman Street West

Self-Storage
Phone

Storage Source One

2

TN · 17427 Lee Highway

Self-Storage
Phone

StorMark Self Storage

2

TN

Self-Storage
Phone

Midgard Self Storage

2

Oakland, TN · 130 Pierce Road

Self-Storage
Phone

Midgard Self Storage

2

Springfield, TN · 2758 17th Connecter Ave.

Self-Storage
Phone

Gladeville Mini Storage

2

Mount Juliet, TN · Stewarts Ferry Pike

Self-Storage
Phone

Midgard Self Storage

2

Jackson, TN · 4355 Highway 45 N

Self-Storage
Phone

Legion Road Mini Storage

2

New Caney, TX · 21130 Legion Road

Self-Storage
Phone

Caney Creek Self-Storage

2

New Caney, TX · 18318 Highway 59 South

Self-Storage
Phone

Storage Plus

2

Georgetown, TX · 4401 Williams Drive

Self-Storage
Phone

Storage King

2

Taylor, TX · 3910 North Main Street

Self-Storage
Phone

Happy Camper Boat and RV Storage

2

Georgetown, TX · 4233 County Road 110

Self-Storage
Phone

Extra Space Storage

2

Kyle, TX · 5141 Cromwell Drive

Self-Storage
Phone

Seaside Storage Inc

2

Sinton, TX · 8109 US Highway 77

Self-Storage
Phone

A Discount Storage

2

Jersey Village, TX · 7906 Wright Road

Self-Storage
Phone

CubeSmart

2

Houston, TX · 1202 Shepherd Drive

Self-Storage
Phone

Neighbor Self Storage

2

Cedar Park, TX · 1600 South Lakeline Boulevard

Self-Storage
Phone

Neighbor Self Storage

2

Austin, TX · 2800 Bartons Bluff Lane

Self-Storage
Phone

Spicewood Super Storage

2

Spicewood, TX · 9514 East State Highway 71

Self-Storage
Phone

Highway 46 Self-Storage

2

Seguin, TX · 602 South State Highway 46

Self-Storage
Phone

Morningstar Storage

2

Buda, TX · 1001 West Goforth Road

Self-Storage
Phone

StorageMart

2

San Antonio, TX · 9580 Potranco Road

Self-Storage
Phone

Solid Ground Storage

2

Elgin, TX · 505 West US Highway 290

Self-Storage
Phone

Lone Star Climate Controlled Storage

2

Ingram, TX · 3154 Junction Highway

Self-Storage
Phone

Extra Space Storage

2

San Antonio, TX · 10260 Marbach Road

Self-Storage
Phone

Public Storage

2

San Antonio, TX · 6624 FM78

Self-Storage
Phone

Georgetown Self Storage

2

Georgetown, TX · 6607 Lakewood Drive South

Self-Storage
Phone

Mayflower Self Storage

2

TX

Self-Storage
Phone

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
← Prev 48 / 127 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