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

Ticonderoga Self Storage

3

Ticonderoga, NY · 139 Alexandria Avenue

Self-Storage
Phone

August Business Centre & Storage

3

NY · 1652 County Road 2

Self-Storage
Phone Email

SmartStop Self Storage

3

NY · 515 Centennial Road North

Self-Storage
Phone

A Metro Self Storage

3

Schenectady, NY · 2703 Curry Road

Self-Storage
Phone

Prime Storage

3

Clifton Park, NY · 101 Sitterly Road

Self-Storage
Phone

Paul's Self Storage

3

Gloversville, NY · 104 Blowers Road

Self-Storage
Phone

Coon Self Storage

3

Hudson, NY · 1840 Route 9H

Self-Storage
Phone Email

New Mini Storage

3

NY

Self-Storage

Champlain Valley Self Storage

3

NY

Self-Storage
Phone

U-Haul

3

NY · 26-45 Brooklyn-Queens Expressway West

Self-Storage
Phone

East Rochester Self Storage

3

East Rochester, NY · 115 North Washington Street

Self-Storage
Phone

America Stores-It

3

Liverpool, NY · 8372 Oswego Road

Self-Storage
Phone Email

Extra Space Storage

3

West Nyack, NY · 100 Snake Hill Road

Self-Storage

Public Storage

3

Spring Valley, NY · 203 New Clarkstown Road

Self-Storage
Phone

CubeSmart

3

Tuckahoe, NY · 40 Marbledale Road

Self-Storage
Phone Email

Westy Self Storage

3

Tuckahoe, NY · 65 Marbledale Road

Self-Storage
Phone

Extra Space Storage

3

West Seneca, NY · 300 Langner Road

Self-Storage
Phone

Access Storage

3

NY

Self-Storage
Phone

Warden Self Storage

3

NY · 750 Warden Avenue

Self-Storage
Phone

CubeSmart

3

NY · 98-34 Jamaica Avenue

Self-Storage
Phone

Grand Park Self Storage

3

NY · 3880 Grand Park Drive

Self-Storage
Phone

Moishe's Self Storage

3

Bronx, NY · 840 East 134th Street

Self-Storage
Phone

Budget Store & Lock Self Storage

3

NY · 4570 Falmer Drive

Self-Storage
Phone

Access Storage

3

NY · 8025 Jane Street

Self-Storage
Phone

Bounce Store Bags

3

NY · 25 The Esplanade

Self-Storage

U-Haul

3

NY

Self-Storage
Phone Email

U-Haul

3

NY

Self-Storage
Phone Email

Telus

3

East York, NY · 73 Laird Drive

Self-Storage
Phone

XYZ Storage

3

NY · 1 Laird Drive

Self-Storage
Phone Email

Access Storage

3

North York, NY · 4590 Dufferin Street

Self-Storage
Phone Email

StorageMart

3

North York, NY · 30 Gervais Drive

Self-Storage
Phone

U-Haul

3

Poughkeepsie, NY · 2175 South Road

Self-Storage
Phone

Extra Space Storage

3

Poughkeepsie, NY · 2169 South Road

Self-Storage
Phone

Access Storage

3

Scarborough, NY · 1340 Ellesmere Road

Self-Storage

Wills Transfer Ltd

3

Smiths Falls, NY · 146 Lombard Street

Self-Storage
Phone

Safe Storage

3

NY · 2025 Wilson Avenue

Self-Storage
Phone

Public Storage

3

Dover, NY · 510 Mount Pleasant Avenue

Self-Storage
Phone

U-Haul

3

Albany, NY · 127 Broadway

Self-Storage
Phone

Extra Space Storage

3

Rochester, NY · 1771 Brighton-Henrietta Town Line Road

Self-Storage
Phone Email

Weston Self Storage

3

York, NY · 365 Weston Road

Self-Storage

U-Haul

3

York, NY · 355 Weston Road

Self-Storage
Phone

Apple Self Storage

3

Toronto, NY · Adelaide Street West

Self-Storage
Phone

Airport Self Storage

3

Oshawa, NY · 425 Taunton Road West

Self-Storage
Phone

Extra Space Storage

3

Kenmore, NY · 416 Kenmore Avenue

Self-Storage
Phone Email

Extra Space Storage

3

Niagara Falls, NY · 2590 Military Road

Self-Storage

Westport Lakes Self Storage

3

Township of Rideau Lakes, NY · 16 Sunnyside Road South

Self-Storage

West Mini Storage

3

NY · 161 Chelsea Street

Self-Storage
Phone

Winchendon Mini-Storage

3

NY · 67 Gardner Road

Self-Storage
Phone

Toy Town Rent-A-Bay

3

NY · 38 Gardner Road

Self-Storage
Phone Email

Sunderland Self Storage

3

NY · 5 Clark Mountain 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