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

U-Haul Storage at Greensboro Coliseum

2

NC · 1560 West Gate City Boulevard

Self-Storage
Phone Email

iStorage

2

NC · 4811 Central Avenue Pike

Self-Storage
Phone

Semper-Fi Vehicle & Self Storage Inc.®

2

Midway Park, NC · 2757 Piney Green Road

Self-Storage
Phone Email

Extra Space Storage

2

NC · 11615 Northpark Drive

Self-Storage
Phone

SafeNest Storage

2

Troutman, NC · 809 South Main Street

Self-Storage
Phone

Right Fit Storage

2

NC · 4106 Spring Garden Street

Self-Storage
Phone

Prime Storage

2

Asheville, NC · 701 Bleachery Boulevard

Self-Storage
Phone

Stored Away Self Storage

2

Sneads Ferry, NC · 2160 NC-172

Self-Storage
Phone Email

Doe Valley Store-All

2

Mountain City, NC · 5361 State Route 67

Self-Storage
Phone Email

SpareBox Storage

2

Athens, NC · 185 South Milledge Drive

Self-Storage
Phone

Lucama Self Storage

2

Lucama, NC · 5300 US 301

Self-Storage
Phone

Extra Space Storage

2

Raleigh, NC · 1515 Sunrise Avenue

Self-Storage
Phone

Store Safe Storage

2

Knoxville, NC · 6417 Maynardville Pike

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

Bee Safe Storage

2

Cary, NC · 9021 Middleton Avenue

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

Pinnacle Storage

2

Boone, NC · 151 Cheek Avenue

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

Extra Space Storage

2

Harrisburg, NC · 169 Harrisburg Veterans Road

Self-Storage
Phone

Public Storage

2

Garner, NC · 3430 Integrity Drive

Self-Storage
Phone

Mid-Carolina Self Storage

2

Vass, NC · 3315 US 1 BUS

Self-Storage
Phone Email

Sanford Airport Safe Storage

2

Sanford, ME · 1725 Main Street

Self-Storage
Phone

Ames Mill Storage

2

Richmond, ME · 307 Front Street

Self-Storage
Phone

Safe Storage

2

Springvale, ME · 254 River Street

Self-Storage
Phone

Sanford Safe Storage

2

Sanford, ME · 313 Cottage Street

Self-Storage
Phone

Bluebird Self Storage

2

Rochester, NH · 202 Highland Street

Self-Storage
Phone

Route 1 Self-Storage

2

North Hampton, NH · 180 Lafayette Road

Self-Storage
Phone

JMC Self Storage

2

Windham, ME · 964 Roosevelt Trail

Self-Storage
Phone

Adams Park Storage

2

Sanford, ME · 23 Smada Drive

Self-Storage
Phone

Newmarket Storage

2

Newmarket, NH · 133 Exeter Road

Self-Storage
Phone Email

U-Haul

2

Milford, ME · 191 Bradley Road

Self-Storage
Phone Email

U-Haul

2

Old Town, ME · 621 Stillwater Avenue

Self-Storage
Phone Email

Close To Home Self Storage

2

Lisbon, ND · 15 15th Avenue East

Self-Storage
Phone

Short North Storage

2

Columbus, OH · 555 Buttles Avenue

Self-Storage
Phone Email

Rhino Self Storage

2

OH · 1306 Pike Street

Self-Storage
Phone

Zanesville Best Storage

2

Zanesville, OH · 1636 Fairview Road

Self-Storage
Phone

Storage Kingdom

2

Tipp City, OH · 620 Ginghamsburg Rd

Self-Storage
Phone

Three Star Moving & Storage

2

Zanesville, OH · 1705 Moxahala Avenue

Self-Storage
Phone

Hill's Self Storage

2

Galena, OH · 140 S Three B's & K Rd

Self-Storage
Phone Email

One Stop Self Storage

2

Dayton, OH · 535 East 3rd Street

Self-Storage
Phone

Loveland Store ’n’ Lock Self Storage

2

Loveland, OH · 10900 Loveland Madeira Road

Self-Storage
Phone

Jim's Storage

2

OH · 1794 Midland Trail

Self-Storage
Phone

Lock It Up Lima

2

Lima, OH · 1435 Findlay Road

Self-Storage
Phone Email

Great Value Storage

2

Columbus, OH · 5301 Tamarack Circle East

Self-Storage
Phone

Chestnut Storage

2

Painesville, OH · 220 Chestnut Street

Self-Storage
Phone

5 Star Storage

2

Akron, OH · 3020 Sanitarium Road

Self-Storage
Phone
← Prev 24 / 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