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

CubeSmart

3

Gilbert, AZ · 5750 South Power Road

Self-Storage
Phone

Storage King USA

3

Phoenix, AZ · 1950 West Glendale Avenue

Self-Storage
Phone

Extra Space Storage

3

Mesa, AZ · 5510 East Southern Avenue

Self-Storage
Phone

CubeSmart

3

Mesa, AZ · 909 South Country Club Drive

Self-Storage
Phone

Public Storage

3

Mesa, AZ · 810 South Country Club Drive

Self-Storage
Phone

U-Haul

3

Mesa, AZ · 125 West Hampton Avenue

Self-Storage
Phone

CubeSmart

3

Mesa, AZ · 240 East Southern Avenue

Self-Storage
Phone

Mesa Self Storage on Broadway

3

Mesa, AZ · 1060 West Broadway Road

Self-Storage

Key Storage

3

Mesa, AZ · 2422 West Broadway Road

Self-Storage
Phone

Extra Space Storage

3

Mesa, AZ · 837 East Broadway Road

Self-Storage
Phone

Extra Space Storage

3

Mesa, AZ · 139 North Greenfield Road

Self-Storage
Phone

RightSpace Storage

3

Mesa, AZ · 6660 East Main Street

Self-Storage
Phone Email

Devon Self Storage

3

Mesa, AZ · 1930 South Pennington

Self-Storage

Central Self Storage

3

Chandler, AZ · 641 East Warner Road

Self-Storage
Phone

Storage West

3

Chandler, AZ · 1262 North Arizona Avenue

Self-Storage
Phone

Arizona Storage Inns

3

Phoenix, AZ · 502 West Baseline Road

Self-Storage
Phone

Extra Space Storage

3

Tempe, AZ · 1601 East Southshore Drive

Self-Storage
Phone

U-Haul

3

Glendale, AZ · 12280 North 51st Avenue

Self-Storage
Phone

StorQuest

3

Scottsdale, AZ · 9350 North 94th Street

Self-Storage
Phone

Public Storage

3

Scottsdale, AZ · 14401 North Hayden Road

Self-Storage
Phone

Extra Space Storage

3

Scottsdale, AZ · 15023 North Pima Road

Self-Storage
Phone

Advantage Storage

3

Surprise, AZ · 17225 North Dysart Road

Self-Storage
Phone

Advantage Storage

3

Surprise, AZ · 13516 West Foxfire Drive

Self-Storage
Phone

Public Storage

3

Surprise, AZ · 16860 North El Mirage Road

Self-Storage
Phone

Public Storage

3

Gilbert, AZ · 1515 North Greenfield Road

Self-Storage
Phone

CubeSmart

3

Mesa, AZ · 7110 East Southern Avenue

Self-Storage
Phone

Public Storage

3

Mesa, AZ · 5910 East McDowell Road

Self-Storage
Phone

Red Mountain Self Storage & RV

3

Mesa, AZ · 5612 East McDowell Road

Self-Storage
Phone

Extra Space Storage

3

Phoenix, AZ · 20001 North 35th Avenue

Self-Storage
Phone

StorArmerica DC Ranch

3

Scottsdale, AZ · 17492 North 91st Street

Self-Storage
Phone

Storage Solutions

3

Avondale, AZ · 1327 North Dysart Road

Self-Storage
Phone

Extra Space Storage

3

Peoria, AZ · 10700 North 95th Avenue

Self-Storage
Phone Email

Arizona Self Storage

3

Peoria, AZ · 9275 West Olive Avenue

Self-Storage
Phone Email

Advantage Storage

3

Buckeye, AZ · 1596 South Watson Road

Self-Storage
Phone

StorQuest

3

Phoenix, AZ · 10622 West Indian School Road

Self-Storage
Phone

American Mini Storage

3

Avondale, AZ · 10400 West McDowell Road

Self-Storage
Phone

Store More! Self Storage

3

Phoenix, AZ · 1815 North 91st Avenue

Self-Storage
Phone

Public Storage

3

Phoenix, AZ · 7410 West Mcdowell Road

Self-Storage
Phone

Everest Self Storage - McDowell

3

Phoenix, AZ · 6315 West McDowell Road

Self-Storage
Phone

Public Storage

3

Phoenix, AZ · 1239 North 54th Avenue

Self-Storage
Phone

U-Haul

3

Phoenix, AZ · 2247 West McDowell Road

Self-Storage
Phone

Dose Moving & Storage

3

Mesa, AZ · 8953 East Starfire Avenue

Self-Storage
Phone

CubeSmart

3

Mesa, AZ · 135 East McKellips Road

Self-Storage
Phone

Key Storage - Scottsdale

3

Scottsdale, AZ · 502 North Hayden Road

Self-Storage
Phone

Tri-City Storage Solutions

3

Scottsdale, AZ · 1445 East McKellips Road

Self-Storage
Phone

Tempe Choice Self Storage

3

Tempe, AZ · 816 North Scottsdale Road

Self-Storage
Phone

U-Haul

3

Phoenix, AZ · 4950 East McDowell Road

Self-Storage
Phone

Guardian Self Storage

3

Phoenix, AZ · 3131 East McDowell Road

Self-Storage
Phone

Sundance Self Storage

3

Buckeye, AZ · 23380 West Yuma Road

Self-Storage
Phone

Cowdrey Mini Storage

3

Mesa, AZ · 2135 East Broadway Road

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