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

Moores Mobile Home Park

3

Lagrange, GA · 2053 Westpoint Road

Mobile Home Parks

Pine Acres Estates

3

Lagrange, GA · 22 Teaver Road

Mobile Home Parks

Riverbend Mobile Home Park

3

Lagrange, GA · 150 Hubbard Road

Mobile Home Parks

Creekside Community

3

Cedartown, GA · 634 Georgia Avenue

Mobile Home Parks
Phone

Silver Hills Escapes

3

Lyerly, GA · 1113 Henderson Circle

Mobile Home Parks

Pine Village Park

3

Rome, GA · 2531 Shorter Avenue SW

Mobile Home Parks
Phone

Maplewood Mobile Home Park

3

Cedartown, GA · 1319 Mckibben Street

Mobile Home Parks

Timber Ridge Mobile Home Park

3

Cedartown, GA · 166 Wieuca Way

Mobile Home Parks
Phone

Plantation Mobile Home Park

3

Georgetown, GA · 795 Ga-50

Mobile Home Parks

Tiftarea Mobile Home Park

3

Georgetown, GA · 1906 Ga-50

Mobile Home Parks

Bull Creek Mobile Home Community

3

Columbus, GA · 3150 Plateau Dr.

Mobile Home Parks
Phone

Grand Oak Estates

3

Columbus, GA · 4325 Old Cusseta Road

Mobile Home Parks
Phone Email

Pinewood Mobile Park

3

Columbus, GA · 3600 Marathon Dr Lot 92

Mobile Home Parks
Phone

Airview Mobile Home Park

3

Columbus, GA · 3150 Plateau Drive

Mobile Home Parks

Benning Drive Mobile Home Park

3

Columbus, GA · 623 Benning Drive

Mobile Home Parks

Clay Drive Mobile Home Park

3

Columbus, GA · 3110 Victory Drive

Mobile Home Parks
Phone

Southern Pines

3

Columbus, GA · 988 Farr Road

Mobile Home Parks
Phone

Victory Mobile Home Park

3

Columbus, GA · 2623 Cusseta Road

Mobile Home Parks
Phone

Nobles Mobile Home Park

3

Blakely, GA · 623 Cedar Springs Road

Mobile Home Parks

Fosters Alley

3

Blakely, GA · 16984 Cedar Springs Rd

Mobile Home Parks
Phone

Pitts Mobile Home Park

3

Morris, GA · 3417 Ga-50

Mobile Home Parks
Phone

Lake Forrest County Club

3

Acworth, GA · 170-198 Kings Dr SE, Acworth, GA 30101, USA

RV Parks

Campsite #34

3

Allatoona Beach, GA · 477W+4V, Allatoona Beach, GA 30102, USA

RV Parks
Phone

Camp Windy Waters

3

Cartersville, GA · Cartersville, GA 30121, USA

RV Parks
Phone

Motel 6

3

Dalton, GA · 2200 Chattanooga Road

Budget Motels
Phone

OYO Hotels - Rome West

3

Rome, GA · 2209 Shorter Avenue Southwest

Budget Motels
Phone Email

Motel 6

3

Lake Park, GA · 1075 Lakes Boulevard

Budget Motels
Phone

Motel 6 Valdosta, GA - University

3

Valdosta, GA · 2003 West Hill Avenue

Budget Motels

Poteete Creek Rd Boat Ramp

3

GA · Poteete Creek Road

Marinas
Phone

Holiday On Lake Lanier

3

GA

Marinas
Phone

Waterways Marina

3

GA

Marinas

Sunrise Cove Marina

3

GA

Marinas
Phone

Motel 6

3

Dawsonville, GA · 76 North Georgia Avenue

Budget Motels

Two Wheels of Suches Lodge

3

Suches, GA · GA 60

Budget Motels
Phone Email

Thunderbird Inn

3

Savannah, GA · 611 West Oglethorpe Avenue

Budget Motels
Phone Email

Studio 6

3

Statesboro, GA · 126 Rushing Lane

Budget Motels
Phone

Quality Inn & Suites Augusta I-20

3

Augusta, GA · 2562 Center West Parkway

Budget Motels
Phone Email

Baymont by Wyndham Augusta Riverwatch

3

Augusta, GA · 2905 Riverwest Drive

Budget Motels
Phone Email

Americas Best Value Inn - Augusta / South

3

Augusta, GA · 3320 Deans Bridge Road

Budget Motels
Phone Email

Rodeway Inn

3

Hephzibah, GA · 3682 Deans Bridge Road

Budget Motels
Phone

PBI Printing

3

Ringgold, GA · 817 Industrial Boulevard

Mailbox / Pack & Ship
Phone
← Prev 12 / 12
// 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