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

Neighbor Self Storage

2

Woburn, MA · 1 Inwood Drive

Self-Storage
Phone

Neighbor Self Storage

2

Norwood, MA · 624 Walpole Street

Self-Storage
Phone

Neighbor Self Storage

2

Franklin, MA · 4 Independence Way

Self-Storage
Phone

Neighbor Self Storage

2

Norwood, MA · 8 Upland Woods Circle

Self-Storage
Phone

Neighbor Self Storage

2

Boston, MA · 345 Harrison Avenue

Self-Storage
Phone

Neighbor Self Storage

2

Peabody, MA · 1000 Crane Brook Way

Self-Storage
Phone

Neighbor Self Storage

2

Waltham, MA · 36 River Street

Self-Storage
Phone

Neighbor Self Storage

2

Braintree, MA · 800 West Street

Self-Storage
Phone

U-Haul

2

Cambridge, MA · 844 Main Street

Self-Storage
Phone

Granite Clover Self Storage

2

MA

Self-Storage
Phone

Affordable Self Storage

2

MA

Self-Storage
Phone

A Perfect Detail

2

Wakefield, MA · 68C North Avenue

Car Washes
Phone

The Clean Machine

2

MA

Car Washes
Phone

Simoniz Car Wash

2

Reading, MA · 374 Main Street

Car Washes
Phone

Cape Auto Detail

2

Sandwich, MA · 109 Route 6A

Car Washes
Phone

Metropolitan Laundry

2

MA · 266 Brookline Street

Laundromats
Phone

KOA Westhampton

2

Westhampton, MA

RV Parks
Phone

North Truro Campground

2

Truro, MA

RV Parks
Phone Email

Ponderosa Pine Campground

2

Pittsfield, MA · 50 Potter Mountain Rd, Pittsfield, MA 01201, USA

RV Parks
Phone

Island Cove Marina

2

MA

Marinas
Phone

Candlewood East Marina

2

MA

Marinas
Phone

Hingham Yacht Club

2

MA

Marinas
Phone

Brewer's Cove Haven Marina

2

Barrington, MA · 101 Narragansett Avenue

Marinas
Phone

Steamboat Wharf Marina

2

MA

Marinas
Phone Email

Nantasket Kayaks

2

MA

Marinas
Phone Email

Outermost Harbor Marine

2

MA

Marinas
Phone

Dune Tootin Beach Cottages

2

MA

Budget Motels
Phone Email

Sands of Time Motor Inn

2

MA

Budget Motels
Phone Email

The Chatham Motel

2

Chatham, MA · 1487 Main Street

Budget Motels
⚠️ Phone

Motel 6

2

Danvers, MA · 65 Newbury Street

Budget Motels
Phone

Town&Beach Motel

2

MA

Budget Motels
Phone Email

Avalon Motel

2

MA

Budget Motels
Phone

Bournedale Village Inn

2

Bourne, MA · 854 Scenic Highway

Budget Motels
Phone

Westside Inn

2

MA · 1032 Riverdale Street

Budget Motels
Phone

Rodeway Inn

2

MA · 425 Bridge Street

Budget Motels
Phone

Colonial Traveler Inn

2

MA · 1753 Broadway

Budget Motels
Phone

Rodeway Inn

2

hyannis, MA · 614 Iyannough Road

Budget Motels
Phone

Great Bay Motel

2

MA · 485 Teaticket Highway

Budget Motels
Phone

Plaza Motel Peabody Massachusetts

2

Danvers, MA · 125 Newbury Street

Budget Motels
Phone

Shady Nook Inn Motel

2

MA · 14 Route 6a

Budget Motels
Phone

Econo Lodge

2

Sturbridge, MA · 408 Main Street

Budget Motels
Phone

Econo Lodge

2

Danvers, MA · 152 Endicott Street

Budget Motels
Phone

Newbury Street Inn

2

MA

Budget Motels
Phone

Ocean Street Inn

2

Hyannis, MA · 131 Ocean Street

Budget Motels
Phone

The Marina at BLU

3

MA

Marinas
Phone Email

Suds & Duds

2

MA

Laundromats
Phone

Stateline Laundromat

2

MA

Laundromats
Phone

Labonte's Self Storage

2

MA

Self-Storage
Phone

Hampstead Self Storage

2

MA

Self-Storage
Phone

Lapels Dry Cleaning

3

MA · 1100 Commonwealth Avenue

Laundromats
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