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

Washboard Coin Laundry

3

Oxford, MS · 1723 University Avenue

Laundromats
Phone

Wash-N-Go Washateria

3

MS · 404 David Street

Laundromats
Phone

Spin-N-Jacks

3

MS · 4404 Amonett Street

Laundromats
Phone

Speed Queen

3

Baton Rouge, MS · 8065 Florida Boulevard

Laundromats
Phone

Garden Self-Storage

3

MS · 1605 Bush Dairy Road

Self-Storage
Phone

Your Extra Closet

3

Oxford, MS · 108 Allison Cove

Self-Storage

Seeker Storage

3

Oxford, MS · Anderson Road

Self-Storage
Phone

Your Extra Closet

3

Oxford, MS · 8 Industrial Park Drive

Self-Storage

Southern Storage

3

Oxford, MS · 13 Industrial Park Drive

Self-Storage
Phone

University Avenue Storage

3

Oxford, MS · 2507 University Avenue

Self-Storage
Phone

Rent-A-Center

3

Oxford, MS · 1910 University Avenue

Self-Storage

Your Extra Closet

3

Oxford, MS · 610 McLarty Road

Self-Storage

Oxford Climate Safe Storage

3

Oxford, MS · 1620 University Avenue

Self-Storage
Phone Email

My Oxford Storage

3

Oxford, MS · 727 Molly Barr Road

Self-Storage
Phone

Nortpointe Storage

3

Oxford, MS · 200 Oxmoor Lane

Self-Storage
Phone

My Oxford Storage

3

Oxford, MS · 347 Highway 6 East

Self-Storage
Phone

Starkville Storage Professionals

3

Starkville, MS · 421 Martin Luther King, Junior Drive East

Self-Storage
Phone Email

Econo Mini Storage

3

Belmont, MS · 9 Airpark Rd

Self-Storage
Phone

B&B Mini Storage

3

MS · 2424 Government Street

Self-Storage
Phone Email

A-1 Mini Storage

3

Oxford, MS · 2659 West Oxford Loop

Self-Storage
Phone

LockBox Self Storage

3

Oxford, MS · 97 Mississippi Highway 30

Self-Storage
Phone

Highland Storage

3

MS · 15707 Airline Highway

Self-Storage
Phone Email

Clima Stor

3

MS · 7355 Perkins Road

Self-Storage

Extra Space Storage

3

MS

Self-Storage

Walker Mobile Home Park

3

Waynesboro, MS · 904 Spring Street

Mobile Home Parks

Oakwood Mobile Home Park

3

Waynesboro, MS · Tbd

Mobile Home Parks
Phone Email

Hill Country Community

3

Meridian, MS · 383 Briarwood Road

Mobile Home Parks
Phone

Southern Estates

3

Meridian, MS · 2704 Valley Road

Mobile Home Parks
Phone

McCraw's MHP

3

Meridian, MS · 5398 Mini Farm Road

Mobile Home Parks
Phone

Campground Mobile Home Park

3

Meridian, MS · 2905 Highway 45N Lot M

Mobile Home Parks

Roberts Mobile Home Park

3

Meridian, MS · 1604 23rd Avenue

Mobile Home Parks
Phone

Robinson Properties

3

Quitman, MS · 5 Robinson Court

Mobile Home Parks

Lakeside Mobile Home Park

3

Lauderdale, MS · 10415 Rabbit Road

Mobile Home Parks

The Grove

3

Columbus, MS · 510 Lenmberg Road

Mobile Home Parks
Phone

Airbase Mobile Home Park

3

Columbus, MS · 4180 Highway 373

Mobile Home Parks
Phone

Parker Village

3

Columbus, MS · 3459 Highway 373

Mobile Home Parks
Phone

Grace Park

3

Columbus, MS · 5215 Highway 182 East

Mobile Home Parks
Phone

Beck Trailer Park

3

Macon, MS · 34 Beck Trailer Park Road

Mobile Home Parks

Geyers Mobile Home Park

3

Columbus, MS · 470 South Frontage Road

Mobile Home Parks

H & M Mobile Village

3

Columbus, MS · 958 Sand Road

Mobile Home Parks
Phone

Shaws Mobile Home Park

3

Columbus, MS · 3458 Highway 373

Mobile Home Parks
Phone

Black Creek RV Park

3

Hattiesburg, MS · 38 Serenity Trail, Hattiesburg, MS 39401, USA

RV Parks
Phone Email

Shields RV FamCamp

3

Gulfport, MS · 629 Sunbird Ct, Gulfport, MS 39501, USA

RV Parks
Phone

Hampton Inn Greenville

3

Greenville, MS · 1155 V F W Road

Budget Motels
Phone Email

Rodeway Inn

3

Hattiesburg, MS · 5748 US 49

Budget Motels
Phone

Asam Hotel

3

Vicksburg, MS · 4041 Washington Street

Budget Motels
Phone

Economy Inn

3

Tupelo, MS · 708 North Gloster Street

Budget Motels
Phone Email

BEST WESTERN Vicksburg

3

MS · North Frontage Road

Budget Motels
Phone Email

Motel 6

3

Vicksburg, MS · 4137 I- 20 Frontage Road

Budget Motels
Phone

Value Place Baton Rouge (North)

3

Baton Rouge, MS · 8382 Airline Highway

Budget Motels
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