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

Super 8

2

Santa Rosa, NM · 2075 Historic Route 66

Budget Motels
Phone

Rainbow Inn

2

Carrizozo, NM · 103 Central Avenue

Budget Motels
Phone

Motel 6

2

Gallup, NM · 3306 West Historic Highway 66

Budget Motels
Phone

Motel 6

2

Espanola, NM · 811 South Riverside Drive

Budget Motels
Phone

America's Best Value Inn

2

Santa Rosa, NM · 120 US Highway 54

Budget Motels
Phone

Motel 6

2

Moriarty, NM · 1901 Old US 66 West

Budget Motels
Phone

High Country Lodge

2

NM

Budget Motels
Phone Email

Super 8 by Wyndham Clayton

2

NM

Budget Motels
Phone Email

Mountaineer Inn

2

Reserve, NM · 6 The Lane

Budget Motels
Phone

Sands Motel

2

Portales, NM · 1130 West 1st Street

Budget Motels
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

Valley Rapid Wash

2

NM

Car Washes
Phone

Laundromat on Third

2

Truth or Consequences, NM

Laundromats
Phone

Chaco Wash Laundromat

2

NM

Laundromats
Phone

R&P RV Park and Laundry

2

Artesia, NM

RV Parks 90 Sites 💰 Valuation on file
Phone

Staub Trailer & RV Park

2

Truth or Consequences, NM

RV Parks
Phone

Tom's RV Park

2

Socorro, NM

RV Parks
Phone

Tatum RV

2

Tatum, NM

RV Parks
Phone

The Rock Motel - RV Parking

2

Mountainair, NM

RV Parks
Phone

Merryman Rv Park

2

Jal, NM

RV Parks
Phone

La Hacienda Mobile Home Park

2

Portales, NM

RV Parks
Phone

Ellipse Global Quahada Rv Park

2

Carlsbad, NM

RV Parks
Phone

Guadalupe RV Park

2

Carlsbad, NM

RV Parks
Phone

Horseman RV Park

2

Lordsburg, NM

RV Parks
Phone

Del Prado Motel

2

NM

Budget Motels
Phone

Motel 6

2

NM

Budget Motels
Phone

Rain Tunnel

3

Albuquerque, NM · 5101 Lomas Boulevard Northeast

Car Washes

Octopus Car Wash

3

Albuquerque, NM · 9516 Snowheights Circle Northeast

Car Washes
Email

Bell Car Wash

3

Santa Fe, NM · 1000 West Cordova Road

Car Washes
Email

Roadrunner Carwash

3

Aztec, NM · 1616 West Aztec Boulevard

Car Washes

Las Cruces KOA

3

Las Cruces, NM · 814 Weinrich Road

RV Parks

Hometown Inn + Kitchen

3

NM · 3706 National Parks Highway

Budget Motels

Downtown Inn

3

Albuquerque, NM · 1213 Central Avenue Northwest

Budget Motels
Phone

La Quinta Inn & Suites by Wyndham Santa Rosa

3

Santa Rosa, NM · 2277 Historic Route 66

Budget Motels
Phone Email

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
// 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