49,013 properties
0 phones
0 emails
0 for sale
58 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:

Self Storage East Haven

1B

East Haven, CT · 45 Foxon Blvd

Self-Storage
Phone Email

Safe'N'Sound Self Storage

1B

CT · 451 Bridge Street

Self-Storage
Phone Email

Planet Self Storage

1B

Newington, CT · 350 Alumni Road

Self-Storage
Phone Email

U-Haul

1B

Hartford, CT · 755 Capitol Avenue

Self-Storage
Phone Email

AAAA 1 Self Storage

1B

Norwich, CT · 21 Terminal Way

Self-Storage
Phone Email

Dayville Storage

2

Dayville, CT · 1019 North Main Street

Self-Storage
Phone

Norwich Self Storage @ Ace

2

Norwich, CT · 146 West Town Street

Self-Storage
Phone

Norwich Self Storage

2

Norwich, CT · 1 South Golden Street

Self-Storage
Phone

Extra Space Storage

2

Bloomfield, CT · 2 Douglas Street

Self-Storage
Phone

Extra Space Storage

2

Glastonbury, CT · 269 Oakwood Drive

Self-Storage
Phone

Extra Space Storage

2

Danbury, CT · 15 Kenosia Avenue

Self-Storage
Phone

The Storage Yard

2

Norwich, CT · 217 Otrobando Avenue

Self-Storage
Phone

CubeSmart

2

Milford, CT · 90 Rowe Avenue

Self-Storage
Phone

Gateway Self Storage

2

Hartford, CT · 450 Homestead Avenue

Self-Storage
Phone

Budget Self Storage

2

CT

Self-Storage
Phone

CT Self-Stor

2

CT

Self-Storage
Phone

U-Haul

2

CT

Self-Storage
Phone

Extra Space Storage

3

Wallingford, CT · 852 North Colony Road

Self-Storage

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

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

CT Self-Stor

3

Meriden, CT · 21 Carl Street

Self-Storage
Phone

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
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