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

Falcon Mini Storage

1B 🔥 MOTIVATED

Muldrow, OK · 1402 East Shawntel Smith Boulevard

Self-Storage
Phone Email

Midtown Storage Tulsa

1B

OK · 4625 East 31st Street South

Self-Storage
Phone Email

Devon Self Storage

1B

OK

Self-Storage
Phone Email

Alpha Storage

1B

Muskogee, OK · 2800 North York Street

Self-Storage
Phone Email

Lake N Land Storage

2

Grove, OK · 65251 East 290 Road

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

Extra Space Storage

2

Oklahoma City, OK · 2828 Northwest 62nd 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

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

U-Stor-It

2

Tulsa, OK · 1266 South Memorial Drive East

Self-Storage
Phone

Memorial Mini Storage

2

Tulsa, OK · 8122 East 25th Place South

Self-Storage
Phone

Route 51 Storage

2

Tulsa, OK · 7711 East 38th Street South

Self-Storage
Phone

Storage

2

Broken Arrow, OK · 3651 South Elm Place

Self-Storage
Phone

Arborstone Storage

2

OK

Self-Storage
Phone Email

Click Storage

2

OK · 3320 West 151st Street South

Self-Storage
Phone

Iron Self Storage

2

Tulsa, OK · 4920 South Braden Avenue East

Self-Storage
Phone

B&T Boat & RV Storage

2

OK · 1211 North Mingo Road

Self-Storage
Phone

Crosstown RV/Boat Storage

2

OK · 1315 North Mingo Road

Self-Storage
Phone

CornerStone Boat & Mini Storage

2

Tulsa, OK · 12303 East 11th Street South

Self-Storage
Phone

287 RV Storage

2

OK

Self-Storage
Phone

Locker Storage

2

OK · 26261 East 111th Street South

Self-Storage
Phone

Strickland's Boat and RV Storage

2

OK · 24400 East 96th Street South

Self-Storage
Phone

Arborstone Storage

2

OK

Self-Storage
Phone

64 Ministorage

2

OK

Self-Storage
Phone

Keyport Self Storage

2

Broken Arrow, OK · 126 North Elm Place

Self-Storage
Phone

Aspen Mini Storage

2

Broken Arrow, OK · 3460 East Houston Street

Self-Storage
Phone

El Reno Mini Storage

2

El Reno, OK · 308 East Elm Street

Self-Storage
Phone

Public Storage

2

Broken Arrow, OK · 1650 North 9th Street

Self-Storage
Phone

Homestead Mini Storage

2

Broken Arrow, OK · 6900 South 257th Avenue East

Self-Storage
Phone

Sartin Boat and RV Storage

2

Broken Arrow, OK · 30202 East 71st Street South

Self-Storage
Phone

Mason Storage

2

73065, OK · 3120 Southwest 16th Street

Self-Storage
Phone

Lakehurst Storage

2

Oklahoma City, OK · 9227 North May Avenue

Self-Storage
Phone

Boat and Mini Storage

2

OK

Self-Storage
Phone

Owasso Safety Storage

2

OK

Self-Storage
Phone

South Park Storage

2

OK

Self-Storage
Phone

Henryetta Mini Storage

2

OK

Self-Storage
Phone

Lakeview Self Storage

2

OK

Self-Storage
Phone

A-Plus Storage

2

OK

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