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

Viking Mini Storage

1B

Middleton, ID · 875 West Main Street

Self-Storage
Phone Email

U-Haul

2

ID · 1091 Northgate Mile

Self-Storage
Phone Email

U-Haul

2

ID · 1545 West Broadway Street

Self-Storage
Phone Email

Canyon Crossing Self Storage

2

Caldwell, ID · 2704 Owyhee Lane

Self-Storage
Phone Email

Palouse Rentals

2

Moscow, ID · 225 East Palouse River Drive

Self-Storage
Phone Email

Republic Storage

2

Boise, ID · 3501 South Lindsay Avenue

Self-Storage
Phone

Premier Storage

2

Boise, ID · 5593 North Eagle Road

Self-Storage
Phone

Store Local Storage Co-Op

2

Nampa, ID · 17792 Middleton Road

Self-Storage
Phone Email

Samuels Storage

2

Sandpoint, ID · 55 Samuels Road

Self-Storage
Phone Email

Stor-It Self Storage

2

Caldwell, ID · 2412 East Chicago Street

Self-Storage
Phone

Boat Storage Sandpoint Idaho

2

Sagle, ID · 468501 US 95

Self-Storage
Phone Email

Stor-It Self Storage

2

McCall, ID · 379 Elo Road

Self-Storage
Phone

2nd Street Storage

2

Melba, ID · 201 2nd Street

Self-Storage
Phone Email

Ten Kids Storage Units

2

Burley, ID · 736 East 5th Street

Self-Storage
Phone

Stor-N-Lock Self Storage

2

Boise, ID · 1250 South Orchard Street

Self-Storage
Phone

Idaho Self Storage

2

Boise, ID · 10908 West Fairview Avenue

Self-Storage
Phone

Public Storage

2

Star, ID · 9870 West State Street

Self-Storage
Phone

Stor-It

2

Caldwell, ID · 6617 East Cleveland Boulevard

Self-Storage
Phone

Sugar Factory Complex

2

ID

Self-Storage
Phone

Boat & RV Storage at the Wye

2

ID

Self-Storage
⚠️ Phone Email

Copperstone Stor-All

2

ID

Self-Storage
Phone Email

Valley Storage Co

2

Meridian, ID · 4390 South Meridian Road

Self-Storage
Phone

U-Haul

2

Meridian, ID · 1030 West Franklin Road

Self-Storage
Phone

Republic Storage

2

Middleton, ID

Self-Storage
Phone

Storage Solutions

2

ID

Self-Storage
Phone

STOR-N-LOCK

3

Boise, ID · 4400 West State Street

Self-Storage

WineKeeper Idaho

3

Boise, ID · 850 West Fulton Street

Self-Storage
Phone Email

Storage Express

3

Boise, ID · 1425 North Cloverdale Road

Self-Storage
Phone

Compton Transfer & Storage

3

Boise, ID · 4302 South Industrial Street

Self-Storage
Phone Email

Idaho Storage Connection

3

Boise, ID · 10650 West Joplin Road

Self-Storage

StoragePlus

3

Boise, ID · 4195 North Eagle Road

Self-Storage

Republic Storage

3

Garden City, ID · 9700 West Chinden Boulevard

Self-Storage

Extra Space Storage

3

Meridian, ID · 3469 East Amity Road

Self-Storage

Extra Space Storage

3

Meridian, ID · 170 South Benchmark Way

Self-Storage

North End Storage

3

Boise, ID · 2811 North Bogus Basin Road

Self-Storage
Phone Email

Garden City Self Storage

3

Garden City, ID · 301 East 41st Street

Self-Storage

Storage Space

3

Meridian, ID · 221 East Amity Road

Self-Storage

Republic Storage

3

Meridian, ID · 627 South Meridian Road

Self-Storage
Phone

Costless Storage

3

Boise, ID · 8100 South Eisenman Road

Self-Storage
Phone Email

City Storage

3

ID · 1445 North Woodruff Avenue

Self-Storage
Phone Email

Broadway Storage & Rentals

3

Idaho Falls, ID · 2504 West Broadway Street

Self-Storage
Phone

Stor-It Self Storage

3

Meridian, ID · 1776 North Avest Lane

Self-Storage
Phone

Stor-It Self Storage

3

Boise, ID · 7800 West State Street

Self-Storage
Phone Email

Affordable Self Storage

3

ID

Self-Storage
Phone

Ada Storage

3

Boise, ID · 1761 North Hampton Road

Self-Storage
Phone

Keylock Storage

3

Meridian, ID · 1975 East Franklin Road

Self-Storage

Athol Mini Storage

3

Athol, ID · 6025 East Highway 54

Self-Storage
Phone

Extra Space Storage

3

Meridian, ID · 5100 North Dyver Avenue

Self-Storage
Phone

Elevate Self Storage

3

Meridian, ID · 3535 North Records Avenue

Self-Storage
Phone

Stateline Storage

3

ID · 6808 West Seltice Way

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