49,013 properties
0 phones
0 emails
0 for sale
6,315 results · Page 15/127
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:

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

All In Self Storage

2

Seneca, SC · 1089 Old Clemson Highway

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

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

Storage World

2

Opelika, AL · 3055 Society Hill Road

Self-Storage
Phone Email

Sun Self Storage

2

Opelika, AL · 1704 Frederick Road

Self-Storage
Phone

Extra Space Storage

2

Auburn, AL · 2357 East Glenn Avenue

Self-Storage
Phone

Sun Self Storage

2

Opelika, AL · 1615 Thomason Drive

Self-Storage
Phone

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

Storage Rentals of America

2

Radcliff, KY · 2500 South Dixie Boulevard

Self-Storage
Phone Email

Hometown Storage

2

KY · 3525 Grant Line Road

Self-Storage
Phone

Bolt Storage

2

Abingdon, VA · 15875 Porterfield Highway

Self-Storage
Phone

Storage Rentals of America

2

Elizabethtown, KY · 4625 North Dixie Highway

Self-Storage
Phone Email

American Way Storage

2

Harrisburg, IL · 507 West Poplar Street

Self-Storage
Phone

Stor All Self Storage

2

Louisville, KY · 5601 New Cut Road

Self-Storage
Phone

Appalachian Storage

2

Abingdon, VA · 14200 Porterfield Highway

Self-Storage
Phone Email

The Spare Room of Lucasville

2

Lucasville, OH · 52 Merritt Street

Self-Storage
Phone

Public Storage

2

Cincinnati, OH · 4639 Eastgate Boulevard

Self-Storage
Phone Email

Jim's Storage

2

KY · 1794 Midland Trail

Self-Storage
Phone

Q2 Self Storage - Paramount

2

Louisville, KY · 6651 Paramount Park Drive

Self-Storage
Phone

SafeSpot Self Storage

2

Cape Girardeau, MO · 867 Clark Street

Self-Storage
Phone Email

Triple Lock Self Storage

2

Lucasville, KY · 77A Morgan Dr

Self-Storage
Phone Email

CubeSmart

2

Elizabethtown, KY · 2151 Tunnel Hill Road

Self-Storage
Phone

SecurCare Self

2

Radcliff, KY · 1736 South Dixie Boulevard

Self-Storage
Phone

Bristol Mini Storage

2

Bristol, TN · 1201 Bluff City Highway

Self-Storage
Phone

U-Haul

2

ID · 1091 Northgate Mile

Self-Storage
Phone Email

U-Haul

2

ID · 1545 West Broadway Street

Self-Storage
Phone Email

The Storage Place

2

Dillon, MT · Thomsen Avenue

Self-Storage
Phone

Canyon Crossing Self Storage

2

Caldwell, ID · 2704 Owyhee Lane

Self-Storage
Phone Email

Palouse Rentals

2

Moscow, ID · 225 East Palouse River Drive

Self-Storage
Phone Email

Republic Storage

2

Boise, ID · 3501 South Lindsay Avenue

Self-Storage
Phone

Pak Rat Mini Storage

2

Missoula, MT · 3655 Grant Creek Road

Self-Storage
Phone Email

River Road Storage

2

Missoula, MT · 2220 River Road

Self-Storage
Phone Email

Expressway Storage

2

Missoula, MT · 4949 Storehouse Way

Self-Storage
Phone Email
← Prev 15 / 127 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