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

AA Self Storage

3

WV · 3564 Young Place

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

Marshall Storage

3

WI · 615 West Karem Drive

Self-Storage
Phone Email

West Washington Self Storage

3

Madison, WI · 615 West Washington Avenue

Self-Storage

Star Valley Storage Wyoming

3

Etna, WY · 1071 Clark Lane County Road 115

Self-Storage
Phone Email

Extra Space Storage

3

Orange, CT · 488 Boston Post Road

Self-Storage

Access Storage

3

Middletown, CT · 1511 Saybrook Road

Self-Storage
Phone Email

Maples Self-Storit

3

Middletown, CT · 1963 South Main Street

Self-Storage
Phone

Public Storage

3

Waterbury, CT · 76 Capt Neville Drive

Self-Storage
Phone Email

Self Storage Solutions

3

Waterford, CT · 12 Douglas Lane

Self-Storage
Phone Email

KeepSafe Storage

3

West Haven, CT · 321 Highland Street

Self-Storage
Phone

CT Self-Stor

3

Middletown, CT · 823 Newfield Street

Self-Storage
Phone Email

CT Self-Stor

3

Meriden, CT · 21 Carl Street

Self-Storage
Phone Email

Access Storage of Meriden

3

Meriden, CT · 1672 North Broad Street

Self-Storage
Phone

CubeSmart

3

Ridgefield, CT · 70 West Branchville Road

Self-Storage
Phone

Extra Space Storage

3

Rocky Hill, CT · 1146 Cromwell A

Self-Storage
Phone Email

CubeSmart

3

Rocky Hill, CT · 1077 Cromwell Avenue

Self-Storage

Public Storage

3

Berlin, CT · 120 Berlin Turnpike

Self-Storage
Phone

Global Self Storage

3

East Hampton, CT · 85 Middletown Avenue

Self-Storage
Phone

Storage Sense

3

Franklin, CT · 50 Route 32

Self-Storage

Murphy's Self Storage

3

Franklin, CT · 25 Murphy Road

Self-Storage
Phone

Extra Space Storage

3

Suffield, CT · 1395 South Street

Self-Storage

Extra Space Storage

3

Stratford, CT · 70 East Main Street

Self-Storage
Phone

Rent-a-Space

3

Waterford, CT · 175 Cross Road

Self-Storage
Phone Email

Bolton Notch Self Storage

3

Bolton, CT · 666 Boston Turnpike

Self-Storage
Phone

Storage Rentals of America

3

Columbia, CT · 2 Commerce Drive

Self-Storage

Goldi-Locks Self Storage

3

Colchester, CT · 359 Lebanon Avenue

Self-Storage
Phone Email

Carefree Self-Storage

3

Colchester, CT · 175 Lebanon Avenue

Self-Storage
Phone

Hebron Self Storage

3

Hebron, CT · 555 Church Street

Self-Storage
Phone

Rent-A-Space Niantic

3

East Lyme, CT · 9 King Arthur Drive

Self-Storage
Phone Email

Extra Space Storage

3

Plainville, CT · 405 New Britain Avenue

Self-Storage

Public Storage

3

Fairfield, CT · 1296 Kings Highway Cutoff

Self-Storage
Phone

U-Haul

3

Orange, CT · 174 Boston Post Road

Self-Storage
Phone

U-Haul

3

Bridgeport, CT · 636 Boston Avenue

Self-Storage
Phone

The Lock Up

3

Hamden, CT · 1950 Dixwell Avenue

Self-Storage
Phone

Extra Space Storage

3

CT

Self-Storage

Lock Up Milford

3

Milford, CT · 417-421 Bridgeport Avenue

Self-Storage
Phone

Extra Space Storage

3

Bristol, CT · 700 Mountain Road

Self-Storage
Phone

Storage Rentals of America

3

Portland, CT · 127 Main Street

Self-Storage

Just Storage

3

New Britain, CT · 1055 West Main Street

Self-Storage
Phone

Suburban Self Storage

3

Berlin, CT · 1700 Berlin Turnpike

Self-Storage
Phone

Global Self Storage

3

East Hampton, CT · 265 West High Street

Self-Storage
Phone

Hollow Tree Self Storage

3

Darien, CT · 131 Hollow Tree Ridge Road

Self-Storage
Phone

Extra Space Storage

3

Wethersfield, CT · 46 Arrow Road

Self-Storage
Phone Email

Attic Self Storage

3

Ellington, CT · 65 Windermere Avenue

Self-Storage
Phone

B Building Storage & Garage

3

Fairbanks, AK · 1719 South University Avenue

Self-Storage
Phone

H Building Storage & Garage

3

Fairbanks, AK · 1739 South University Avenue

Self-Storage
Phone

U-Haul

3

Fairbanks, AK · 209 College Road

Self-Storage
Phone

U-Haul

3

Tempe, AZ · 800 North McClintock Drive

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