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

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

Storage Rentals of America

2

Elizabethtown, KY · 4625 North Dixie Highway

Self-Storage
Phone Email

Stor All Self Storage

2

Louisville, KY · 5601 New Cut Road

Self-Storage
Phone

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

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

Aiken Road Storage Center

2

Louisville, KY · 13100 Aiken Road

Self-Storage
Phone

Interchange Self Storage

2

Bowling Green, KY · 460 Three Springs Road

Self-Storage
Phone

Stow-A-Way Mini-Warehouse

2

Radcliff, KY · 262 Shelby Avenue

Self-Storage
Phone

Storage Source One

2

KY · 17427 Lee Highway

Self-Storage
Phone

Longview Storage

2

Bedford, KY · 1163 Hwy 42 W

Self-Storage
Phone

Costigan’s Storage

2

KY · 9602 Highway 27 North

Self-Storage
Phone

U-Stor-IT

2

Stanton, KY · 21 Molly B Street

Self-Storage
Phone

Sunrise Stor & Lock

2

KY

Self-Storage
Phone Email

Pirate Town Storage

2

Stanton, KY · 290 East Elkins Street

Self-Storage
Phone

Bethel Mini Storage

2

KY

Self-Storage
Phone

Beechgrove Self Storage

2

KY

Self-Storage
Phone

Storage Plus

2

KY

Self-Storage
Phone

Batavia Heights Storage

2

KY

Self-Storage
Phone

Stowe It, Two

2

KY

Self-Storage
Phone

R&R Self Storage

2

KY

Self-Storage
Phone

Turnkey Storage

2

KY

Self-Storage
Phone

Hi & Dry Self Storage

2

KY

Self-Storage
Phone

Freedom Storage

3

KY · 185 Lock Road

Self-Storage
Phone Email

Public Storage

3

Louisville, KY · 6500 Jefferson Boulevard

Self-Storage

Westport Mini Storage

3

Plantation, KY · 8711 Westport Road

Self-Storage

Freedom Storage

3

KY

Self-Storage
Phone Email

Hometown Self Storage

3

Fredonia, KY · 413 Cassidy Avenue

Self-Storage
Phone

Mini's U Stuff It Self Storage

3

Louisville, KY · 4702 Summit Drive

Self-Storage
Phone

Prime Storage

3

KY

Self-Storage
Phone

Lexington Mini Storage

3

Lexington, KY · 2081 Bryant Road

Self-Storage
Phone Email

CitySpace Self Storage

3

Louisville, KY · 913 East Main Street

Self-Storage
Phone

Extra Space Storage

3

Louisville, KY · 201 East Market Street

Self-Storage
Phone

Morningstar Storage

3

Louisville, KY · 615 West Shipp Avenue

Self-Storage
Phone Email

STOR-ALL

3

Lexington, KY · 2670 Palumbo Drive

Self-Storage
Phone

Rent-A-Center

3

Bowling Green, KY · 2945 Scottsville Road

Self-Storage
Phone

24/7 Self Storage Louisville

3

Louisville, KY · 354 Farmington Avenue

Self-Storage
Phone

Stor All Self Storage

3

Louisville, KY · 1919 Brownsboro Road

Self-Storage
Phone

West 68 Self-Storage

3

Hopkinsville, KY · West 7th Street

Self-Storage
Phone

Turbo Self Storage

3

Radcliff, KY · 1625 North Logsdon Parkway

Self-Storage
Phone

Q-2 Self Storage

3

Louisville, KY · 6651 Paramount Park Drive

Self-Storage
Phone

Brown County Storage

3

KY

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