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

Gold Corner Storage

1B

Townville, SC · 6224 SC-24

Self-Storage
Phone Email

CubeSmart

2

Spartanburg, SC · 899 East Main Street

Self-Storage
Phone

Midgard Self Storage

2

Anderson, SC · 3508 Hopewell Road

Self-Storage
Phone Email

Prime Storage

2

Rock Hill, SC · 2550 North Cherry Road

Self-Storage
Phone Email

Whiskey Road Storage

2

Aiken, SC · 2598 Whiskey Rd

Self-Storage
Phone

Bee Safe Storage

2

Greer, SC · 805 Hammett Bridge Road

Self-Storage
Phone

Public Storage

2

Greenville, SC · 1408 Boiling Springs Road

Self-Storage
Phone Email

Extra Space Storage

2

Spartanburg, SC · 1640 John B White Sr Boulevard

Self-Storage
Phone

Extra Space Storage

2

Columbia, SC · 9700 Two Notch Road

Self-Storage
Phone

Public Storage

2

Elgin, SC · 811 Bookman Road

Self-Storage
Phone Email

Extra Space Storage

2

Columbia, SC · 10020 Two Notch Road

Self-Storage
Phone

Extra Space Storage

2

Columbia, SC · 810 Sparkleberry Lane

Self-Storage
Phone

Extra Space Storage

2

Columbia, SC · 1721 Clemson Road

Self-Storage
Phone

Extra Space Storage

2

Columbia, SC · 512 Percival Road

Self-Storage
Phone

U-Haul

2

Columbia, SC · 1117 Sparkleberry Lane Extension

Self-Storage
Phone Email

All In Self Storage

2

Seneca, SC · 1089 Old Clemson Highway

Self-Storage
Phone

Go Store It Self Storage

2

Charleston, SC · 17 Walnut Street

Self-Storage
Phone

Extra Space Storage

2

Greenville, SC · 1701 Woodruff Road

Self-Storage
Phone

SmartStop® Self Storage

2

Myrtle Beach, SC · 4630 Dick Pond Road

Self-Storage
Phone

Extra Space Storage

2

Murrells Inlet, SC · 12174 SC 707

Self-Storage
Phone

Climate Masters Indoor Storage

2

Charleston, SC · 634 Marina Drive

Self-Storage
Phone Email

Extra Space Storage

2

Mount Pleasant, SC · 1904 North Highway 17

Self-Storage
Phone

Extra Space Storage

2

Mount Pleasant, SC · 1640 James Nelson Road

Self-Storage
Phone

Go Store It Self Storage

2

Mount Pleasant, SC · 58 Belle Point Drive

Self-Storage
Phone

Midgard Self Storage

2

Seneca, SC · 922 Shiloh Road

Self-Storage
Phone

Midgard Self Storage

2

Greenwood, SC · 246 SC-225

Self-Storage
Phone

Extra Space Storage

2

Columbia, SC · 405 Longtown Road

Self-Storage
Phone

Midgard Self Storage

2

Columbia, SC · 2330 Legrand Road

Self-Storage
Phone

Midgard Self Storage

2

Columbia, SC · 1195 Atlas Road

Self-Storage
Phone

Midgard Self Storage

2

Lexington, SC · 1756 South Lake Drive

Self-Storage
Phone

Midgard Self Storage

2

Greenville, SC · 640 Sulphur Springs Road

Self-Storage
Phone

Midgard Self Storage

2

Anderson, SC · 3215 Highway 81 North

Self-Storage
Phone

Midgard Self Storage

2

Seneca, SC · 1448 Blue Ridge Blvd

Self-Storage
Phone

Midgard Self Storage

2

West Union, SC · 712 Burns Mill Road

Self-Storage
Phone

Midgard Self Storage

2

Bluffton, SC · 11 Oliver Court

Self-Storage
Phone

Midgard Self Storage

2

Rock Hill, SC · 2107 Bog Oak Ln

Self-Storage
Phone

Midgard Self Storage

2

Lake Wylie, SC · 4180 Charlotte Highway

Self-Storage
Phone

Midgard Self Storage

2

Little River, SC · 3738 Sea Mountain Highway

Self-Storage
Phone

SpareBox Storage

2

Myrtle Beach, SC · 3957 Dick Pond Road

Self-Storage
Phone

Midgard Self Storage

2

Pawleys Island, SC · 11167 Ocean Highway

Self-Storage
Phone

Alexander Drive Self Storage

2

SC

Self-Storage
Phone Email

Public Storage

2

Conway, SC · 4330 Highway 90

Self-Storage
Phone

Storage Rentals of America

2 📋 6 locations

Hampton, SC

Self-Storage
⚠️ Phone

Self-Storage Mini Warehouses

2

SC

Self-Storage
Phone

Storage Sense

2

SC

Self-Storage
Phone

Storage Rentals of America

2 📋 6 locations

SC

Self-Storage
⚠️ Phone

Extra Space Storage

3

Indian Land, SC · 8259 Charlotte Highway

Self-Storage

Prime Storage

3

Spartanburg, SC · 240 Cedar Springs Road

Self-Storage
Phone Email

Extra Space Storage

3

Lexington, SC · 748 West Main Street

Self-Storage

SpaceMax Storage

3

Greenville, SC · 305 McAlister Road

Self-Storage
1 / 3 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