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

Jeff's Yacht Haven

2

Port Ewen, NY · 140 1st Street

Marinas
Phone

Marina del Rey

2

Ramara, NY · 4130 Bayview Avenue

Marinas
Phone

Bridge Port Marina

2

Orillia, NY · 434 Couchaching Point Road

Marinas
Phone

Baer Harbour

2

Orillia, NY · 27 Queen Street

Marinas
Phone

Blue Beacon Marina

2

Orillia, NY · 693 Atherley Road

Marinas
Phone

Port of Orillia

2

Orillia, NY · 50 Lightfoot Drive

Marinas
Phone Email

Fischer's Marina

2

NY

Marinas
Phone

Little Gull Marina

2

NY

Marinas
Phone

Harbour Town McCracken's Landing

2

NY

Marinas
Phone Email

Sandra Lawn Marina

2

NY

Marinas
Phone

Yankee Boating Center

2

NY

Marinas
Phone Email

Huletts Landing Marina

2

NY

Marinas
Phone Email

Modern Yachts

2

Westhampton Beach, NY · 33 Library Avenue

Marinas
Phone

Burke's Marina

2

Raquette Lake, NY · 629 State Highway 28

Marinas
Phone

Rochester Yacht Club

2

Rochester, NY · 5555 Saint Paul Boulevard

Marinas
Phone

Island Cove Marina

2

NY

Marinas
Phone

Brockville Municipal Harbour

2

NY

Marinas
Phone

Candlewood East Marina

2

NY

Marinas
Phone

Skyport Marina

2

NY

Marinas
Phone

Onondaga Lake Park Marina

2

NY

Marinas
Phone

Mossy Point State Boat Launch

2

NY

Marinas
Phone

Big Six Mile Creek Marina

2

NY

Marinas
Phone

Canandaigua Lake State Marine Park

2

NY

Marinas
Phone

Deans Cove Boat Launch

2

NY

Marinas
Phone

Conesus Lake Boat Launch

2

NY

Marinas
Phone

Mexico Point Boat Launch

2

NY

Marinas
Phone

Sunset Bay State Marine Park

2

NY

Marinas
Phone

Winter Harbor Marina

2

Brewerton, NY · 604 County Route 37

Marinas
Phone

Bridge Marine

2

NY

Marinas
Phone

West 79th Street Boat Basin

2

NY

Marinas
Phone

Wolf Run Marina

2

NY

Marinas
Phone Email

Treasure Island Marina

2

NY · 1753 Highway 2

Marinas
Phone

Hideaway Marina

2

Kingston, NY · 170 Abeel Street

Marinas
Phone

Ojibway Bay Marina

2

NY

Marinas
Phone

Lawrence Yacht and Country Club

2

NY

Marinas
Phone Email

Harris Boat Works

3

Township of Hamilton, NY · 5369 Harris Boat Works Road

Marinas
Phone Email

TowBoat Lake George

2

NY

Marinas
Phone

Flying Bridge Marina

2

NY

Marinas
Phone

Everglades Marina

2

NY

Marinas
Phone

Greenport Marina

2

NY

Marinas
Phone

Bemus Bay Water Toys

2

NY

Marinas
Phone

Kingston Marina

3

NY · 349 Wellington Street

Marinas
Phone Email

F.R. Smith Marina

3

Bolton Landing, NY · 36 Sagamore Road

Marinas

Saugerties Marina

3

Saugerties, NY · 24 Ferry Street

Marinas
Phone Email

Dalhousie Yacht Club

3

St. Catharines, NY · 74 Lighthouse Road

Marinas
Phone Email

Lake Champlain Community Sailing Center

3

NY · 505 Lake Street

Marinas
Phone Email

Cazenovia Community Boating Center

3

Buffalo, NY · 2 Fuhrman Boulevard

Marinas
Phone Email

Sturgeon Point Marina

3

Derby, NY · 618 Sturgeon Point Road

Marinas

New Suffolk Shipyard at Cutchogue Harbor

3

Cutchogue, NY · 3350 West Creek Avenue

Marinas
Phone

Port of Egypt Marine

3

Southold, NY · Main Road

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