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

3

Athens, NC · 4025 Lexington Road

Self-Storage

Noda Storage

3

Charlotte, NC · 2401 North Davidson Street

Self-Storage
Phone Email

Public Storage

3

Charlotte, NC · 5641 North Sharon Amity Road

Self-Storage
Phone

Morningstar

3

Charlotte, NC · 928 North College Street

Self-Storage
Phone

CubeSmart

3

Greenville, NC · 25 Airview Drive

Self-Storage

Prime Storage

3

NC

Self-Storage
Phone Email

Extra Space Storage

3

NC · 5110 McGinnis Ferry Road

Self-Storage
Phone

Public Storage

3

NC · 3550 Peachtree Parkway

Self-Storage
Phone

Professional & Self Storage Warehouse

3

NC · 3496 Peachtree Parkway

Self-Storage
Phone

Public Storage

3

Charlotte, NC · 2130 Cambridge Beltway Drive

Self-Storage
Phone

Nova Events

3

Garner, NC · 101 Vandora Springs Road

Self-Storage

Morningstar Storage

3

NC · 3015 South Tryon Street

Self-Storage
Phone

CubeSmart

3

Greenville, NC · 1320 South Pleasantburg Drive

Self-Storage

Extra Space Storage

3

Greenville, NC · 5214 Honbarrier Drive

Self-Storage
Phone

Public Storage

3

Durham, NC · 3933 North Duke Street

Self-Storage
Phone

T & T Self Storage

3

Clinton, NC · 23705 Highway 76 East

Self-Storage
Phone

Extra Space Storage

3

Raleigh, NC · 4151 Doie Cope Road

Self-Storage

Deep River Mini Storage

3

Sanford, NC · 3098 Deep River Road

Self-Storage
Phone

CubeSmart

3

Cary, NC · 920 West Chatham Street

Self-Storage
Phone

Red Pepper Storage

3

Murphy, NC · 2163 Andrews Road

Self-Storage
Phone Email

CubeSmart

3

Charlotte, NC · 16155 Lancaster Highway

Self-Storage
Phone Email

Public Storage

3

Garner, NC · 309 US 70 East

Self-Storage
Phone

Pelham & I-85 Self Storage

3

NC

Self-Storage
Phone Email

CubeSmart Self Storage

3

Durham, NC · 3302 Petty Road

Self-Storage
Phone Email

Public Storage

3

Durham, NC · 3600 Kangaroo Drive

Self-Storage
Phone

A Plus Storage

3

NC · 5839 US Highway 25-70

Self-Storage
Phone

Blue Mountain Storage

3

NC · 7860 NC Highway 213

Self-Storage
Phone Email

Green Acres Self Storage

3

NC · 7371 NC Highway 213

Self-Storage
Phone

Blue Mountain Storage

3

NC · 65 Bull Creek Road

Self-Storage
Phone Email

AAA Mini Storage

3

NC · 1393 US Highway 19

Self-Storage
Phone

Atlas Storage

3

NC · 65 Oscar Young Road

Self-Storage
Phone

Extra Space Storage

3

NC · 4400 Lawrenceville Highway

Self-Storage
Phone

Extra Space Storage

3

NC · 3130 Peachtree Parkway

Self-Storage
Phone

Go Store It

3

Woodfin, NC · 824 Riverside Drive

Self-Storage
Phone

Extra Space Storage

3

Charlotte, NC · 1000 North Graham Street

Self-Storage
Phone

Ample Storage

3

Durham, NC · 600 Muldee Street

Self-Storage
Phone

Bee Safe Storage

3

Raleigh, NC · 11001 Cayden Trail

Self-Storage
Phone Email

Extra Space Storage

3

Garner, NC · 525 US-70

Self-Storage

Extra Space Storage

3

Charlotte, NC · 1350 North Wendover Road

Self-Storage
Phone

Extra Space Storage

3

Charlotte, NC · 10609 Johnston Road

Self-Storage
Phone

Public Storage

3

Charlotte, NC · 7112 Albemarle Road

Self-Storage
Phone

Pollocksville Storage Center

3

Pollocksville, NC · 124 Main Street

Self-Storage
Phone Email

CubeSmart Self Storage

3

Burlington, NC · 382 Harden Street

Self-Storage
Phone

Mountain View Self Storage

3

NC · 2443 Puncheon Fork Road

Self-Storage
Phone

Hodges Mini Warehouses

3

Boone, NC · 399 Daniel Boone Drive

Self-Storage
Phone

Bee Safe Storage

3

Winston-Salem, NC · 110 South Broad Street

Self-Storage
Phone

Dean's Stor-All

3

Wilson, NC · 5166 NC 42

Self-Storage
Phone Email

Your Storage Units

3

NC

Self-Storage
Phone

Extra Space Storage

3

Durham, NC · 355 Morehead Avenue

Self-Storage
Phone

Extra Space Storage

3

Charlotte, NC · 7307 University City Boulevard

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