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

Premier Storage

2

Boise, ID · 5593 North Eagle Road

Self-Storage
Phone

Store Local Storage Co-Op

2

Nampa, ID · 17792 Middleton Road

Self-Storage
Phone Email

Samuels Storage

2

Sandpoint, ID · 55 Samuels Road

Self-Storage
Phone Email

Stor-It Self Storage

2

Caldwell, ID · 2412 East Chicago Street

Self-Storage
Phone

Boat Storage Sandpoint Idaho

2

Sagle, ID · 468501 US 95

Self-Storage
Phone Email

Storage Rentals of America

2

Missoula, MT · 6385 US Highway 10 West

Self-Storage
Phone Email

All Seasons Storage

2

Florence, MT · 6300 Eastside Highway

Self-Storage
Phone Email

Far West Mini Storage

2

Stevensville, MT · 4094 US-93

Self-Storage
Phone Email

Falcon Storage

2

Florence, MT · 5539 Old US Highway 93

Self-Storage
Phone Email

Porterbuilt Storage

2

Hamilton, MT · 1727 US-93

Self-Storage
Phone Email

Titan Self Storage

2

Missoula, MT · 7102 Old Montana 200

Self-Storage
Phone Email

Stor-It Self Storage

2

McCall, ID · 379 Elo Road

Self-Storage
Phone

Anchor Watch Storage

2

Elmo, MT · 46967 1st Street

Self-Storage
Phone Email

TAKAS Self Storage

2

Florence, MT · 5892 Ray Lane

Self-Storage
Phone Email

Pak Rat Mini Storage

2

Missoula, MT · 5145 US-93

Self-Storage
Phone Email

Lolo Self Storage

2

Lolo, MT · 6415 Mormon Creek Road

Self-Storage
Phone

Rusty Saw Storage

2

Columbia Falls, MT · 5322 US 2

Self-Storage
Phone

Big Toy Storage

2

Columbia Falls, MT · 5318 US 2

Self-Storage
Phone

2nd Street Storage

2

Melba, ID · 201 2nd Street

Self-Storage
Phone Email

Headwaters Storage

2

Three Forks, MT · 1969 Bench Road

Self-Storage
Phone Email

Modern Storage Solutions

2

Florence, MT · 5888 Rowan Road

Self-Storage
Phone Email

Ten Kids Storage Units

2

Burley, ID · 736 East 5th Street

Self-Storage
Phone

Extra Space Storage

2

Baton Rouge, LA · 4647 Burbank Drive

Self-Storage
Phone

The Attic Self Storage

2

West Monroe, LA · 200 Warren Drive

Self-Storage
Phone

Jay's Self Storage

2

West Monroe, LA · 115 Knowles Lane

Self-Storage
Phone

Dixie Mini Storage

2

Hattiesburg, MS · 1250 Elks Lake Road

Self-Storage
Phone Email

A Storage 4 You

2

Prairieville, LA · 38247 Highway 42

Self-Storage
Phone Email

Ace Mini Storage

2

West Monroe, LA · 1429 Natchitoches Street

Self-Storage
Phone Email

Extra Space Storage

2

Baton Rouge, LA · 12340 Industriplex Boulevard

Self-Storage
Phone

Cloverland Storage

2

Baton Rouge, LA · 11139 Cloverland Avenue

Self-Storage
Phone

Big John's Landing

2

Prairieville, LA · 43002 Highway 42

Self-Storage
Phone Email

Extra Space Storage

2

Baton Rouge, LA · 7375 Airline Highway

Self-Storage
⚠️ Phone

Climate Control of Louisiana Self Storage Walker

2

Walker, LA · 30525 Walker Road North

Self-Storage
Phone

Extra Space Storage

2

LA · 8566 Siegen Lane

Self-Storage
Phone

The Storage Center

2

Denham Springs, LA · 100 Rushing Road West

Self-Storage
Phone

SmartStop Self Storage

2

Nottingham, MD · 7989 Rossville Boulevard

Self-Storage
Phone

Mini U Storage Chantilly

2

Herndon, VA · 13721 Wall Road

Self-Storage
Phone Email

Public Storage

2

Herndon, VA · 2191 Centreville Road

Self-Storage
⚠️ Phone Email

EZ Storage

2

New Church, VA · 31608 Hudson Street

Self-Storage
Phone

Frederick Self Storage

2

Frederick, MD · 120 Monroe Avenue

Self-Storage
Phone Email

Fort Knox Self Storage

2

Leesburg, VA · 755 Gateway Drive Southeast

Self-Storage
Phone Email

Fort Knox Self Storage

2

Columbia, MD · 9597 Berger Road

Self-Storage
Phone Email

iStorage

2

Gainesville, VA · 5579 Wellington Road

Self-Storage
Phone

Fort Knox Self Storage

2

Frederick, MD · 5106 Old National Pike

Self-Storage
Phone Email

Hardy's Self Storage & Parcel Center

2

Bel Air, MD · 328 South Main Street

Self-Storage
Phone

Public Storage

2

Forest Hill, MD · 16 Newport Drive

Self-Storage
Phone

U-Haul

2

Groveton, VA · 6910 Richmond Highway

Self-Storage
Phone Email

Fishersville Mini Storage

2

Fishersville, VA · 1725 Jefferson Highway

Self-Storage
Phone Email

Domaine

2

MD · 4221 Connecticut Avenue Northwest

Self-Storage
Phone Email

U-Store

2

Glen Burnie, MD · 612 Crain Highway North

Self-Storage
Phone
← Prev 16 / 127 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