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

Extra Space Storage

3

Chicago, IL · 2850 North Pulaski Road

Self-Storage

Extra Space Storage

3

Lansing, IL · 2556 Bernice Road

Self-Storage

U-Haul

3

Calumet City, IL · 1510 Torrence Avenue

Self-Storage
Phone Email

Extra Space Storage

3

Bolingbrook, IL · 1200 South Weber Road

Self-Storage

The Lock Up

3

Norridge, IL · 7300 West Montrose Avenue

Self-Storage

Extra Space Storage

3

Hammond, IN · 950 165th Street

Self-Storage

U-Haul

3

Hammond, IN · 822 165th Street

Self-Storage
Phone Email

Mini-Max Storage Company

3

Washington, IL · 212 North Cummings Lane

Self-Storage
Phone Email

The Lock Up

3

Park Ridge, IL · 750 Busse Highway

Self-Storage

fox25storage

3

St. Charles, IL · 5N160 IL 25

Self-Storage
Phone Email

Patriot Storage

3

Clare, MI · 10561 North Loomis Road

Self-Storage

National Storage Centers - Redford

3

Redford, MI · 9125 Telegraph Road

Self-Storage

SouthKent Mini Storage

3

Caledonia, MI · 5590 68th Street Southeast

Self-Storage

Extra Space Storage

3

Milwaukee, WI · 5115 West Good Hope Road

Self-Storage

Flex Storage Centers - Acme

3

Williamsburg, MI · 6455 US-31

Self-Storage
Phone Email

Shop Space Wisconsin

3

Reedsburg, WI · 407 South Wengel Drive

Self-Storage
Phone Email

Marshall Storage

3

MI · 615 West Karem Drive

Self-Storage
Phone Email

West Washington Self Storage

3

Madison, MI · 615 West Washington Avenue

Self-Storage

Maple Village Self Storage

3

MI · 415 North Maple Road

Self-Storage
Phone Email

Extra Easy Storage

3

Milwaukee, WI · 532 East Capitol Drive

Self-Storage

Manitowoc Self Storage

3

Manitowoc, WI · 4701 Custer Street

Self-Storage
Phone Email

Power Drive Storage

3

Nunica, MI · 12525 Cleveland Street

Self-Storage
Phone Email

Extra Space Storage

3

Mequon, WI · 10448 North Port Washington Road

Self-Storage

Easy Storage

3

Valders, W · 674 Christel Drive

Self-Storage
Phone Email

Popp's Self Storage

3

Manitowoc, WI · 1929 South 35th Street

Self-Storage
Phone

Manitowoc Mini Storage

3

Manitowoc, WI · 2625 Hamilton Street

Self-Storage
Phone

Grey Hawk Storage

3

West Des Moines, IA · 935 South 50th Street

Self-Storage
Phone Email

CubeSmart

3

Topeka, KS · 240 Southeast 29th Street

Self-Storage

Taylor Made Storage

3

Manhattan, KS · 6344 Tuttle Creek Boulevard

Self-Storage
Phone Email

iStorage

3

Park City, KS · 433 East 61st Street North

Self-Storage
Phone

Extra Space Storage

3

Kansas City, MO · 238 West 73rd Terrace

Self-Storage

Lock & Leave

3

Fort Bliss, TX · 1016 Carter Road

Self-Storage
Phone

Samson Storage

3

New York, NY · 37 West 13th Street

Self-Storage

Compass Self Storage

3

Bloomfield, NJ · 58 Locust Avenue

Self-Storage
Phone

Troy Country Storage

3

Troy, NY · 20 Tybush Lane

Self-Storage
Phone Email

Store Your Stuff

3

Baldwinsville, NY · 7443 Van Buren Road

Self-Storage

Store Space

3

Syracuse, NY · 2649 Erie Boulevard East

Self-Storage
Phone Email

Manhattan Mini Storage

3

New York, NY · 108-110 West 107th Street

Self-Storage
Phone Email

Access Storage

3

North York, NY · 835 York Mills Road

Self-Storage
Phone

Public Storage

3

NY · 3805 Nashua Drive

Self-Storage
Phone

Silicrest Storage

3

Leeds and the Thousand Islands, NY · 417 South Lake Rd

Self-Storage

Access Storage

3

Toronto, NY · 1 Woodfield Road

Self-Storage
Phone

Manhattan Mini Storage

3

NY · 28 2nd Avenue

Self-Storage
Phone Email

CubeSmart

3

Jamaica, NY · 186-02 Jamaica Avenue

Self-Storage

CubeSmart

3

Brooklyn, NY · 2990 Cropsey Avenue

Self-Storage

Stop & Stor

3

NY · 534 63rd Street

Self-Storage
Phone Email

XYZ Storage

3

NY · 207 Weston Road

Self-Storage

Prime Storage

3

NY · 109-09 180th Street

Self-Storage

Storage Plus

3

Jamaica, NY · 165-08 Liberty Avenue

Self-Storage
Phone Email

Safe Guard Storage

3

Jamaica, NY · 156-01 Liberty Avenue

Self-Storage
Phone Email
← Prev 62 / 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