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

Arborstone Storage

2

MO

Self-Storage
Phone

U Store It

3

Overland, MO · 10000 Page Avenue

Self-Storage

Extra Space Storage

3

Kansas City, MO · 238 West 73rd Terrace

Self-Storage

StorageMart

3

Kansas City, MO · 417 Grand Boulevard

Self-Storage
Phone Email

Southport Storage

3

Gravois Mills, MO · 125 Southport Boulevard

Self-Storage
Phone

All Around Storage

3

MO · 2650 South City Lake Road

Self-Storage

Steele Mini Storage

3

Steele, MO · West Main Street

Self-Storage
Phone

U-Haul

3

Saint Louis, MO · 418 South Tucker Boulevard

Self-Storage
Phone

EM Harris Storage

3

Saint Louis, MO · 2516 North 22nd Street

Self-Storage
Phone Email

EZ Storage

3

Washington, MO · 575 International Avenue

Self-Storage
Phone

Anytime Storage

3

Washington, MO · 602 Alberta Lane

Self-Storage
Phone

A&E Storage

3

Washington, MO · 4555 Highway 47

Self-Storage
Phone

Public Storage

3

Saint Louis, MO · 3901 Laclede Avenue

Self-Storage
Phone

Public Storage

3

Florissant, MO · 14249 New Halls Ferry Road

Self-Storage
Phone

U-Haul

3

Florissant, MO · 1350 North Highway 67 Street

Self-Storage
Phone

Extra Space Storage

3

St. Louis, MO · 11210 Midland Boulevard

Self-Storage
Phone

Public Storage

3

Saint Louis, MO · 2321 McCausland Avenue

Self-Storage
Phone

Mini-Storage

3

Fairfax, MO · 26236 US Highway 59

Self-Storage

StorageMart

3

Kansas City, MO · 3400 Broadway Boulevard

Self-Storage
Phone

KCI Storage

3

Ferrelview, MO · 200 1st Street

Self-Storage
Phone Email

Public Storage

3

Gladstone, MO · 7707 North Oak Trafficway

Self-Storage
Phone

Storage One Group

3

Kansas City, MO · 201 Northeast 85th Terrace

Self-Storage
Phone Email

Public Storage

3

Linn, MO · 226 Commercial Drive

Self-Storage
Phone Email

KK Self Storage

3

Linn Creek, MO · 1859 MO Y

Self-Storage
Phone

Public Storage

3

MO · 2700 Frontage Road

Self-Storage
Phone

Extra Space Storage

3

Kansas City, MO · 5415 Northeast Antioch Road

Self-Storage
Phone

Public Storage

3

Kansas City, MO · 3440 Main Street

Self-Storage
Phone

StorageMart

3

Kansas City, MO · 1720 Grand Boulevard

Self-Storage
Phone

Midtown Self-Storage

3

Kansas City, MO · 3429 Troost Avenue

Self-Storage
Phone

StorageMart

3

MO · 7546 Wornall Road

Self-Storage
Phone

Eureka Self Storage

3

Eureka, MO · 1699 West 5th Street

Self-Storage
Phone

StorageMasters

3

Columbia, MO · Rangeline Street

Self-Storage
Phone Email

St. Louis RV Home-Port

3

Eureka, MO · 2800 Route FF

Self-Storage

Strorage Doctors

3

Buckner, MO · 2 South Osage Street

Self-Storage
Phone

Buckner C&G U-Store

3

Buckner, MO · 14 North Central Street

Self-Storage
Phone

Self Storage

3

Belton, MO · 106 North Scott Avenue

Self-Storage
Phone

StorageMart

3

Blue Springs, MO · 2300 Southwest US 40 Highway

Self-Storage
Phone

U-Haul

3

Independence, MO · 4312 South Noland Road

Self-Storage
Phone

Public Storage

3

Kansas City, MO · 8601 East 67th Terrace

Self-Storage
Phone

North and South Storage

3

Holden, MO · 100 South Olive Street

Self-Storage
Phone Email

Pack Rat

3

Buffalo, MO · 1518 N Ash St

Self-Storage
Phone

rose storage

3

Seligman, MO · East Roller Ridge

Self-Storage
Phone

Public Storage

3

Independence, MO · 109 East 31st Street South

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