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

U-Haul

2

Waco, TX · 200 Texas Central Parkway

Self-Storage
Phone Email

CubeSmart

2

Dallas, TX · 17613 Coit Road

Self-Storage
Phone

E-Z Storage TX

2

Jewett, TX · 29115 US 79

Self-Storage
Phone Email

Stor-N-Lock Self-Storage

2

Salt Lake City, UT · 1060 North Beck Street

Self-Storage
Phone

Deseret Storage

2

Pleasant Grove, UT · 707 West State Street

Self-Storage
Phone

Sky Mountain Storage

2

Hurricane, UT · 575 North 2460 West

Self-Storage
Phone

Lock it up

2

Layton, UT · 495 N King Street

Self-Storage
Phone

U.S. Self Storage

2

Layton, UT · 631 West Gordon Avenue

Self-Storage
⚠️ Phone

Prime Storage

2

Draper, UT · 14039 Minuteman Drive

Self-Storage
Phone

Riverton Self-Storage

2

Riverton, UT · 4258 W 13400 South

Self-Storage
Phone

Overland Self Storage

2

Woods Cross, UT · 1842 West 2425 South

Self-Storage
Phone

CubeSmart

2

Salt Lake City, UT · 350 S Redwood Road

Self-Storage
Phone

Canyon Storage

2

Millcreek, UT · 750 E 3300 South

Self-Storage
Phone Email

Eden Storage Units

2

Eden, UT · 2526 Valley Junction Drive

Self-Storage
Phone Email

Pineview Storage

2

Huntsville, UT · 650 South 7800 East

Self-Storage
Phone Email

Valley Storage

2

Eden, UT · 4909 North Willowbrook Lane

Self-Storage
Phone Email

Stock-N-Lock

2

Lehi, UT · 580 South 850 East

Self-Storage
Phone

Secure Box Self Storage

2

Cedar City, UT · 1702 North Bulldog Road

Self-Storage
Phone Email

Wildcat Storage

2

Layton, UT · 1816 North Fort Lane

Self-Storage
Phone

Monster Boat and RV Storage

2

Saint George, UT · 3909 South Pioneer Road

Self-Storage
Phone

Stor-N-Lock

2

Taylorsville, UT · 4930 South Redwood Road

Self-Storage
Phone

American Fork Storage

2

American Fork, UT · 320 South 100 West

Self-Storage
Phone Email

Public Storage

2

Kearns, UT · 4065 West Sams Boulevard

Self-Storage
Phone Email

Public Storage

2

West Valley City, UT · 3673 South Redwood Road

Self-Storage
Phone Email

54th South Storage

2

Kearns, UT · 4595 West 5400 South

Self-Storage
Phone

Towne Storage

2

West Valley City, UT · 4571 South 5600 West

Self-Storage
Phone

Apex Storage

2

Sandy, UT · 8685 South Harrison Street

Self-Storage
Phone

Oquirrh View Storage

2

West Jordan, UT · 6088 West 9790 South

Self-Storage
Phone

Murray East Storage

2

Murray, UT · 102 East 5460 South

Self-Storage
Phone Email

U-Haul

2

Provo, UT · 551 West Columbia Lane

Self-Storage
Phone Email

Th!nk Storage

2

South Jordan, UT · 10506 South River Heights Drive

Self-Storage
Phone Email

Extra Space Storage

2

West Valley City, UT · 4537 West 3500 South

Self-Storage
Phone

Public Storage

2

Herriman, UT · 5128 West Ashfield Drive

Self-Storage
Phone

Public Storage

2

Nashua, VT · 1600 Southwood Drive

Self-Storage
Phone

Witchduck Self Storage

2

Virginia Beach, VA · 5198 Cleveland Street

Self-Storage
Phone

Blue & Gray Self Storage

2

Powhatan, VA · 1925 Anderson Highway

Self-Storage
Phone

D & L Storage

2

Charleston, WV · 2359 Sissonville Drive

Self-Storage
Phone

Cheriton Mini Storage

2

Cape Charles, VA · 22199 South Bayside Road

Self-Storage
Phone Email

Self Storage at E-Commerce Center of Hampton

2

Hampton, VA · 1708 Todds Lane

Self-Storage
Phone

Rhino Self Storage

2

VA · 1306 Pike Street

Self-Storage
Phone

Skyview Mini Storage

2

Marion, VA · 2045 Hwy 11

Self-Storage
Phone

Lively Storage

2

Lively, VA · 5218 Mary Ball Road

Self-Storage
Phone Email

Domaine

2

VA · 4221 Connecticut Avenue Northwest

Self-Storage
Phone Email

Sandy River Storage

2

Axton, VA · 51 Sandy River Road

Self-Storage
Phone Email

Exmore Mini Storage - Belle Haven

2

Belle Haven, VA · 16058 Savagetown Road

Self-Storage
Phone

U-Haul

2

Richmond, VA · 900 North Lombardy Street

Self-Storage
Phone Email

Advantage Self Storage

2

Chester, VA · 1715 Piney Creek Road

Self-Storage
Phone Email

Huguenot-Robious Mini Storage

2

Richmond, VA · 11480 Robious Road

Self-Storage
Phone

Mini Price Storage

2

Henrico, VA · 3511 Pemberton Road

Self-Storage
⚠️ Phone

Go Store It

2

Moseley, VA · 16830 Hull Street Road

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