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

Muncie RV Resort

2

Anderson, IN · 3230 E 75 N, Anderson, IN 46017, USA

RV Parks
Phone Email

Speedway RV Park

2

Speedway, IN · 1714 Georgetown Rd, Speedway, IN 46224, USA

RV Parks
Phone

Brookville Mobile Home Park

2

Indianapolis, IN · 6200 S Brookville Rd, Indianapolis, IN 46219, USA

RV Parks
Phone

Indian Lakes RV Campground

3

Sunman, IN · 8605 IN-46, Sunman, IN 47041, USA

RV Parks 800 Sites 💰 Valuation on file
Phone

Richmond KOA

2

Richmond, IN · 3101 Cart Road

RV Parks
Phone

Bozarth Campground and Recreational Resort

2

Lagro, IN · 7309 East 400 South

RV Parks
Phone

KOA Holiday

2

Middlebury, IN · 52867 IN 13

RV Parks
Phone

Batesville KOA

2

Batesville, IN · 7234 East State Road 46

RV Parks
Phone

Indianapolis KOA Holiday

2

Greenfield, IN · 5896 W 200 N, Greenfield, IN 46140, USA

RV Parks 207 Sites 💰 Valuation on file
Phone

Jellystone Park

2

Pierceton, IN · 1916 N 850 E, Pierceton, IN 46562, USA

RV Parks
Phone

Elkhart Co. / Middlebury KOA Holiday

2

Middlebury, IN · 52867 IN-13, Middlebury, IN 46540, USA

RV Parks 120 Sites 💰 Valuation on file
Phone

Hidden Lake Resort

2

Fairmount, IN

RV Parks
Phone Email

The Oval

2

Indianapolis, IN · 801 W Washington St, Indianapolis, IN 46204, USA

RV Parks
Phone Email

CampShore Camp Ground

2

Aurora, IN · 8548 IN-56, Aurora, IN 47001, USA

RV Parks
Phone

Lakeside R.V. Park & Campground

2

Olney, IN · 5238 North Silver Road

RV Parks
Phone

Camp Carlson Army Recreational Area

2

Muldraugh, IN

RV Parks
Phone

Sunset Bay Marina and Campground

2

Aurora, IN · 799 Westside Dr, Aurora, IN 47001, USA

RV Parks
Phone

Eby Pines RV Park and Campground

3

Elkhart County, IN

RV Parks 330 Sites 💰 Valuation on file
Phone

Last Resort Rv Park & Campground

2

Nashville, IN · 2248 State Road 46 E

RV Parks
Phone

Cottonwood Campground

2

Ligonier, IN · 1767 W US 6

RV Parks
Phone

Jellystone

2

Bloomington, IN

RV Parks
Phone

Beyonder Getaway Rising Sun

2

Rising Sun, IN

RV Parks
Phone

East Indy Mobile Estates

2

Indianapolis, IN · 6660 S Brookville Rd, Indianapolis, IN 46219, USA

RV Parks
Phone

Morris St RV & Car Storage

2

Indianapolis, IN · 3519 E Morris St, Indianapolis, IN 46203, USA

RV Parks
Phone

Cathy

2

Indianapolis, IN · Indianapolis, IN 46204, USA

RV Parks
Phone

Delaware Campground

2

Milan, IN

RV Parks
Phone

Fletcher Park

3

Indianapolis, IN · 1429 E Brookside Ave, Indianapolis, IN 46201, USA

RV Parks

Grand Trails RV Park

2

Corydon, IN

RV Parks 42 Sites 💰 Valuation on file
Phone

Stevenson's Point

2

Monticello, IN

RV Parks
Phone

Pike Lake Campground

3

Warsaw, IN · 1011 E Arthur St

RV Parks 65 Sites 💰 Valuation on file
Phone

KOA Kampground

3

IN

RV Parks

Big Fish-N-Campground

3

Lafayette, IN · 5831 South 900 East

RV Parks
Phone Email

Alexandria Mobile Home Park

3

Alexandria, IN · 1411 N Park Ave #17, Alexandria, IN 46001, USA

RV Parks
Phone Email
← Prev 2 / 2
// 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