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

Midgard Self Storage

2

Sapphire, NC · 17883 Rosman Highway

Self-Storage
Phone

Lakeside Storage

2

Angier, NC · 4271 Neills Creek Road

Self-Storage
Phone

Harmony Self Storage

2

Harmony, NC · 2969 Harmony Highway

Self-Storage
Phone

Cooper Self Storage

2

NC

Self-Storage
Phone

Storage Now

2

NC

Self-Storage
Phone

Armadillo Self Storage

2

NC

Self-Storage
Phone

Self-Storage Mini Warehouses

2

NC

Self-Storage
Phone

Storage Sense

2

NC

Self-Storage
Phone

Pilgrim Mill Storage

2

NC

Self-Storage
Phone

Storage Rentals of America

2 📋 6 locations

NC

Self-Storage
⚠️ Phone

Boat & RV Covered Storage

2

NC

Self-Storage
Phone

Arden Mills River Self Storage

2

NC

Self-Storage
Phone

West Market Mini Storage

2

NC

Self-Storage
Phone

Avon Self Storage

2

NC

Self-Storage
Phone

Melton Lake Self Storage

2

NC

Self-Storage
Phone

Berkley’s Mini Storage

2

NC

Self-Storage
Phone

Storage Max

3

Wake Forest, NC · 10308 Ligon Mill Road

Self-Storage
Phone Email

Devon Self Storage

3

NC · 5649 South Boulevard

Self-Storage
Phone

Prime Storage

3

Concord, NC · 2450 Derita Road

Self-Storage
Phone Email

Harris Lake Boat Storage

3

New Hill, NC · 5333 New Hill Holleman Road

Self-Storage

Just Store it!

3

NC · 940 North State of Franklin Road

Self-Storage

Outbox Self Storage - Cotswold

3

Charlotte, NC · 4815 Silabert Avenue

Self-Storage

The Mini Storage Center

3

Charlotte, NC · 4500 Monroe Road

Self-Storage
Phone Email

Public Storage

3

NC · 7921 South Boulevard

Self-Storage
Phone Email

Bee Safe Storage

3

Clemmons, NC · 4700 Commercial Park Court

Self-Storage

Public Storage

3

Clayton, NC · 850 South Lombard Street

Self-Storage
Phone

Extra Space Storage

3

Clayton, NC · 2360 Glen Laurel Road

Self-Storage
Phone Email

Ample Storage Center

3

Smithfield, NC · 708 North Brightleaf Boulevard

Self-Storage
Phone

L & T Mini Storage

3

Marion, NC · 2050 Rutherford Road

Self-Storage
Phone

Carolina Self Storage Of NC

3

Clayton, NC · 5681 US 70 Business

Self-Storage
Phone Email

Extra Space Storage

3

Raleigh, NC · 2105 East Millbrook Road

Self-Storage

Hatteras Light Mini Storage

3

Buxton, NC · 47100 Lost Tree Trail

Self-Storage

Prime Storage

3

NC

Self-Storage
Phone Email

U-Haul Center

3

Athens, NC · 494 North Avenue

Self-Storage
Phone

Appalachian Storage Units

3

Hildebran, NC · 107 South Center Street

Self-Storage
Phone

Public Storage

3

Matthews, NC · 10833 Monroe Road

Self-Storage
Phone

KeepSafe Mini-Storage

3

Sanford, NC · 906 Broadway Road

Self-Storage
Phone

TRI STAR STORAGE

3

Granite Falls, NC · 4382 Hickory Boulevard

Self-Storage
Phone

Chambers Storage

3

Clyde, NC · 4457 Crabtree Road

Self-Storage
Phone Email

Public Storage

3

Charlotte, NC · 5301 North Sharon Amity Road

Self-Storage
Phone

Public Storage

3

NC · 5714 West Market Street

Self-Storage
Phone

Extra space storage

3

NC · 302 Davis Grove Circle

Self-Storage
Phone

Franklinton Mini Storage

3

Franklinton, NC · 3301 US 1 HWY

Self-Storage
Phone

Natural Springs Storage

3

Murphy, NC · 1015 Andrews Road

Self-Storage
Phone

Sneed's Garage And Storage

3

Murphy, NC · 51 Sneeds Garage Drive

Self-Storage
Phone

Public Storage

3

Raleigh, NC · 6220 Creedmoor Road

Self-Storage
Phone

Personal Security Storage

3

Raleigh, NC · 1101 Trinity Road

Self-Storage
Phone

Extra Space Storage

3

Raleigh, NC · 6401 Capital Boulevard

Self-Storage

U-Haul

3

Durham, NC · 2422 New Raleigh Highway

Self-Storage
Phone

StorageMart

3

Athens, NC · 3985 Atlanta Highway

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