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

Peck's Marina

1B

Lansdowne, NY · 505 1000 Islands Parkway

Marinas
Phone Email

Clark's Marina

1B

Gananoque, NY · 35 Clark Drive

Marinas
Phone Email

CFB Kingston Yacht Club

1B

NY · 4 Yacht Club Lane

Marinas
Phone Email

Hucks Marine & Resort

1B

Rockport, NY · 53 Front Street

Marinas
Phone Email

Village Guay marina

1B

NY · 541 1000 Islands Parkway

Marinas
Phone Email

Confederation Basin Marina

1B

Kingston, NY · 6 Clarence Street

Marinas
Phone Email

Collins Bay Marina

1B

NY · 1270 Coverdale Drive

Marinas
Phone Email

City Island Yaht Sales & Marina

1B

NY · 691 Bridge Street

Marinas
Phone Email

West Shore Marina

1B

NY · 100 West Shore Road

Marinas
Phone Email

Orchard Creek Marina

1B

Center Moriches, NY · 57 Ocean Avenue

Marinas
Phone Email

Bayside Marina

1B

Bayside, NY · 28-05 Cross Island Parkway

Marinas 18 Slips 💰 Valuation on file
✓ Owner Email Owner

St. Lawrence Marina

1B

Johnstown, NY · 2807 County Road 2

Marinas
Phone Email

340 Abeel Marina

1B

Kingston, NY · 340 Abeel Street

Marinas
Phone Email

Kingston Power Boat Association

1B

Kingston, NY · 370 Abeel Street

Marinas
Phone Email

Kawartha Park Marina

1B

Lakefield, NY · 2545 Hiawatha Lane

Marinas
Phone Email

Rideau Ferry Marine

1B

NY

Marinas
Phone Email

Bridgeview Harbour Marina

1B

NY

Marinas
Phone Email

Seeley's Bay Harbour - Municipal Dock

1B

NY

Marinas
Phone Email

City of Barrie Marina

1B

NY

Marinas
Phone Email

Castaways Marina

1B

Port Ewen, NY · 160 1st Street

Marinas
Phone Email

Trident Yacht Club

2

Gananoque, NY · 1699 Trident Yacht Club Lane

Marinas
Phone Email

Pride Marine Group - Kingston

2

NY · 4000 Bath Road

Marinas
⚠️ Phone

Rideau Ferry Harbour

2

Rideau Ferry, NY · 110 Coutts Bay Road

Marinas
Phone Email

Pilot Knob Marina

2

Fort Ann, NY · 1881 Pilot Knob Road

Marinas
Phone Email

Dunham's Bay Marina

2

Lake George, NY · 2036 Bay Road

Marinas
Phone

Southpoint Marina

2

Rochester, NY · 1384 Empire Boulevard

Marinas
Phone

Len's Cove Marina

2

Portland, NY · 1 Water Street

Marinas
Phone

Gilbert Marine

2

NY · 15 Jessie Street

Marinas
Phone

Tall Ships Landing Marina

2

NY · 15 St Andrew Street

Marinas
Phone

Howard's Marine of Rockport Ltd.

2

NY · 110 Escott-Rockport Road

Marinas
Phone

The Landing At Ivy Lea

2

Lansdowne, NY · 29 Ivy Lea Road

Marinas
Phone

Bayview Yacht Harbour Ltd.

2

Portland, NY · 2785 Highway 15

Marinas
Phone

Aylings Boatyard

2

Village of Merrickville-Wolford, NY · 220 Forced Road

Marinas
Phone

Ashbridge's Bay Yacht Club

2

Toronto, NY · 30 Ashbridge’s Bay Park Road

Marinas
Phone

Mattituck Yacht Club

2

NY · 9462 Peconic Bay Boulevard

Marinas
Phone

Chic's Marina

2

Bolton Landing, NY · 4782 Lake Shore Drive

Marinas
Phone

Edinburg Marina and Powersports

2

Hadley, NY · 140 North Shore Road

Marinas
Phone Email

Portsmouth Olympic Harbour

2

NY · 53 Yonge Street

Marinas
Phone

Kingston Yacht Club

2

NY · 1 Maitland Street

Marinas
Phone Email

Gananoque Municipal Marina

2

NY · 21 Bay Road

Marinas
Phone Email

Centerport Yacht Club

2

Centerport, NY · 33 Beach Plum Drive

Marinas
Phone

Barnes Brother Marine

2

Mount Arlington, NY · 11 Windermere Avenue

Marinas
Phone

Mill Dam Marina

2

NY · 26 Mill Dam Road

Marinas
Phone

Rondout Yacht Basin

2

Connelly, NY · 102 1st Street

Marinas
Phone Email

Diamond Cove Marina

2

Montauk, NY · 364 West Lake Drive

Marinas
Phone

Sea Cliff Yacht Club

2

Sea Cliff, NY · 42 The Boulevard

Marinas
Phone

Brockville Yacht Club

2

NY · 47 St Paul Street

Marinas
Phone

Mariposa Landing

2

Orillia, NY · 430 Couchaching Point Road

Marinas
Phone

Carveth's Marina

2

Douro Dummer, NY · 426 Carveths Marina Road

Marinas
Phone

Brennan Marine

2

NY · 67 Mill Street

Marinas
Phone Email
1 / 5 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