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

MI-BOX of Northern Virginia

1B

Manassas, VA · 7425 Merritt Park Drive

Self-Storage
Phone Email

Public Storage

1B

Fairfax, VA · 3180 Draper Drive

Self-Storage
Phone Email

Life Storage

1B

Midlothian, VA · 14421 Midlothian Turnpike

Self-Storage
Phone Email

Isle Stor-It

1B

Smithfield, VA · 20042 Isle of Wight Industrial Park Road

Self-Storage
Phone Email

Ocean Storage

1B

Portsmouth, VA · 3500 Towne Point Road

Self-Storage
Phone Email

Stormark Self Storage

1B

Danville, VA · 253 Parker Road

Self-Storage
Phone Email

Bolt Storage

2

Abingdon, VA · 15875 Porterfield Highway

Self-Storage
Phone

Appalachian Storage

2

Abingdon, VA · 14200 Porterfield Highway

Self-Storage
Phone Email

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

Fort Knox Self Storage

2

Leesburg, VA · 755 Gateway Drive Southeast

Self-Storage
Phone Email

iStorage

2

Gainesville, VA · 5579 Wellington Road

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

Zion Crossroads Self Storage

2

Troy, VA · 659 Better Living Drive

Self-Storage
Phone Email

Public Storage

2

Reston, VA · 2055 Mercator Drive

Self-Storage
Phone

Mini U Storage - Fairfax Station

2

VA · 10930 Clara Barton Drive

Self-Storage
Phone Email

Security Public Storage

2

Ashburn, VA · 45050 Russell Branch Parkway

Self-Storage
Phone

Extra Space Storage

2

Stafford, VA · 2865 Richmond Highway

Self-Storage
Phone

CubeSmart

2

Ashburn, VA · 45000 Russell Branch Parkway

Self-Storage
Phone

Extra Space Storage

2

Leesburg, VA · 42810 Golf Club Road

Self-Storage
Phone

Extra Space Storage

2

Ashburn, VA · 44540 Atwater Drive

Self-Storage
Phone

Self Storage Plus

2

Chantilly, VA · 43014 Little River Turnpike

Self-Storage
Phone

Extra Space Storage

2

Ashburn, VA · 43923 Centergate Drive

Self-Storage
⚠️ Phone

Self Storage Plus

2

Sterling, VA · 24263 Liberty Harvest Court

Self-Storage
Phone

Prime Storage

2

Leesburg, VA · 830 Tavistock Drive Southeast

Self-Storage
Phone

CubeSmart

2

Fairfax, VA · 12831 Fair Lakes Parkway

Self-Storage
Phone

Witchduck Self Storage

2

Virginia Beach, VA · 5198 Cleveland Street

Self-Storage
Phone

Blue & Gray Self Storage

2

Powhatan, VA · 1925 Anderson Highway

Self-Storage
Phone

Cheriton Mini Storage

2

Cape Charles, VA · 22199 South Bayside Road

Self-Storage
Phone Email

Self Storage at E-Commerce Center of Hampton

2

Hampton, VA · 1708 Todds Lane

Self-Storage
Phone

Rhino Self Storage

2

VA · 1306 Pike Street

Self-Storage
Phone

Skyview Mini Storage

2

Marion, VA · 2045 Hwy 11

Self-Storage
Phone

Lively Storage

2

Lively, VA · 5218 Mary Ball Road

Self-Storage
Phone Email

Domaine

2

VA · 4221 Connecticut Avenue Northwest

Self-Storage
Phone Email

Sandy River Storage

2

Axton, VA · 51 Sandy River Road

Self-Storage
Phone Email

Exmore Mini Storage - Belle Haven

2

Belle Haven, VA · 16058 Savagetown Road

Self-Storage
Phone

U-Haul

2

Richmond, VA · 900 North Lombardy Street

Self-Storage
Phone Email

Advantage Self Storage

2

Chester, VA · 1715 Piney Creek Road

Self-Storage
Phone Email

Huguenot-Robious Mini Storage

2

Richmond, VA · 11480 Robious Road

Self-Storage
Phone

Mini Price Storage

2

Henrico, VA · 3511 Pemberton Road

Self-Storage
⚠️ Phone

Go Store It

2

Moseley, VA · 16830 Hull Street Road

Self-Storage
Phone

Jim's Storage

2

VA · 1794 Midland Trail

Self-Storage
Phone

MyStorage Centers

2

Mechanicsville, VA · 7420 Lee Davis Road

Self-Storage
Phone

DM Storage

2

Lynchburg, VA · 2533 Wards Road

Self-Storage
Phone

Warehouse West LLC

2

Lynchburg, VA · 501 Old Plantation Drive

Self-Storage
Phone

Public Storage

2

Virginia Beach, VA · 6009 Providence Road

Self-Storage
Phone Email

Windsor Self Storage

2

Windsor, VA · 9485 Windsor Boulevard

Self-Storage
Phone

Triple Lock Self Storage

2

Lucasville, VA · 77A Morgan Dr

Self-Storage
Phone Email
1 / 6 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