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

Campbell Ave. Self Storage

3

NY

Self-Storage
Phone Email

Extra Space Storage

3

Andover, NY · 173 Stanhope Sparta Rd

Self-Storage

River Front Self Storage

3

Troy, NY · 550 1st Avenue

Self-Storage
Phone

Stowaway Self Storage

3

Phillipsburg, NJ · 1095 Route 22

Self-Storage

U-Haul

3

Williston, VT · 5010 Williston Road

Self-Storage
Phone

U-Haul

3

Newark, NJ · 830 Broadway

Self-Storage
Phone

Guardian Storage

3

Allentown, PA · 1890 Airport Road

Self-Storage
Phone Email

Highland Self Storage

3

Scotia, NY · 462 Marcelis Avenue

Self-Storage

Extra Space Storage

3

Rochester, NY · 1270 Jefferson Road

Self-Storage
Phone Email

Building A

3

Allentown, PA · 1449 Lehigh Street

Self-Storage
Phone Email

Shaftsbury Self Storage

3

VT · 1964 Vermont Route 7A

Self-Storage
Phone

Building B

3

Allentown, PA · 1518 South 12th Street

Self-Storage
Phone Email

ValuSpace

3

Troy, NY · 850 Hoosick Road

Self-Storage
Phone Email

Extra Space Storage

3

Allentown, PA · 2001 Union Boulevard

Self-Storage
Phone

Jetport Storage

3

Allentown, PA · 3322 Airport Road

Self-Storage
Phone Email

Metro Moving & Storage

3

Schenectady, NY · 2696 Curry Road

Self-Storage
Phone

U-Haul

3

NY

Self-Storage
Phone Email

Park Self Storage

3

Highland Park, NJ · 405 Cleveland Avenue

Self-Storage

Eagles Wings Self Storage

3

Allentown, PA · 314 North 12th Street

Self-Storage
Phone Email

Stuff-A-Lot

3

Allentown, PA · 1038 North Sherman Street

Self-Storage
Phone Email

Budget Store & Lock Self Storage

3

Allentown, PA · 1014 North Quebec Street

Self-Storage
Phone

Lehigh Valley Affordable Storage

3

Allentown, PA · 1940 West Fairview Street

Self-Storage

CMK Self Storage

3

Northville, NY · 872 State Route 30

Self-Storage
Phone

Superior Storage

3

Richmondville, NY · 441 Main Street

Self-Storage

Hill Street Rental

3

Milroy, PA · 84 Hill Street

Self-Storage

Budget Store & Lock Self Storage

3

Bartonsville, PA · 291 Travelers Way

Self-Storage

Jibber Self Storage

3

NY

Self-Storage
Phone Email

Extra Space Storage

3

Buffalo, NY · 550 Cayuga Road

Self-Storage
Phone

Larry's Mini Warehouse Rentals

3

Thibodaux, LA · 1309 St Patrick St

Self-Storage

Stay Safe Storage

3

Minden, LA · 11500 Industrial Drive

Self-Storage
Phone

Key Storage

3

LA

Self-Storage
Phone

Boiling Springs Self Storage and RV

3

Boiling Springs, SC · 3220 Parris Bridge Road

Self-Storage
Phone

U-Haul

3

Boiling Springs, SC · 120 Birds Eye View

Self-Storage
Phone

Public Storage

3

Clayton, NC · 850 South Lombard Street

Self-Storage
Phone

Extra Space Storage

3

Clayton, NC · 2360 Glen Laurel Road

Self-Storage
Phone Email

Ample Storage Center

3

Smithfield, NC · 708 North Brightleaf Boulevard

Self-Storage
Phone

L & T Mini Storage

3

Marion, NC · 2050 Rutherford Road

Self-Storage
Phone

Crescent Valley Storage

3

Travelers Rest, SC · 907 Old Highway 25

Self-Storage
Phone

Carolina Self Storage Of NC

3

Clayton, NC · 5681 US 70 Business

Self-Storage
Phone Email

Extra Space Storage

3

Raleigh, NC · 2105 East Millbrook Road

Self-Storage

Hatteras Light Mini Storage

3

Buxton, NC · 47100 Lost Tree Trail

Self-Storage

Prime Storage

3

NC

Self-Storage
Phone Email

Extra Space Storage

3

Boiling Springs, SC · 1909 Boiling Springs Road

Self-Storage
Phone

U-Haul Center

3

Athens, NC · 494 North Avenue

Self-Storage
Phone

Appalachian Storage Units

3

Hildebran, NC · 107 South Center Street

Self-Storage
Phone

Public Storage

3

Matthews, NC · 10833 Monroe Road

Self-Storage
Phone

KeepSafe Mini-Storage

3

Sanford, NC · 906 Broadway Road

Self-Storage
Phone

TRI STAR STORAGE

3

Granite Falls, NC · 4382 Hickory Boulevard

Self-Storage
Phone

Chambers Storage

3

Clyde, NC · 4457 Crabtree Road

Self-Storage
Phone Email

Public Storage

3

Charlotte, NC · 5301 North Sharon Amity Road

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