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

Space Shop Self Storage

2

Marietta, GA · 2925 Gordy Parkway Northeast

Self-Storage
Phone

Public Storage

2

GA · 4775 Alabama Road

Self-Storage
Phone Email

Public Storage

2

GA · 732 Chance Road

Self-Storage
Phone Email

Snapbox Self Storage

2

GA · 1745 Roswell Road

Self-Storage
Phone Email

Public Storage

2

GA · 4205 Bells Ferry Road Northwest

Self-Storage
Phone Email

Compass Self Storage

2

GA · 3885 Frey Road Northwest

Self-Storage
Phone

Prime Storage

2

GA · 1225 Canton Road Northeast

Self-Storage
Phone Email

Walker Street Mini Storage

2

Atlanta, GA · 165 Walker Street Southwest

Self-Storage
Phone Email

Canton Road Self Storage

2

GA · 4755 Canton Road Northeast

Self-Storage
Phone Email

Tomlinson Self Storage

2

Thomasville, GA · 828 Smith Avenue

Self-Storage
Phone

Midgard Self Storage

2

Suwanee, GA · 130 Peachtree Industrial Boulevard

Self-Storage
Phone

Midgard Self Storage

2

Cumming, GA · 220 Meadow Drive

Self-Storage
Phone

Mid-South Super Storage

2

Valdosta, GA · 379 Connell Road

Self-Storage
Phone

River Street Store All

2

GA

Self-Storage
Phone

Midgard Self Storage

2

Athens, GA · 925 Danielsville Rd

Self-Storage
Phone

Midgard Self Storage

2

Cumming, GA · 1715 Peachtree Parkway

Self-Storage
Phone

Midgard Self Storage

2

Dawsonville, GA · 127 Storage Way

Self-Storage
Phone

Midgard Self Storage

2

Fayetteville, GA · 235 GA-314

Self-Storage
Phone

Midgard Self Storage

2

Gainesville, GA · 1405 McEver Road

Self-Storage
Phone

Midgard Self Storage

2

Augusta, GA · 2709 Gordon Highway

Self-Storage
Phone

Midgard Self Storage

2

Acworth, GA · 5534 Alabama Road

Self-Storage
Phone

Midgard Self Storage

2

Centerville, GA · 3528 US-41

Self-Storage
Phone

Albany Mini Warehouses

2

Albany, GA · 3007 Ledo Road

Self-Storage
Phone

Prime Storage

2

GA · 3850 Shallowford Road Northeast

Self-Storage
Phone

Midgard Self Storage

2

Roswell, GA · 1240 Alpharetta Highway

Self-Storage
Phone

Midgard Self Storage

2

Oakwood, GA · 3825 Old Flowery Branch Road

Self-Storage
Phone

Midgard Self Storage

2

Clermont, GA · 5924 Cleveland Highway

Self-Storage
Phone

Midgard Self Storage

2

Milton, GA · 13700 Alpharetta Highway

Self-Storage
Phone

Midgard Self Storage

2

Warner Robins, GA · 1549 Russell Parkway

Self-Storage
Phone

Alexander Drive Self Storage

2

GA

Self-Storage
Phone Email

Midgard Self Storage

2

Fayetteville, GA · 1950 State Route 85

Self-Storage
Phone

Midgard Self Storage

2

Gainesville, GA · 5335 Browns Bridge Road

Self-Storage
Phone

Midgard Self Storage

2

Woodstock, GA · 1425 Big Springs Road

Self-Storage
Phone

Preserve Self Storage

2

Pooler, GA · 1415 Quacco Road

Self-Storage
Phone

Highway Storage

2

GA · 607 Highway Avenue

Self-Storage
Phone

Q-Bicals Self Storage

2

Blairsville, GA · 26 Loudermilk Road

Self-Storage
Phone

Matt Highway Storage

2

Cumming, GA · 3530 Matt Highway

Self-Storage
Phone

Midgard Self Storage

2

Gainesville, GA · 2779 Dawsonville Highway

Self-Storage
Phone

Midgard Self Storage

2

Covington, GA · 5272 Highway 20 South

Self-Storage
Phone

Midgard Self Storage

2

Eastanollee, GA · 63 Scott Road

Self-Storage
Phone

Midgard Self Storage

2

Gainesville, GA · 4500 Browns Bridge Road

Self-Storage
Phone

Midgard Self Storage

2

Peachtree Corners, GA · 7112 Peachtree Industrial Boulevard

Self-Storage
Phone

Midgard Self Storage

2

Social Circle, GA · 111 Thurman Baccus Road

Self-Storage
Phone

Midgard Self Storage

2

Statesboro, GA · 21150 US Highway 80 East

Self-Storage
Phone

Midgard Self Storage

2

Savannah, GA · 2201 Beaumont Drive

Self-Storage
Phone

Midgard Self Storage

2

Murrells Inlet, GA · 4971 Highway 17

Self-Storage
Phone

Storage Xxtra

3

McDonough, GA · 6 Farris Drive

Self-Storage
Phone Email

Self-Storage Mini Warehouses

2

GA

Self-Storage
Phone

Storage Sense

2

GA

Self-Storage
Phone

Pilgrim Mill Storage

2

GA

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