49,013 properties
0 phones
0 emails
0 for sale
53 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:

A-1 Self Storage

2

Albuquerque, NM · 49 Hotel Circle Northeast

Self-Storage
Phone

Around The Corner Self Storage 125 & 599

2

Santa Fe, NM · 5 Erica Road

Self-Storage
Phone Email

Economy Storage

2

Albuquerque, NM · 10308 Candelaria Road Northeast

Self-Storage
Phone

Los Lunas Self Storage - West

2

Los Lunas, NM · 290 Los Morros Road

Self-Storage
Phone

Cottonwood RV and Storage

2

Jal, NM · 875 South 3rd Street

Self-Storage
Phone Email

Advantage Storage

2

Lovington, NM · 1015 South 17th Street

Self-Storage
Phone

M&M Self Storage

2

Edgewood, NM · 2383 Old Highway 66

Self-Storage
Phone

A-1 Self Storage

2

Albuquerque, NM · 4730 Tramway Boulevard Northeast

Self-Storage
Phone

Shield Storage

2

Rio Rancho, NM · 3301 Northern Blvd NE

Self-Storage
Phone

Shield Storage

2

Bernalillo, NM · 1340 Calle de Las Lomas

Self-Storage
Phone

Extra Space Storage

2

Santa Fe, NM · 900 West San Mateo Road

Self-Storage
Phone

Tripp's E-Z Storage

2

Socorro, NM · 1408 Frontage Road 2040

Self-Storage
Phone

A-1 Self Storage

2

Santa Fe, NM · 3902 Rodeo Road

Self-Storage
Phone

Aardvark Self Storage

2

Santa Fe, NM · 4036 Cerrillos Road

Self-Storage
Phone

D&J Self Storage

2

Los Lunas, NM · 17 Meadow Lake Road

Self-Storage
Phone

The Storage Place

2

Farmington, NM · 31 Road 5577

Self-Storage
Phone

Trust Storage

2

Truth or Consequences, NM · New School Road

Self-Storage
Phone

Extra Space Storage

2

Albuquerque, NM · 4909 Juan Tabo Boulevard Northeast

Self-Storage
Phone

U-Haul

2

Los Lunas, NM · 2217 Autumn Brush Road NW

Self-Storage
Phone

Sentinel Self Storage

2

NM

Self-Storage
Phone

The Storage Shed

2

NM

Self-Storage
Phone

U-Store-It

2

NM

Self-Storage
Phone

The Stor

2

NM

Self-Storage
Phone

Storage White Elephant

2

NM

Self-Storage
Phone

Hatch Mini-Storage

2

NM

Self-Storage
Phone

Onate Storage

3

NM · 3882 Las Colinas Drive

Self-Storage

Santa Fe Self Storage

3

NM · 1501 3rd Street

Self-Storage
Phone Email

A-1 Self Storage

3

NM · 1522 South Pacheco Street

Self-Storage
Phone

Extra Space Storage

3

Albuquerque, NM · 9221 Eagle Ranch Road Northwest

Self-Storage
Phone

Ponil Storage

3

Cimarron, NM · 31130 US Highway 64

Self-Storage
Phone

Los Hermanos Storage

3

NM · 1525 South Pacheco Street

Self-Storage
Phone

Southwest Self Storage

3

NM · 700 98th Street Southwest

Self-Storage

The Storage Place #2

3

Alamogordo, NM · 817 US 70

Self-Storage
Phone Email

U-Haul

3

Farmington, NM · 3000 East Main Street

Self-Storage
Phone

Allpine

3

Los Lunas, NM · 3332 Highway 47

Self-Storage
Phone

Office E-Z Storage

3

Socorro, NM · Frontage Road 2040

Self-Storage
Phone

Extra Space Storage

3

Santa Fe, NM · 2977 Rodeo Park Drive East

Self-Storage
Phone

Wagon Self Storage

3

Santa Fe, NM · 2 Emblem Road

Self-Storage
Phone

Extra Space Storage

3

NM · 1410 Vegas Verdes Drive

Self-Storage
Phone

Stewart Industries International

3

Roswell, NM · 605 Challenger Street

Self-Storage
Phone

U-Haul

3

Albuquerque, NM · 1801 Atrisco Drive Northwest

Self-Storage
Phone

Northside Storage

3

Raton, NM · 1200 North 2nd Street

Self-Storage
Phone

Extra Space Storage

3

Albuquerque, NM · 1200 Legion Road Northeast

Self-Storage
Phone

Longview Self-Storage

3

White Rock, NM · 105-107 Longview Drive

Self-Storage
Phone

The Storage Place #1

3

NM · 302 US 70

Self-Storage
Phone Email

U-Haul

3

Santa Fe, NM · 6591 Cerrillos Road

Self-Storage
Phone

U-Haul

3

Albuquerque, NM · 2217 4th Street Northwest

Self-Storage
Phone

Route 66 Self Storage

3

NM · Central Avenue Southwest

Self-Storage
Phone Email

Avenger Way Storage

3

Santa Fe, NM · Avenger Way

Self-Storage
Phone

Bloomfield Self Storage

3

Bloomfield, NM · 660 East Broadway Avenue

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