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

Midgard Self Storage

3

GA · 1731 McCollum Parkway Northwest

Self-Storage
Phone Email

Extra Space Storage

3

GA · 2890 Cobb Parkway

Self-Storage

Public Storage

3

GA · 4365 Johnson Ferry Place

Self-Storage
Phone Email

Citadel Self Storage

3

Cincinnati, OH · 3756 Beechmont Circle

Self-Storage
Phone Email

Go-Store-It Self Storage

3

Cincinnati, OH · 2351 Terhune Alley

Self-Storage
Phone

CubeSmart

3

Fairfax, OH · 3600 Red Bank Road

Self-Storage

Access Storage - Budd Road

3

Corydon, IN · 1755 Budd Road

Self-Storage

Freedom Storage

3

KY · 185 Lock Road

Self-Storage
Phone Email

Public Storage

3

Louisville, KY · 6500 Jefferson Boulevard

Self-Storage

Extra Space Storage

3

Bedford, IN · 1312 Bundy Lane

Self-Storage

Storage Express

3

Huntingburg, IN · 405 East 1st Street

Self-Storage

Westport Mini Storage

3

Plantation, KY · 8711 Westport Road

Self-Storage

Pack Rat

3

Fairfax, OH · 3600 Red Bank Road

Self-Storage

Box Self Storage

3

Cincinnati, OH · 518 Reading Road

Self-Storage
Phone Email

STOR-N-LOCK

3

Boise, ID · 4400 West State Street

Self-Storage

WineKeeper Idaho

3

Boise, ID · 850 West Fulton Street

Self-Storage
Phone Email

Storage Express

3

Boise, ID · 1425 North Cloverdale Road

Self-Storage
Phone

Compton Transfer & Storage

3

Boise, ID · 4302 South Industrial Street

Self-Storage
Phone Email

Idaho Storage Connection

3

Boise, ID · 10650 West Joplin Road

Self-Storage

Bozeman Self Storage

3

Bozeman, MT · 811 Mandeville Drive

Self-Storage
Phone

Rent-A-Space

3

Missoula, MT · 3450 South Russell Street

Self-Storage
Phone Email

StoragePlus

3

Boise, ID · 4195 North Eagle Road

Self-Storage

Republic Storage

3

Garden City, ID · 9700 West Chinden Boulevard

Self-Storage

Extra Space Storage

3

Meridian, ID · 3469 East Amity Road

Self-Storage

Steel Structures America

3

Spokane Valley, WA · 13520 East Nora Avenue

Self-Storage
Phone Email

Extra Space Storage

3

Meridian, ID · 170 South Benchmark Way

Self-Storage

North End Storage

3

Boise, ID · 2811 North Bogus Basin Road

Self-Storage
Phone Email

Garden City Self Storage

3

Garden City, ID · 301 East 41st Street

Self-Storage

ACME Storage

3

Belgrade, MT · 264 Countryside Lane

Self-Storage
Phone Email

Storage Space

3

Meridian, ID · 221 East Amity Road

Self-Storage

Riverside Storage Missoula

3

Missoula, MT · 3645 Clark Fork Way

Self-Storage

Freedom Storage Of Montana

3

Hamilton, MT · 118 Riverside Cutoff

Self-Storage
Phone Email

Storage Rentals of America

3

Hamilton, MT · 381 Old Corvallis Road

Self-Storage
Phone Email

Secure Storage

3

St. Regis, MT · 612 MT-135

Self-Storage
Phone Email

Plum Storage

3

Missoula, MT · 15267 Mullan Road

Self-Storage
Phone Email

Wheatland Self Storage

3

Three Forks, MT · 5 Wheatland Meadows Drive

Self-Storage

Buckhouse Storage

3

Missoula, MT · 4601 Buckhouse Lane

Self-Storage
Phone

Whispering Pines Mini Storage

3

Pablo, MT · 35417 Clairmont Road

Self-Storage
Phone

Missoula Valley Storage

3

Missoula, MT · 12167 Turah Road

Self-Storage
Phone

AA AA Mid Coast Storage, LLC

3

Biloxi, MS · 8265 Woolmarket Road

Self-Storage

West Oak Storage

3

Laurel, MS · 5240 US 84

Self-Storage

Mini Storage Units

3

Sulphur, LA · 2923 South Post Oak Road

Self-Storage

Extra Space Storage

3

Edgewood, MD · 1306 Pulaski Highway

Self-Storage

Prime Storage

3

Baltimore, MD · 3500 Wilkens Avenue

Self-Storage

Public Storage

3

Owings Mills, MD · 9720 Reisterstown Road

Self-Storage
Phone

ez Storage

3

Parkville, MD · 7304 McClean Boulevard

Self-Storage
Phone

Extra Space Storage

3

Middle River, MD · 9810 Pulaski Highway

Self-Storage

YourSpace Storage

3

Joppatowne, MD · 310 Pulaski Highway

Self-Storage

404 Self Storage

3

Denton, MD · 24246 Shore Highway

Self-Storage

Morningstar Self Storage

3

Baltimore, MD · 1760 Union Avenue

Self-Storage
← Prev 60 / 127 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