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

The Sled Shed, LLC

1B

Frenchville, ME · 407 Main Street

Self-Storage
Phone Email

Berwick Self Storage

1B

Berwick, ME · 474;472 Portland Street

Self-Storage
Phone Email

Sanford Airport Safe Storage

2

Sanford, ME · 1725 Main Street

Self-Storage
Phone

Ames Mill Storage

2

Richmond, ME · 307 Front Street

Self-Storage
Phone

Safe Storage

2

Springvale, ME · 254 River Street

Self-Storage
Phone

Sanford Safe Storage

2

Sanford, ME · 313 Cottage Street

Self-Storage
Phone

JMC Self Storage

2

Windham, ME · 964 Roosevelt Trail

Self-Storage
Phone

Adams Park Storage

2

Sanford, ME · 23 Smada Drive

Self-Storage
Phone

U-Haul

2

Milford, ME · 191 Bradley Road

Self-Storage
Phone Email

U-Haul

2

Old Town, ME · 621 Stillwater Avenue

Self-Storage
Phone Email

Sun Valley Self Storage

2

Bethel, ME · 129 Sunday River Road

Self-Storage
Phone Email

Safeway Storage

2

ME

Self-Storage
Phone

Salar Storage North, LLC

2

Caribou, ME · 58 Solman Street

Self-Storage
Phone

Freedom Self-Storage

2 🌐 Multi-Vertical

Van Buren, ME · 298 Main Street

Self-Storage
Phone

Sanford Self Storage

2

Sanford, ME · 17 Bennett Street

Self-Storage
Phone

All-Safe Self Storage

2

Arundel, ME · 2105 Portland Road

Self-Storage
Phone

V&E Self Storage

2

ME

Self-Storage
Phone

Coastal Mibox

2

ME

Self-Storage
Phone

Northern Storage

2

ME

Self-Storage
Phone

Safe Storage USA

2

ME

Self-Storage
Phone

Southern Maine Storage

2

ME

Self-Storage
Phone

Space Station Self Storage

2

ME

Self-Storage
Phone

ABC Self Storage

3

Vassalboro, ME · 1494 North Belfast Avenue

Self-Storage
Phone

Prime Storage

3

Scarborough, ME · 8 Pleasant Hill Road

Self-Storage

Crafts Self Storage

3

Lisbon Falls, ME · 56 Capital Avenue

Self-Storage
Phone Email

Locker Rentals

3

Saco, ME · Portland Road

Self-Storage

Central Maine Self Storage

3

ME

Self-Storage
Phone Email

Kojax Can-Store It

3

ME

Self-Storage
Phone

CubeSmart

3

Bangor, ME · 668 Stillwater Avenue

Self-Storage
Phone

Extra Space Storage

3

South Portland, ME · 50 Gorham Road

Self-Storage
Phone

Prime Storage

3

ME

Self-Storage
Phone Email

U-Haul

3

Brunswick, ME · 1 Cressey Road

Self-Storage
Phone

Trading Places Self Storage

3

Buxton, ME · 1011 Narragansett Trail

Self-Storage
Phone

Big Al's Self Storage

3

Boothbay, ME · 16 Storage Lane

Self-Storage
Phone

Boothbay Self Storage

3

Boothbay, ME · 15 Industrial Park Road

Self-Storage
Phone

A.C. Midcoast Storage

3

Boothbay, ME · 20 Industrial Park Road

Self-Storage
Phone Email

Prime Storage

3

ME

Self-Storage
Phone

The Storage Solutions

3

Kittery, ME · 91 Route 236

Self-Storage

West Gardiner Self Storage

3

West Gardiner, ME · 17 Town House Road

Self-Storage
Phone

LIfetime Storage

3

West Gardiner, ME · 28 Collins Mills Road

Self-Storage
Phone

Manchester Self Storage

3

Manchester, ME · 15 Storage Drive

Self-Storage
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