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

Public Storage

2

AZ

Self-Storage
⚠️ Phone

Vulcan Storage

2

AZ

Self-Storage
Phone

AJ Mini Storage

2

Apache Junction, AZ · 1990 West Apache Trail

Self-Storage
Phone

3D Legacy Storage

2

Florence, AZ · 3110 North Pinal Parkway

Self-Storage
Phone

Shield Storage - E Empire Ave

2

Flagstaff, AZ · 4951 East Empire Avenue

Self-Storage
Phone

St. Johns Self Storage

2

Saint Johns, AZ · 860 West Cleveland Street

Self-Storage
Phone

La Casa Blanca Mini Storage

2

Apache Junction, AZ · 2100 West Baseline Avenue

Self-Storage
Phone

U-Haul

2

Tucson, AZ · 2140 West Ruthrauff Road

Self-Storage
Phone

National Self Storage

2

Tucson, AZ · 7555 South Houghton Road

Self-Storage
Phone

CubeSmart

2

Surprise, AZ · 17275 North Litchfield Road

Self-Storage
Phone

Grand Avenue Sure Storage

2

Surprise, AZ · 19424 West Yorkshire Drive

Self-Storage
Phone

In Store Self-Storage

2

Quartzsite, AZ · 510 East Main Street

Self-Storage
Phone

Green Nugget RV Storage

2

Apache Junction, AZ · 566 West Superstition Boulevard

Self-Storage
Phone

Mission RV & Boat Storage

2

Peoria, AZ · 9649 West Olive Avenue

Self-Storage
Phone

Extra Space Storage

2

Tucson, AZ · 2538 North Country Club Road

Self-Storage
⚠️ Phone

Public Storage

2

Tempe, AZ · 4205 South Mill Avenue

Self-Storage
Phone

Happy Valley Storage

2

Sun City, AZ · 25011 North 115th Avenue

Self-Storage
Phone

Extra Space Storage

2

Phoenix, AZ · 10250 North 19th Avenue

Self-Storage
Phone

CubeSmart

2

Tucson, AZ · 519 East Prince Road

Self-Storage
Phone

Extra Space Storage

2

Goodyear, AZ · 14050 West Van Buren Street

Self-Storage
Phone

A Storage Place

2

Coolidge, AZ · 1551 North Arizona Boulevard

Self-Storage
Phone

Central Self Storage

2

Central, AZ · 5875 West US 70

Self-Storage
Phone

Steve's Self Storage

2

Central, AZ · 4744 West US 70

Self-Storage
Phone

Storage 365

3

Phoenix, AZ · 1919 West Southern Avenue

Self-Storage

Storage King USA

3

Tucson, AZ · 4115 East Speedway Boulevard

Self-Storage

Superstition Big Boys' Toys Storage

3

Apache Junction, AZ · 2895 South Winchester Road

Self-Storage

Sure Storage

3

Surprise, AZ · 14924 West Yorkshire Drive

Self-Storage

Extra Space Storage

3

Scottsdale, AZ · East Jomax Road

Self-Storage

Extra Space Storage

3

Oro Valley, AZ · 9225 North Oracle Road

Self-Storage

29 Palm RV & Boat Storage

3

Surprise, AZ · 22611 North 159th Avenue

Self-Storage

U-Haul

3

Tempe, AZ · 800 North McClintock Drive

Self-Storage
Phone

A Cost Less Self Storage

3

Apache Junction, AZ · 2519 West Houston Avenue

Self-Storage
Phone

U-Store-It

3

AZ · South McClintock Drive

Self-Storage
Phone Email

San Manuel Self Storage

3

San Manuel, AZ · 289 East Main Street

Self-Storage
Phone

Havasu Superior Storage

3

Lake Havasu City, AZ · 4622 London Bridge Road

Self-Storage
Phone Email

Tombstone Self Storage

3

Tombstone, AZ · 66 South 11th Street

Self-Storage
Phone Email

Apache Super Storage

3

Mesa, AZ · 8912 East Apache Trail

Self-Storage
Phone

The Collective Self Storage - Scottsdale

3

Scottsdale, AZ · 7025 East McDowell Road

Self-Storage

Public Storage

3

Glendale, AZ · 15220 West Camelback Road

Self-Storage
Phone

Extra Space Storage

3

Gilbert, AZ · 892 South Higley Road

Self-Storage

Overland Storage

3

Mesa, AZ · 1926 South Crismon Road

Self-Storage

Shield Storage - E Copeland Ln

3

Flagstaff, AZ · 5900 East Copeland Lane

Self-Storage
Phone

Prime Storage

3

AZ · East Brown Road

Self-Storage
Phone

Surprise Secure

3

Surprise, AZ · 10812 North Bullard Avenue

Self-Storage
Phone

US Storage Centers

3

Mesa, AZ · 1750 North Country Club Drive

Self-Storage
Phone

U-Haul

3

Mesa, AZ · East Main Street

Self-Storage
Phone

U-Haul

3

Phoenix, AZ · 42301 North 41st Drive

Self-Storage
Phone

Public Storage

3

Scottsdale, AZ · 14950 North 87th Street

Self-Storage
Phone

U-Haul

3

Phoenix, AZ · 20618 North Cave Creek Road

Self-Storage
Phone

Storage Now

3

Scottsdale, AZ · 8355 East McDonald Drive

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