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

Neighbor Self Storage

2

Towson, MD · 20 Lambourne Road

Self-Storage
Phone

Neighbor Self Storage

2

Towson, MD · 1274 East Joppa Road

Self-Storage
Phone

YourSpace Storage

2

Bel Air, MD · 2100 Emmorton Road

Self-Storage
Phone

Stack & Store Self Storage

2

Fallston, MD · 1621 Belair Road

Self-Storage
Phone

Prime Storage

2

MD

Self-Storage
Phone

3-D Self Storage

2

Edgewood, MD · 2702 Pulaski Highway

Self-Storage
Phone

Extra Space Storage

2

Annapolis, MD · 708 Bestgate Road

Self-Storage
⚠️ Phone

Denton Self Storage

2

MD

Self-Storage
Phone

Add Vantage Self Storage

2

MD

Self-Storage
Phone

Extra Space Storage

3

Edgewood, MD · 1306 Pulaski Highway

Self-Storage

Prime Storage

3

Baltimore, MD · 3500 Wilkens Avenue

Self-Storage

Public Storage

3

Owings Mills, MD · 9720 Reisterstown Road

Self-Storage
Phone

ez Storage

3

Parkville, MD · 7304 McClean Boulevard

Self-Storage
Phone

Extra Space Storage

3

Middle River, MD · 9810 Pulaski Highway

Self-Storage

YourSpace Storage

3

Joppatowne, MD · 310 Pulaski Highway

Self-Storage

404 Self Storage

3

Denton, MD · 24246 Shore Highway

Self-Storage

Morningstar Self Storage

3

Baltimore, MD · 1760 Union Avenue

Self-Storage

Belle Hill Self Storage

3

Elkton, MD · 6 Warner Road

Self-Storage
Phone Email

CubeSmart

3

Frederick, MD · 811 East South Street

Self-Storage

Melrose Mini Storage

3

Manchester, MD · 4499 Hanover Pike

Self-Storage
Phone Email

Extra Space Storage

3

Baltimore, MD · 3642 Falls Road

Self-Storage
Phone Email

Extra Space Storage

3

MD · 1350 Innovation Way

Self-Storage
Phone

CubeSmart

3

Capitol Heights, MD · 1501 Ritchie Station Court

Self-Storage
Phone

Public Storage

3

Cockeysville, MD · 410 West Padonia Road

Self-Storage

Extra Space Storage

3

Cockeysville, MD · 9701 Beaver Dam Road

Self-Storage

Extra Space Storage

3

Kensington, MD · 10590 Metropolitan Avenue

Self-Storage
Phone

Vault Storage Co

3

MD

Self-Storage

Public Storage

3

MD · 5000 Indian Head Highway

Self-Storage
Phone

Fairfax Transfer and Storage

3

MD

Self-Storage
Phone

Shady Grove Self Storage

3

MD · 15942 Shady Grove Road

Self-Storage
Phone

Extra Space Storage

3

Rockville, MD · 204 North Stonestreet Avenue

Self-Storage
Phone

Extra Space Storage

3

Cockeysville, MD · 11150 York Road

Self-Storage

Store-All Self Storage

3

Manassas, MD · 7909 Sudley Road

Self-Storage
Phone

Extra Space Storage

3

MD · West Diamond Avenue

Self-Storage
Phone

Extra Space Storage

3

MD · 1250 Taylor Street Northwest

Self-Storage
Phone

Public Storage

3

MD

Self-Storage
Phone Email

Chesapeake Mini Storage

3

Middle River, MD · 3000 Eastern Boulevard

Self-Storage
Phone Email

Extra Space Storage

3

Cockeysville, MD · 1 Beaver Court

Self-Storage

Public Storage

3

Silver Spring, MD · 12355 Prosperity Drive

Self-Storage
Phone

Extra Space Storage

3

Silver Spring, MD · 7722 Fenton Street

Self-Storage
Phone

Self Storage Plus

3

MD · 9107 Gaither Road

Self-Storage
Phone

Extra Space Storage

3

MD · 6102 Freds Oak Road

Self-Storage
Phone

ezStorage

3

MD · 9002 Red Branch Road

Self-Storage
Phone

Devon Self Storage

3

Baltimore, MD · 3500 Pulaski Highway

Self-Storage
Phone

Public Storage

3

Gaithersburg, MD · 19900 Goshen Road

Self-Storage
Phone

CubeSmart

3

Lutherville, MD · 16 West Aylesbury Road

Self-Storage
Phone

Public Storage

3

Columbia, MD · 9265 Berger Road

Self-Storage
Phone

Extra Space Storage

3

Columbia, MD · 10400 Old Columbia Road

Self-Storage
Phone Email

Public Storage

3

Parkville, MD · 1739 East Joppa Road

Self-Storage
Phone

Public Storage

3

Catonsville, MD · 820 Kent Avenue

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