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

Comet National Shipping

1B

Norcross, GA · 1567 Beaver Ruin Road

Self-Storage
Phone Email

Mariners Storage

1B

Kingsland, GA · 2341 Village Drive

Self-Storage
Phone Email

Smart Storage LLC

1B

Social Circle, GA · 179 Highway 11 South

Self-Storage
Phone Email

Highway 5 Self Storage

1B

GA · 4945 Canton Road Northeast

Self-Storage
Phone Email

Prime Storage

1B

GA · 1155 Powers Ferry Place Southeast

Self-Storage
Phone Email

Storage King USA

2

Tallahassee, GA · 942 Capital Circle SW

Self-Storage
Phone

Colonial Self Storage

2

Albany, GA · 1604 Camp Ln

Self-Storage
Phone

Fountain Mini Storage LLC

2

Columbus, GA · 1711 Fountain Court

Self-Storage
Phone

Cartersville Storage

2

GA · 1976 Joe Frank Harris Parkway Southeast

Self-Storage
Phone Email

Public Storage

2

Roswell, GA · 2300 Holcomb Bridge Road

Self-Storage
Phone Email

Extra Space Storage

2

GA · 1195 Gresham Road Northeast

Self-Storage
Phone

Apple Self Storage

2

Carrollton, GA · 1418 Bankhead Highway

Self-Storage
Phone

West Ellijay Storage

2

Ellijay, GA · 44 Harold Pritchett Road

Self-Storage
Phone Email

Meigs Mini Storage

2

Meigs, GA · 1015 Church Street

Self-Storage
Phone

Davis Creations Self Storage

2

Valdosta, GA · 402 Murray Road

Self-Storage
Phone

CubeSmart Self Storage

2

GA · 1966 Leland Drive Southeast

Self-Storage
Phone

Compass Self Storage

2

Lawrenceville, GA · 282 East Crogan Street

Self-Storage
Phone

The RV Loft

2

GA · 980 Marietta Industrial Drive Northeast

Self-Storage
Phone Email

Extra Space Storage

2

Atlanta, GA · 489 Decatur Street Southeast

Self-Storage
Phone

Extra Space Storage

2

Greenville, GA · 1701 Woodruff Road

Self-Storage
Phone

Public Storage

2

Marietta, GA · 1285 Kennestone Circle Northwest

Self-Storage
Phone Email

Midgard Self Storage

2

Anderson, GA · 3508 Hopewell Road

Self-Storage
Phone Email

SmartStop Self Storage

2

Marietta, GA · 2035 Powers Ferry Road Southeast

Self-Storage
Phone

Extra Space Storage

2

GA · 3148 Johnson Ferry Road Northeast

Self-Storage
Phone

Extra Space Storage

2

Woodstock, GA · 42 Sycamore Lane

Self-Storage
Phone

Extra Space Storage

2

Marietta, GA · 1490 Terrell Mill Road Southeast

Self-Storage
Phone

Extra Space Storage

2

Marietta, GA · 1725 Roswell Road

Self-Storage
Phone

Morningstar Storage

2

GA · 3420 Sandy Plains Road

Self-Storage
Phone Email

Augusta Self Storage

2

Augusta, GA · 255 Boy Scout Road

Self-Storage
Phone

U-Haul Moving & Storage of Augusta West

2

Augusta, GA · 3515 Wrightsboro Road

Self-Storage
Phone Email

Summit Self Storage

2

Augusta, GA · 2955 Gun Club Road

Self-Storage
Phone

Extra Space Storage

2

GA · 1484 Northside Drive Northwest

Self-Storage
Phone

Extra Space Storage

2

GA · 331 Chastain Road Northwest

Self-Storage
Phone

Extra Space Storage

2

Kennesaw, GA · 3950 Jiles Road

Self-Storage
Phone

SpareBox Storage

2

Athens, GA · 185 South Milledge Drive

Self-Storage
Phone

Public Storage

2

GA · 2307 Canton Road Northeast

Self-Storage
Phone Email

Fortress Storage

2

Douglasville, GA · 7750 Dallas Highway

Self-Storage
Phone

Extra Space Storage

2

Roswell, GA · 1150 Old Ellis Road

Self-Storage
Phone

SecurCare Self Storage

2

Dallas, GA · 3587 East Paulding Drive

Self-Storage
Phone

A-Highway 92 Storage

2

Dallas, GA · 3874 Hiram Acworth Highway

Self-Storage
Phone

Continental Self Storage

2

Rincon, GA · 315 South Columbia Avenue

Self-Storage
Phone

36 Storage

2

Covington, GA · 10484 Highway 36

Self-Storage
Phone

Public Storage

2

Roswell, GA · 11195 Alpharetta Highway

Self-Storage
Phone Email

Kennesaw Self Storage

2

GA · 3050 North Main Street

Self-Storage
Phone

Public Storage

2

GA · 3369 Canton Road Northeast

Self-Storage
Phone Email

American Mini Storage

2

GA · 2469 Old US 41 Highway Northwest

Self-Storage
Phone

Extra Space Storage

2

GA · 2095 Attic Parkway

Self-Storage
Phone

Extra Space Storage

2

GA · 1987 Canton Road Northeast

Self-Storage
Phone

LifeStorage

2

GA · 1525 Williams Drive Northeast

Self-Storage
Phone

U-Haul Moving & Storage of Kennesaw

2

GA · 2085 Cobb Parkway

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