49,013 properties
0 phones
0 emails
0 for sale
432 results · Page 8/9
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:

Westy Self Storage

3

New Hyde Park, NY · 2400 Marcus Avenue

Self-Storage
Phone

Kittanning Self Storage

3

NY

Self-Storage
Phone

Prime Storage

3

Mechanicville, NY · 2353 Route 9

Self-Storage
Phone

U-Haul

3

Hempstead, NY · 450 Fulton Avenue

Self-Storage
Phone

Public Storage

3

Island Park, NY · 4116 Austin Boulevard

Self-Storage
Phone

Public Storage

3

Garden City, NY · 1055 Stewart Avenue

Self-Storage
Phone

999 Stewart Avenue

3

Garden City, NY · 999 Stewart Avenue

Self-Storage
Phone

Scotia Storage

3

Glenville, NY · 109 Freemans Bridge Road

Self-Storage
Phone

Omega Self Storage

3

Lynbrook, NY · 630 Merrick Road

Self-Storage
Phone

A+ 66 Ford City Storage

3

NY

Self-Storage
Phone Email

Out A Space Self Storage

3

Valley Stream, NY · 210 East Merrick Road

Self-Storage
Phone

Extra Space Storage

3

Port Washington, NY · 100 South Bayles Avenue

Self-Storage
Phone

Public Storage

3

Hempstead, NY · 285 Peninsula Boulevard

Self-Storage
Phone

U-Haul

3

Rochester, NY · 1106 East Ridge Road

Self-Storage
Phone

JM Storage

3

Clinton, NY · 23 Robinson Road

Self-Storage
Phone

ValuSpace Storage

3

Albany, NY · 40 North Russell Road

Self-Storage
Phone

StorageMart

3

NY · 144 Norseman Street

Self-Storage
Phone

Guard-It Self Stoarge

3

NY · 2825 Dufferin Street

Self-Storage
Phone

Extra Space Storage

3

Brooklyn, NY · 1690 East New York Avenue

Self-Storage
Phone

Self Storage Solutions

3

NY · 4205 Development Drive

Self-Storage
Phone

Laurier Self Storage

3

NY · 160 Laurier Boulevard

Self-Storage
Phone

All-Storage

3

Glens Falls, NY · 217 Dix Avenue

Self-Storage
Phone

Keylock Self Storage

3

Queensbury, NY · 25 Triangle Park Road

Self-Storage
Phone

Stella's Storage

3

Hudson Falls, NY · 59 Main Street

Self-Storage
Phone

Safeguard Self Storage

3

Hollis, NY · 204-02 Jamaica Avenue

Self-Storage
Phone

Stop & Stor

3

NY · 4275 Old Amboy Road

Self-Storage
Phone

Storage Units

3

Stony Point, NY · 24 Holt Drive

Self-Storage
Phone Email

Public Storage

3

Port Washington, NY · 1 Seaview Boulevard

Self-Storage
Phone

Extra Space Storage

3

Roslyn Heights, NY · 71 Jane Street

Self-Storage
Phone

Tweed Mini Storage

3

NY · 127 River Street West

Self-Storage
Phone

Prime Storage

3

NY

Self-Storage
Phone Email

Extra Space Storage

3

New Hyde Park, NY · 1 Herricks Road

Self-Storage
Phone

Maxi Storage

3

Barrie, NY · 49 Truman Road

Self-Storage
Phone

Extra Space Storage

3

Lockport, NY · 6104 South Transit Road

Self-Storage
Phone

Mamaroneck Self Storage

3

Mamaroneck, NY · 426 Waverly Avenue

Self-Storage
Phone

U-Haul

3

NY

Self-Storage
Phone Email

Moove In Self Storage

3

NY

Self-Storage

Extra Space Storage

3

Troy, NY · 500 River Street

Self-Storage

Linden Self Storage

3

Rochester, NY · 870 West Linden Avenue

Self-Storage
Phone Email

Pittsford Mini Self-Storage

3

Pittsford, NY · 3 Grove Street

Self-Storage
Phone

Storage Post Self Storage

3

Yorktown Heights, NY · 1760 Front Street

Self-Storage
Phone

West Maple Mini Storage

3

East Rochester, NY · 226 West Maple Avenue

Self-Storage

Life Storage

3

NY · 1654 Bushwick Avenue

Self-Storage
Phone

GoodFriend Self-Storage

3

Bronx, NY · 316 West 1st Street

Self-Storage
Phone

Tambe Self Storage

3

Victor, NY · 7500 County Road 42

Self-Storage
Phone Email

T&T Storage

3

Cohoes, NY · 42 Bedford Street

Self-Storage
Phone

Inside Storage Solutions

3

Cohoes, NY · 3 McElwain Avenue

Self-Storage
Phone

Extra Space Storage

3

NY · 300 Morris Avenue

Self-Storage
Phone Email

SmartStop Self Storage

3

NY · 50 Cityview Boulevard

Self-Storage
Phone

Public Storage

3

NY · 201 Romina Drive

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