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

CubeSmart Self Storage

2

NJ · 25 Remsen Avenue

Self-Storage
Phone

Public Storage

2

Matawan, NJ · 360 Hwy 34

Self-Storage
Phone Email

Extra Space Storage

2

Holmdel, NJ · 2125 NJ 35

Self-Storage
Phone

CubeSmart

2

NJ · 74 Bogart Street

Self-Storage
Phone

Ample Storage Apex

2

Apex, NC · 1136 Ambergate Station

Self-Storage
Phone Email

Coastal Mini Storage

2

Washington, NC · 3928 River Road

Self-Storage
Phone

MegaStorage Fargo Moorhead

2

Moorhead, MN · 4126 29th Avenue South

Self-Storage
Phone Email

Five Star Storage -38th St

2

ND · 3000 South 38th Street

Self-Storage
Phone

Five Star Storage - Gateway Dr

2

ND · 5118 Gateway Drive

Self-Storage
Phone

Five Star Storage - 47th Ave

2

ND · 2300 47th Avenue South

Self-Storage
Phone

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

Capri Self Storage

2

Altus, OK · 3020 North Main Street

Self-Storage
Phone

Benbrook Secure Storage

2

Woodward, OK · 901 Main Avenue

Self-Storage
Phone

A & D RV & Boat Storage

2

Glenpool, OK · 12461 South 33rd Avenue West

Self-Storage
Phone

Extra Space Storage

2

Oklahoma City, OK · 3000 North Villa Avenue

Self-Storage
Phone

Cox Storage

2

Tahlequah, OK · 1606 S Muskogee Ave

Self-Storage
Phone

American Self Storage

2

Pampa, TX · 101 South Naida Street

Self-Storage
Phone

Extra Space Storage

2

Oklahoma City, OK · 2828 Northwest 62nd Street

Self-Storage
Phone

Amarillo All Storage

2

Amarillo, TX · 2000 Hardy Street

Self-Storage
Phone

Patriot Storage

2

Stillwater, OK · 5020 North Washington Street

Self-Storage
Phone Email

SecurCare Self Storage

2

Tulsa, OK · 3210 South Yale Avenue East

Self-Storage
Phone

Public Storage

2

Oklahoma City, OK · 2900 Northwest Grand Boulevard

Self-Storage
Phone Email

Extra Space Storage

2

OK · 4101 South Yale Avenue East

Self-Storage
Phone

BLOSS Sales & Rental

2

Sand Springs, OK · 102 West Morrow Road

Self-Storage
Phone

Extra Space Storage

2

Oklahoma City, OK · 7124 Northwest 122nd Street

Self-Storage
Phone

Absolute Self Storage

2

Tulsa, OK · 7710 West 41st Street South

Self-Storage
Phone Email

KO Storage

2

OK · 1200 North Birch Avenue

Self-Storage
Phone

Eastside Self Storage

2

Sherman, TX · 319 East Mulberry Street

Self-Storage
Phone

Arborstone Storage Verden

2

Verden, OK · 101 4th Street

Self-Storage
Phone Email

U-Haul

2

Tulsa, OK · 3500 South Sheridan Road East

Self-Storage
Phone Email

Go Store It Self Storage

2

Charleston, SC · 17 Walnut Street

Self-Storage
Phone

Extra Space Storage

2

Greenville, SC · 1701 Woodruff Road

Self-Storage
Phone

SmartStop® Self Storage

2

Myrtle Beach, SC · 4630 Dick Pond Road

Self-Storage
Phone

Extra Space Storage

2

Murrells Inlet, SC · 12174 SC 707

Self-Storage
Phone

Climate Masters Indoor Storage

2

Charleston, SC · 634 Marina Drive

Self-Storage
Phone Email

Extra Space Storage

2

Mount Pleasant, SC · 1904 North Highway 17

Self-Storage
Phone

Extra Space Storage

2

Mount Pleasant, SC · 1640 James Nelson Road

Self-Storage
Phone

Go Store It Self Storage

2

Mount Pleasant, SC · 58 Belle Point Drive

Self-Storage
Phone

FOX DEN STORE-IT, LLC

2

Rapid City, SD · 2201 Moon Meadows Drive

Self-Storage
Phone

Cathy's Treasure Cove

2

Savannah, TN · 990 Florence Road

Self-Storage
Phone

All Safe Storage

2

TN · 100 Old Chesterton Lane

Self-Storage
Phone

Super Storage

2

Jackson, TN · 3001 US Hwy 45 Bypass

Self-Storage
Phone Email

Borden Storage

2

Lewisburg, TN · 570 W Church St

Self-Storage
Phone Email

iStorage

2

TN · 4811 Central Avenue Pike

Self-Storage
Phone

24 Hour Self Storage

2

Cleveland, TN · 301 Central Avenue

Self-Storage
Phone

Doe Valley Store-All

2

Mountain City, TN · 5361 State Route 67

Self-Storage
Phone Email

Extra Space Storage

2

Smyrna, TN · 851 Isabella Lane

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