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

Storage Sense

1B

Lawrence, KS · 2400 Franklin Road

Self-Storage
Phone Email

Wamego Self Storage

1B

Wamego, KS · 17105 US 24

Self-Storage
Phone Email

AAA Self Storage

1B

Topeka, KS · 2155 Southwest Westport Drive

Self-Storage
Phone Email

University Storage

1B

Lawrence, KS · 1601 West 23rd Street

Self-Storage
Phone Email

Parkway Storage

1B

Lawrence, KS · 4921 Wakarusa Court

Self-Storage
Phone Email

Lawrence Storage

1B

Lawrence, KS · 2201 Saint James Court

Self-Storage
Phone Email

23rd Street Advantage Storage

1B

Lawrence, KS · 1104 East 23rd Street

Self-Storage
Phone Email

Metro Self Storage

2

Topeka, KS · 1825 Southwest Westport Drive

Self-Storage
Phone

Public Storage

2

Lawrence, KS · 2223 Haskell Avenue

Self-Storage
Phone Email

Climate Storage

2

Lawrence, KS · 1547 East 23rd Street

Self-Storage
Phone Email

Plaza Storage

2

Lawrence, KS · 2300 West 31st Street

Self-Storage
Phone Email

Extra Space Storage

2

Lenexa, KS · 10800 Pflumm Road

Self-Storage
Phone

Landmark Self Storage

2

KS · 2749 Eureka Terrace

Self-Storage
Phone

U-STOR Maize

2

Wichita, KS · 3663 North Maize Road

Self-Storage
Phone

Space Saver Storage

2

Lawrence, KS · 3707 West 6th Street

Self-Storage
Phone

LiveWell Storage

2

Olathe, KS · 225 North Monroe Street

Self-Storage
Phone

Storage Mart

2

Shawnee, KS · 24200 West 43rd Street

Self-Storage
Phone Email

StorageMart

2

Overland Park, KS · 7200 Shawnee Mission Parkway

Self-Storage
Phone Email

Public Storage

2

Lawrence, KS · 1717 West 31st Street

Self-Storage
Phone Email

Spare Garage Storage

2

Topeka, KS · 4431 Southeast California Avenue

Self-Storage
Phone Email

MegaStorage Shawnee

2

Shawnee, KS · 23425 West 79th Street

Self-Storage
Phone Email

Public Storage

2

Wichita, KS · 8631 West 21st Street North

Self-Storage
Phone Email

Storage Solutions of Hays

2

Hays, KS · 765 41st Street

Self-Storage
Phone Email

U-STOR Northwest

2

Wichita, KS · 10625 West 21st Street North

Self-Storage
Phone

Uplift Self Storage

2

Lawrence, KS · 2020 Princeton Boulevard

Self-Storage
Phone

Smart Storage

2

Lenexa, KS · 8600 Maurer Road

Self-Storage
Phone

Public Storage

2

Lenexa, KS · 11925 Santa Fe Trail Drive

Self-Storage
Phone Email

Uplift Self Storage

2

Lawrence, KS · 412 North Iowa Street

Self-Storage
Phone

Valley Self-Storage

2

Topeka, KS · 5841 Southwest 21st Street

Self-Storage
Phone Email

B & T Southside Storage

2

Manhattan, KS · 810 Fair Lane

Self-Storage
Phone

Public Storage

2

Merriam, KS · 7100 West Interstate Highway 35 Frontage Road

Self-Storage
Phone

Manhattan Self Storage

2

KS

Self-Storage
Phone

Logan Mini Storage

2

KS

Self-Storage
Phone

Wildcat Storage

2

KS

Self-Storage
Phone

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

Alley Cats Storage

3

Atchison, KS · 711 Commercial Street

Self-Storage
Phone

Amherst Self Storage

3

Manhattan, KS · 200 Playmate Lane

Self-Storage
Phone

K-360 Self Storage

3

KS · East 9th Avenue

Self-Storage
Phone

StorageMart

3

KS · 7546 Wornall Road

Self-Storage
Phone

Golden West Maxi Storage

3

Shawnee, KS · 8117 Cole Parkway

Self-Storage

Storage Mart

3

Olathe, KS · 15282 West 134th Place

Self-Storage
Phone

Manhattan Mini Self Storage

3

Manhattan, KS · 5004 Murray Road

Self-Storage

iStorage

3

Wichita, KS · 550 North Tyler Road

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