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

Wikiup

2

Henderson, CO · 6500 East 88th Avenue

RV Parks
Phone

Highlander RV Campground

2

Lake City, CO · 1245 CR 30

RV Parks
Phone Email

Camp Eddy

2

Grand Junction, CO · 347 Eddy Drive

RV Parks 73 Sites 💰 Valuation on file
Phone Email

Basecamp Palisade RV Resort

2

Palisade, CO · 985 North River Road

RV Parks
Phone

Marble RV Park and Campground

2

Marble, CO · 215 West Park Street

RV Parks
Phone

Applewood RV Resort

2

Wheat Ridge, CO · 11600 W 44th Ave, Wheat Ridge, CO 80033, USA

RV Parks
Phone Email

Vista Village Mobile Home

2

Boulder, CO · 5000 Butte St, Boulder, CO 80301, USA

RV Parks
Phone

Golden Terrace South

2

Golden, CO · 17801 W Colfax Ave, Golden, CO 80401, USA

RV Parks
Phone

Countryside Village Of Longmont Manufactured Home Community

2

Longmont, CO · 1400 S Collyer St, Longmont, CO 80501, USA

RV Parks
Phone

St Vrain Village

2

Longmont, CO · 446 S Francis St, Longmont, CO 80501, USA

RV Parks
Phone

Dolores River RV Resort and Cabins by Rjourney

2

Dolores, CO · 18680 CO-145, Dolores, CO 81323, USA

RV Parks
Phone Email

Cortez RV Resort

2

Cortez, CO · 27432 US-160, Cortez, CO 81321, USA

RV Parks
Phone Email

All Secure Self Storage

2

Henderson, CO · 12045 Moline Street

Self-Storage
Phone

Public Storage

2

Aurora, CO · 1710 South Abilene Street

Self-Storage
Phone

Affordable Moving & Storage

2

CO · 1600 South Abilene Street

Self-Storage
Phone Email

Falcon Self Storage

2

Colorado Springs, CO · 7630 Bent Grass Meadow Drive

Self-Storage
Phone Email

South Shields Storage

2

Fort Collins, CO · 3425 South Shields Street

Self-Storage
Phone

All American Mini Storage

2

Denver, CO · 545 Broadway

Self-Storage
Phone Email

StorQuest

2

Aurora, CO · 16650 East Alameda Parkway

Self-Storage
Phone Email

U-Haul

2

Aurora, CO · 750 South Buckley Road

Self-Storage
Phone Email

A Bargain Evans Holly Self Storage

2

Denver, CO · 2170 South Ivanhoe Street

Self-Storage
Phone

A Storage Place

2

Fort Collins, CO · 232 East County Road 30

Self-Storage
Phone

Outdoor Storage

2

Aurora, CO · 17700 East Colfax Avenue

Self-Storage
Phone

128th & Colorado Self Storage

2

CO · 4215 East 128th Avenue

Self-Storage
Phone

Parkside Self Storage

2

Colorado Springs, CO · 5905 North Nevada Avenue

Self-Storage
Phone

Mountain Mini Storage

2

Empire, CO · 499 East Mountain Avenue

Self-Storage
Phone

Gorilla Storage

2

Grand Junction, CO · 3038 I 70 Business Loop

Self-Storage
Phone

Glen Eagle Self Storage

2

Colorado Springs, CO · 13760 Struthers Road

Self-Storage
Phone Email

Red Rocks Self Storage

2

Colorado Springs, CO · 8032 Chardonnay Grove

Self-Storage
Phone Email

SecurCare Self Storage

2

Colorado Springs, CO · 3737 Maizeland Road

Self-Storage
Phone

Public Storage

2

Colorado Springs, CO · 3725 Parkmoor Village Drive

Self-Storage
Phone Email

Public Storage

2

Colorado Springs, CO · 3845 Van Teylingen Drive

Self-Storage
Phone Email

Prime Storage

2

Colorado Springs, CO · 791 Copper Center Parkway

Self-Storage
Phone Email

U-Haul

2

Grand Junction, CO · 2809 North Avenue

Self-Storage
Phone Email

Storage Masters

2

Denver, CO · 8881 East Florida Avenue

Self-Storage
Phone

Public Storage

2

CO · 1801 West Belleview Avenue

Self-Storage
Phone

Self Storage at Centerra

2

Loveland, CO · 3702 Aldrin Drive

Self-Storage
Phone

Storms Specialty Services

2

Grand Junction, CO · 2779 Riverside Parkway

Self-Storage
Phone

Public Storage

2

Denver, CO · 4403 South Tamarac Street

Self-Storage
Phone Email

CubeSmart

2

Denver, CO · 8930 East Hampden Avenue

Self-Storage
⚠️ Phone

Guardian Storage - Rental Units

2

Grand Junction, CO · 497 28 1/2 Road

Self-Storage
Phone

Guardian Storage - Rental Units

2

Grand Junction, CO · 458 Willow Road

Self-Storage
Phone

Public Storage

2

Denver, CO · 1042 South Parker Road

Self-Storage
Phone Email

Guardian Storage - Rental Units

2

Grand Junction, CO · 2260 East Main Street

Self-Storage
Phone

StorQuest

2

Parker, CO · 16980 Cottonwood Drive

Self-Storage
Phone Email

Public Storage

2

Parker, CO · 16840 Northgate Drive

Self-Storage
Phone Email

Castle Rock Self Storage and U-Haul

2

Castle Rock, CO · 11 Kellogg Court

Self-Storage
Phone

Park Street Storage

2

Castle Rock, CO · 1500 Park Street

Self-Storage
Phone

Castle Lock Self Storage

2

Castle Rock, CO · 1936 North Liggett Road

Self-Storage
Phone Email

Foothills Self-Storage

2

Loveland, CO · 4009 North Grant Avenue

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