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

Bee Safe Storage

3

Simpsonville, SC · 306 Harrison Bridge Road

Self-Storage

Extra Space Storage

3

Columbia, SC · 441 Clemson Road

Self-Storage

POM Self Storage

3

Greer, SC · 207 South Buncombe Road

Self-Storage
Phone

Bee Safe

3

Columbia, SC · 1214 Longreen Parkway

Self-Storage

U-Haul

3

Columbia, SC · 5604 Forest Drive

Self-Storage
Phone Email

Palmetto Self Storage

3

Laurens, SC · 31 Cranes Park Drive

Self-Storage
Phone

Devon Self Storage

3

SC · 5649 South Boulevard

Self-Storage
Phone

SecurCare Self Storage

3

Charleston, SC · 1074 Clements Ferry Road

Self-Storage
Phone

Extra Space Storage

3

Myrtle Beach, SC · 230 Village Center Boulevard

Self-Storage

Public Storage

3

SC · 7921 South Boulevard

Self-Storage
Phone Email

Bee Safe Storage and Wine Cellar

3

Lexington, SC · West Main Street

Self-Storage

Extra Space Storage

3

Spartanburg, SC · 2119 East Main Street

Self-Storage
Phone

Highway 23 Mini Warehouses

3

Batesburg-Leesville, SC · West Church Street

Self-Storage
Phone

CubeSmart

3

Lexington, SC · 100 Hermitage Road

Self-Storage
Phone

Hwy 14 Boat & RV Storage

3

Greer, SC · 2764 Old State Highway 14

Self-Storage
Phone

Public Storage

3

Lexington, SC · 4935 Sunset Boulevard

Self-Storage
Phone

Storage Rentals of America

3

Simpsonville, SC · 1108 Northeast Main Street

Self-Storage
Phone Email

U-Haul

3

West Columbia, SC · 1500 Charleston Highway

Self-Storage
Phone

Extra Space Storage

3

Greenville, SC · 1201 Laurens Road

Self-Storage
Phone

Extra Space Storage

3

Greenville, SC · 401 Dunbar Street

Self-Storage
Phone

Extra Space Storage

3

Greenville, SC · 426 Wade Hampton Boulevard

Self-Storage
Phone

Extra Space Storage

3

Greenville, SC · 1009 Woodruff Road

Self-Storage
Phone

CubeSmart

3

Greenville, SC · 1900 Old Buncombe Road

Self-Storage
Phone Email

Modbox Storage

3

Piedmont, SC · 2920 Fork Shoals Road

Self-Storage
Phone

Mini Storage

3

Pelzer, SC · 8613 Augusta Road

Self-Storage
Phone

Eagle Guard Self Storage

3

Piedmont, SC · 7740 Augusta Road

Self-Storage
Phone

Easley Self Storage

3

Easley, SC · 104 La Von Lane

Self-Storage
Phone

Just Stor it

3

Greer, SC · 641 Arlington Road

Self-Storage
Phone Email

U-Haul

3

Spartanburg, SC · 1500 International Drive

Self-Storage
Phone

Hwy 86 Mini Storage

3

Piedmont, SC · 100 Prosperity Boulevard

Self-Storage
Phone

Pelham Road Self Storage

3

Greenville, SC · 345 Pelham Road

Self-Storage
Phone

Extra Space Storage

3

Simpsonville, SC · 2525 Woodruff Road

Self-Storage
Phone

Cool Creek Mini Storage

3

Greer, SC · 2619 North Highway 101

Self-Storage
Phone

Extra Space Storage

3

Greer, SC · 1490 West Wade Hampton Boulevard

Self-Storage
Phone

Hub City Storage

3

Spartanburg, SC · 111 Southport Road

Self-Storage
Phone Email

Storage Rentals of America

3

Spartanburg, SC · 1560 Asheville Highway

Self-Storage

Midgard Self Storage

3

Seneca, SC · 600 Shiloh Road

Self-Storage
Phone

Boiling Springs Self Storage and RV

3

Boiling Springs, SC · 3220 Parris Bridge Road

Self-Storage
Phone

U-Haul

3

Boiling Springs, SC · 120 Birds Eye View

Self-Storage
Phone

Crescent Valley Storage

3

Travelers Rest, SC · 907 Old Highway 25

Self-Storage
Phone

Extra Space Storage

3

Boiling Springs, SC · 1909 Boiling Springs Road

Self-Storage
Phone

Extra Space Storage

3

Boiling Springs, SC · 168 Farm Lake Road

Self-Storage
Phone

SecurCare Self Storage

3

Boiling Springs, SC · 1480 Boiling Springs Road

Self-Storage
Phone

Pack and Lock Self Storage

3

Campobello, SC · 400 South Main Street

Self-Storage
Phone

Beckham Enterprises Mini Storage

3

Lancaster, SC · 4720 Charlotte Highway

Self-Storage
Phone Email

Storage Sense

3

Greenville, SC · 7916 White Horse Road

Self-Storage
Phone

Morningstar Storage

3

Fort Mill, SC · 930 Retail Drive

Self-Storage
Phone Email

Prime Storage

3

SC

Self-Storage
Phone Email

Midgard Self Storage

3

Athens, SC · 4025 Lexington Road

Self-Storage
Phone

CubeSmart

3

Greenville, SC · 25 Airview Drive

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