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

Newport RV Park

1B

Portsmouth, RI · 181 Bradford Ave, Portsmouth, RI 02871, USA

RV Parks 100 Sites 💰 Valuation on file
Phone Email

Meadowlark Mobile Home & RV Park

1B

Middletown, RI · 132 Prospect Ave, Middletown, RI 02842, USA

RV Parks 80 Sites 💰 Valuation on file
Phone Email

Bowdish Lake Camping Area

1B

Glocester, RI · 40 Safari Trail, Chepachet, RI 02814, USA

RV Parks 200 Sites 💰 Valuation on file
Phone Email

Second Beach Family Campground

1B

Middletown, RI · 474 Sachuest Point Rd, Middletown, RI 02842, USA

RV Parks 25 Sites 💰 Valuation on file
Phone Email

Ashaway RV Resort

1B

Hopkinton, RI · 235 Ashaway Rd, Bradford, RI 02808, USA

RV Parks 253 Sites 💰 Valuation on file
Phone Email

Wawaloam Campground

1B

West Kingston, RI · 510 Gardiner Road

RV Parks 300 Sites 💰 Valuation on file
Phone Email

Whispering Pines Campground

1B

Hope Valley, RI · 41 Saw Mill Road

RV Parks 212 Sites 💰 Valuation on file
Phone Email

Colaluca Family Campground )

1B

Foster, RI · 7 Harrington Rd, Foster, RI 02825, USA

RV Parks 270 Sites 💰 Valuation on file
Phone Email

Camp Ponagansett

1B

Glocester, RI · 100 Rustic Hill Rd, North Scituate, RI 02857, USA

RV Parks
Phone Email

Holiday Acres Camp Grounds

1B

Glocester, RI · 593 Snake Hill Rd, North Scituate, RI 02857, USA

RV Parks
Phone Email

Worden Pond Family Campground

2

South Kingstown, RI · 416 Wordens Pond Rd #4425, Wakefield, RI 02879, USA

RV Parks 250 Sites 💰 Valuation on file
Phone Email

Ogie's Trailer Park

1B

Providence, RI · 1155 Westminster St, Providence, RI 02909, USA

RV Parks
Phone Email

Oakleaf Family Campground

2

Glocester, RI · 43 Oak Leaf Way, Chepachet, RI 02814, USA

RV Parks 60 Sites 💰 Valuation on file
Phone Email

Hickory Ridge Family Campground

2

Coventry, RI · 584 Victory Hwy, Coventry, RI 02827, USA

RV Parks 94 Sites 💰 Valuation on file
Phone

Timber Creek RV Resort

2

Westerly, RI · 118 Dunns Corner Rd, Westerly, RI 02891, USA

RV Parks
Phone

Ginny-B Campground

2

Foster, RI · 7 Harrington Road

RV Parks
Phone

Burlingame State Campgrounds

2

Charlestown, RI · 75 Burlingame State Park Rd, Charlestown, RI 02813, USA

RV Parks
Phone

Carr Point Recreation RV Park - US MILITARY INSTALLATION

2

Portsmouth, RI · Defense Highway, Portsmouth, RI 02871, USA

RV Parks
Phone

George Washington State Campground and Management Area

2

Glocester, RI · 2185 Putnam Pike, Chepachet, RI 02814, USA

RV Parks
Phone
// 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