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

E-Z Self Storage

1B

Cortland, OH · 5804 Warren Road

Self-Storage
Phone Email

5 Points Rentals

1B

South Zanesville, OH · 104 South Maysville Avenue

Self-Storage
Phone Email

Patriot Self-Storage

1B

Zanesville, OH · 4600 West Pike

Self-Storage
Phone Email

Sandusky Self Storage

1B

Sandusky, OH · 2908 Venice Road

Self-Storage
Phone Email

Stor Mor

1B

Marion, OH · 149 James Way

Self-Storage
Phone Email

Universal U-Store-It

1B

Bluffton, OH · 158 East College Avenue

Self-Storage
Phone Email

Awesome Possum Storage

1B

Groveport, OH · 4281 Professional Parkway

Self-Storage
Phone Email

E-Z Self Storage

1B

Cortland, OH · 212 N Mecca St

Self-Storage
Phone Email

StakIt Storage of Zanesville

1B

White Cottage, OH · 5230 Maysville Pike

Self-Storage
Phone Email

JML Global Storage

1B

Zanesville, OH · 2805 National Road

Self-Storage
Phone Email

Store-N-Go, LLC

1B

Zanesville, OH · 2113 Greenhouse Road

Self-Storage
Phone Email

Imperial Storage

1B

Zanesville, OH · 1071 Linden Avenue

Self-Storage
Phone Email

Samson Storage

1B

Zanesville, OH · 1540 Greenwood Avenue

Self-Storage
Phone Email

Coopermill Road Storage

1B

Zanesville, OH · 1398 Coopermill Road

Self-Storage
Phone Email

The Spare Room of Lucasville

2

Lucasville, OH · 52 Merritt Street

Self-Storage
Phone

Public Storage

2

Cincinnati, OH · 4639 Eastgate Boulevard

Self-Storage
Phone Email

The Spare Room of Wheelersburg

2

Wheelersburg, OH · 115 Lang-Slocum Road

Self-Storage
Phone

Short North Storage

2

Columbus, OH · 555 Buttles Avenue

Self-Storage
Phone Email

Rhino Self Storage

2

OH · 1306 Pike Street

Self-Storage
Phone

Zanesville Best Storage

2

Zanesville, OH · 1636 Fairview Road

Self-Storage
Phone

Storage Kingdom

2

Tipp City, OH · 620 Ginghamsburg Rd

Self-Storage
Phone

Three Star Moving & Storage

2

Zanesville, OH · 1705 Moxahala Avenue

Self-Storage
Phone

Hill's Self Storage

2

Galena, OH · 140 S Three B's & K Rd

Self-Storage
Phone Email

One Stop Self Storage

2

Dayton, OH · 535 East 3rd Street

Self-Storage
Phone

Loveland Store ’n’ Lock Self Storage

2

Loveland, OH · 10900 Loveland Madeira Road

Self-Storage
Phone

Jim's Storage

2

OH · 1794 Midland Trail

Self-Storage
Phone

Lock It Up Lima

2

Lima, OH · 1435 Findlay Road

Self-Storage
Phone Email

Great Value Storage

2

Columbus, OH · 5301 Tamarack Circle East

Self-Storage
Phone

Chestnut Storage

2

Painesville, OH · 220 Chestnut Street

Self-Storage
Phone

5 Star Storage

2

Akron, OH · 3020 Sanitarium Road

Self-Storage
Phone

Carlisle Self Storage

2

Carlisle, OH · 200 Commercial Way

Self-Storage
Phone

Trimble Road Self Storage

2

Mansfield, OH · 622 North Trimble Road

Self-Storage
Phone

Tipp Storage

2

Tipp City, OH · 250 South Kinna Drive

Self-Storage
Phone Email

Zanesville Self Storage

2

Zanesville, OH · 2255 East Pike

Self-Storage
Phone Email

Mini Mall Storage

2

OH · 3900 Columbus-Lancaster Road Northwest

Self-Storage
Phone Email

Triple Lock Self Storage

2

Lucasville, OH · 77A Morgan Dr

Self-Storage
Phone Email

Premier Storage of Zanesville – Richards Road

2

Zanesville, OH · 339 Richards Road

Self-Storage
Phone

Storage Rentals of America

2

Zanesville, OH · 1295 Richey Road

Self-Storage
Phone Email

Lakewest Storage

2

Willoughby, OH · 35535 Euclid Avenue

Self-Storage
Phone

Premier Storage of Zanesville – Newark Road

2

Zanesville, OH · 4280 Newark Road

Self-Storage
Phone

Public Storage

2

Bedford Heights, OH · 22800 Miles Road

Self-Storage
Phone Email

Willo Self-Stor

2

Willoughby, OH · 4141 Palmetto Drive

Self-Storage
Phone Email

229 Storage

2

Ashley, OH · 2110 State Route 229

Self-Storage
Phone Email

U-Haul

2

Beavercreek, OH · 1168 Old Mill Lane

Self-Storage
Phone Email

Salem Structures, LLC

2

Salem, OH · 2880 OH-45

Self-Storage
Phone

Belmont Storage

2

Belmont, OH · 44250 Belmont Warnock Road

Self-Storage
Phone

201 Storage

2

Millersburg, OH · 4225 OH-39

Self-Storage
Phone

Bethel Mini Storage

2

OH

Self-Storage
Phone

4D Storage & Warehouse

2

Mansfield, OH · 811 Park Avenue East

Self-Storage
Phone

Boliantz U-Store-It

2

Mansfield, OH · 46 South Illinois Avenue

Self-Storage
Phone
1 / 4 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