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

1400 North Storage

1B

Logan, UT · 450 West 1400 North

Self-Storage
Phone Email

Gateway Storage

1B

Logan, UT · 150 West 1650 North

Self-Storage
Phone Email

Kearns Discount Storage

1B

Kearns, UT · 4184 West 5415 South

Self-Storage
Phone Email

Store It At the Hub

1B

Lehi, UT · 1746 North Boston Street

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

Extra Space Storage

2

Layton, UT · 2010 North Main Street

Self-Storage
Phone

Extra Space Storage

2

Salt Lake City, UT · 3947 S State Street

Self-Storage
Phone

East Warehouse Self Storage

2

Layton, UT · 2502 Mountain Shadow Drive

Self-Storage
Phone

21st South Storage

2

South Salt Lake, UT · 980 2100 South

Self-Storage
Phone

Top Value Storage

2

West Jordan, UT · 8524 S Old Bingham Highway

Self-Storage
Phone

Sunset Storage & RV

2

Eagle Mountain, UT · 9361 North Sunset Drive

Self-Storage
Phone

Fifty Four Storage

2

Taylorsville, UT · 3852 West 5400 South

Self-Storage
Phone

Clinton Storage Center

2

UT

Self-Storage
Phone

Christensen Storage

2

UT

Self-Storage
Phone

West Jordan Self-Storage

2

UT

Self-Storage
Phone

Layton Crossing Storage

3

Layton, UT · 2176 N Layton Crossing Pkwy

Self-Storage

Extra Space Storage

3

Murray, UT · 6384 South Cottonwood Street

Self-Storage

Storage Connection

3

Provo, UT · 1919 Ironton Boulevard

Self-Storage
Phone Email

Towne Storage Bluffdale

3

Bluffdale (Sl Co), UT · 15403 South Redwood Road

Self-Storage

Prime Storage

3

Lehi, UT · 1985 North Pointe Meadow Drive

Self-Storage

Lock It Up Self Storage

3

Bountiful, UT · 620 South 200 West

Self-Storage
1 / 2 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