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

Stor-A-Way South

2

Bridgeville, PA · 1916 Mayview Road

Self-Storage
Phone

24/7 Storage

2

West Mifflin, PA · 200 McGinley Avenue

Self-Storage
Phone Email

Storage Spot

2

St. Thomas Township, PA · 1070 McDowell Road

Self-Storage
Phone

B-Line Self Storage

2

Du Bois, PA · 96 McCracken Run Road

Self-Storage
Phone

Columbia Self Storage

2

Dingmans Ferry, PA · 1524 PA-739

Self-Storage
Phone

Mount Pocono Self Storage

2

Tobyhanna, PA · 1010 Tiffany Court

Self-Storage
Phone

Seneca Storage

2

Seneca, PA · 3008 Pennsylvania Highway 257

Self-Storage
Phone

Cranberry Storage

2

PA · 3886 Pennsylvania Highway 257

Self-Storage
Phone

Walk's Moving and Storage

2

Altoona, PA · 306 North 8th Street

Self-Storage
Phone

Fitzwater's Storage

2

Knoxville, PA · 4410 PA 49

Self-Storage
Phone

Public Storage

2

Hatboro, PA · 273 East County Line Road

Self-Storage
Phone

Neighbor Self Storage

2

Horsham, PA · 3855 Blair Mill Road

Self-Storage
Phone

Public Storage

2

Philadelphia, PA · 840 Cottman Avenue

Self-Storage
⚠️ Phone

Mr. Storage

2

Havertown, PA · 850 North Eagle Road

Self-Storage
Phone

Guardian Storage

2

Monroeville, PA · 4711 William Penn Highway

Self-Storage
Phone

CubeSmart

2

Pittsburgh, PA · 150 Arndt Road

Self-Storage
Phone

51 South Storage Center

2

Clairton, PA · 2248 Route 51

Self-Storage
Phone

Red Dot Storage

2

Pittsburgh, PA · 3 Weyman Road

Self-Storage
Phone

Secure Self Storage

2

Pittsburgh, PA · 1480 Frey Road

Self-Storage
Phone

Atelier Fine Art Storage

3

Philadelphia, PA · 1330 North 30th Street

Self-Storage

Extra Space Storage

3

Glen Mills, PA · 366 Wilmington Pike

Self-Storage

Extra Space Storage

3

Philadelphia, PA · 1553 Grant Avenue

Self-Storage

Extra Space Storage

3

Springfield Township, PA · 1420 East Baltimore Pike

Self-Storage

Public Storage

3

Pittsburgh, PA · 512 Castle Shannon Boulevard

Self-Storage
Phone Email

Guardian Storage

3

Bethel Park, PA · 1067 Milford Drive

Self-Storage
Phone Email

Rent A Space South

3

Upper St. Clair, PA · 1100 Boyce Road

Self-Storage
Phone

Compass Self Storage

3

Sewickley, PA · 2404 Nicholson Road

Self-Storage
Phone

Racetrack Self Storage

3

Washington, PA · 1425 Washington Road

Self-Storage

Fort Knox Storage

3

Mount Carmel, PA · 254 West Railroad Avenue

Self-Storage
Phone

JAG Auto Storage

3

Mount Carmel, PA · 218 West 3rd Street

Self-Storage
Phone

Store-N-Go

3

Kulpmont, PA · 1501 Chestnut Street

Self-Storage
Phone

J.L. Dresch Storage

3

Pottsville, PA · 691 Port Carbon Saint Clair Highway

Self-Storage
Phone

New Ringgold Storage

3

New Ringgold, PA · 107 Feger Street

Self-Storage
Phone Email

M&M Self Storage

3

Tamaqua, PA · 6 Villas Crossing

Self-Storage
Phone

M&M Self Storage

3

Tamaqua, PA · 3 West Rose Street

Self-Storage
Phone

Pine Grove Storage

3

Pine Grove, PA · 133 Suedberg Road

Self-Storage
Phone Email

Getz Self Storage

3

White Haven, PA · 30 PA-534

Self-Storage
Phone

Home Self Storage

3

Brodheadsville, PA · 140 Switzgabel Drive

Self-Storage
Phone Email

Brodheadsville Self Storage

3

Brodheadsville, PA · 532 Jenna Drive

Self-Storage
Phone Email

Self Storage Station Parkway

3

Wilkes-Barre, PA · 1266 Sans Souci Parkway

Self-Storage
Phone Email

Stark Holdings

3

Hanover Township, PA · 110 West Saint Mary's Road

Self-Storage
Phone

Mundy Street Self Storage

3

Wilkes-Barre, PA · 190 Mundy Street

Self-Storage
Phone

Wilkes-Barre City Self Storage

3

Wilkes-Barre, PA · 421 North Pennsylvania Avenue

Self-Storage
Phone Email

Additional Storage in the Gap

3

Stroudsburg, PA · 1075 Foxtown Hill Road

Self-Storage
Phone

Axis Self Storage

3

Stroudsburg, PA · 1120 Foxtown Hill Road

Self-Storage
Phone

Extra Space Storage

3

East Stroudsburg, PA · 324 Dartmouth Drive

Self-Storage
Phone

Pine Hollow Storage

3

Canadensis, PA · 1380 Route 390

Self-Storage
Phone

AAA Self Storage

3

Pocono Summit, PA · 5393 Development Park Drive

Self-Storage
Phone

STP Storage

3

Frackville, PA · 6 Starter Drive

Self-Storage
Phone

Brickey Storage

3

Pottsville, PA · 17 Bricky Road

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