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

Extra Space Storage

1B

Nashville, TN · 825 3rd Avenue South

Self-Storage
Phone Email

Storage Depot of Shelbyville

1B

Shelbyville, TN · 1837 Highway 41A North

Self-Storage
Phone Email

Extra Space Storage

2

Memphis, TN · 395 Union Avenue

Self-Storage
Phone

Extra Space Storage

2

Memphis, TN · 6937 Stage Road

Self-Storage
Phone

Extra Space Storage

2

Memphis, TN · 6780 Country Park Drive

Self-Storage
Phone

Bristol Mini Storage

2

Bristol, TN · 1201 Bluff City Highway

Self-Storage
Phone

Fox Self Storage

2

Oak Ridge, TN · 104 Melton Lake Drive

Self-Storage
Phone

Briarcliff Storage

2

Oak Ridge, TN · 699 Emory Valley Road

Self-Storage
Phone

NorthTown Self Storage

2

Oak Ridge, TN · 150 Cairo Road

Self-Storage
Phone

West Knox Solway Storage

2

Knoxville, TN · 5006 Jim Jones Lane

Self-Storage
Phone Email

Your Extra Storage

2

Powell, TN · 7144 Clinton Highway

Self-Storage
Phone

Mini Storage Depot

2

Knoxville, TN · 2180 Lakeside Centre

Self-Storage
Phone

Storage Rentals of America

2

Knoxville, TN · 3980 Papermill Drive

Self-Storage
Phone Email

Cathy's Treasure Cove

2

Savannah, TN · 990 Florence Road

Self-Storage
Phone

All Safe Storage

2

TN · 100 Old Chesterton Lane

Self-Storage
Phone

Super Storage

2

Jackson, TN · 3001 US Hwy 45 Bypass

Self-Storage
Phone Email

Borden Storage

2

Lewisburg, TN · 570 W Church St

Self-Storage
Phone Email

iStorage

2

TN · 4811 Central Avenue Pike

Self-Storage
Phone

24 Hour Self Storage

2

Cleveland, TN · 301 Central Avenue

Self-Storage
Phone

Doe Valley Store-All

2

Mountain City, TN · 5361 State Route 67

Self-Storage
Phone Email

Extra Space Storage

2

Smyrna, TN · 851 Isabella Lane

Self-Storage
Phone

Store Safe Storage

2

Knoxville, TN · 6417 Maynardville Pike

Self-Storage
Phone

BC Storage

2

White Bluff, TN · 411 Ellington Way

Self-Storage
Phone

Public Storage

2

Memphis, TN · 390 South Front Street

Self-Storage
Phone

USA Self Storage

2

Elizabethton, TN · Veterans Memorial Parkway

Self-Storage
Phone

A Plus Storage

2

Elizabethton, TN · 2149 Veterans Memorial Parkway

Self-Storage
Phone

State Line U-Store-It

2

Elizabethton, TN · 3694 State Line Road

Self-Storage
Phone

Inman Street Climate Control Storage

2

Cleveland, TN · 421 Inman Street West

Self-Storage
Phone

Storage Source One

2

TN · 17427 Lee Highway

Self-Storage
Phone

StorMark Self Storage

2

TN

Self-Storage
Phone

Midgard Self Storage

2

Oakland, TN · 130 Pierce Road

Self-Storage
Phone

Midgard Self Storage

2

Springfield, TN · 2758 17th Connecter Ave.

Self-Storage
Phone

Gladeville Mini Storage

2

Mount Juliet, TN · Stewarts Ferry Pike

Self-Storage
Phone

Midgard Self Storage

2

Jackson, TN · 4355 Highway 45 N

Self-Storage
Phone

Arden Mills River Self Storage

2

TN

Self-Storage
Phone

G&S Mini Storage

2

TN

Self-Storage
Phone

Sycamore Mini Storage

2

TN

Self-Storage
Phone

41 A Mini Storage

2

TN

Self-Storage
Phone

Melton Lake Self Storage

2

TN

Self-Storage
Phone

R&R Self Storage

2

TN

Self-Storage
Phone

Storelocal Self Storage

3

Oak Ridge, TN · 340 South Rutgers Avenue

Self-Storage
Phone Email

American Self Storage Center

3

TN · 3517 Central Park Boulevard

Self-Storage

CubeSmart Self Storage

3

Powell, TN · 2629 Clinton Highway

Self-Storage

Just Store it!

3

TN · 940 North State of Franklin Road

Self-Storage

Git'N Go Self Storage

3

Clinton, TN · 1200 North Charles G Seivers Boulevard

Self-Storage
Phone

Buzz-N-Storage

3

Clinton, TN · 1976 Oak Ridge Highway

Self-Storage
Phone

CubeSmart

3

Powell, TN · 7157 Clinton Highway

Self-Storage
Phone

Oak Ridge Storage

3

Oak RIdge, TN · 500 Scarboro Lane

Self-Storage
Phone

Central Karns Storage

3

Karns, TN · 7440 Oak Ridge Highway

Self-Storage

Extra Space Storage

3

Knoxville, TN · 1540 Lovell Road

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