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

Dogwood RV Park

2

Ardmore, OK · 5323 Dogwood Rd, Ardmore, OK 73401, USA

RV Parks
Phone

Plaza RV and Trailer Park

2

Lawton, OK · 410 SW Sheridan Rd, Lawton, OK 73505, USA

RV Parks
Phone

Joe's RV Park (Okie Joe’s)

2

Lawton, OK · 5424 NW Tackle Box Rd, Lawton, OK 73507, USA

RV Parks
Phone

Southwest Village Manufactured Home Community

2

Lawton, OK · 2301 SW Sheridan Rd, Lawton, OK 73505, USA

RV Parks
Phone

Shady Oaks RV Park

2

Lawton, OK · 5363 NW Tackle Box Rd, Lawton, OK 73507, USA

RV Parks
Phone

Enid RV Park

2

Enid, OK · 1002 E Maine St, Enid, OK 73701, USA

RV Parks
Phone

Aloha RV Resort

2

Enid, OK · 810 W Mulberry Ave, Enid, OK 73701, USA

RV Parks
Phone

AJ & Sons Ranch

2

Oklahoma City, OK · 8701 N Kelley Ave, Oklahoma City, OK 73131, USA

RV Parks 40 Sites 💰 Valuation on file
Phone

Higher Ground

2

Ardmore, OK · 653 Long Mountain Rd, Ardmore, OK 73401, USA

RV Parks
Phone

Buffalo Gap Rv Park

2

Lawton, OK · 8627 Meers Porter Hill Rd, Lawton, OK 73507, USA

RV Parks
Phone

River Run Campground

3

Lone Wolf, OK

RV Parks 6 Sites 💰 Valuation on file

Scissortail Campground (1-10)

3

Lone Wolf, OK

RV Parks 10 Sites 💰 Valuation on file

Cedar Hollow Group Trailer Area

2

Denison, OK

RV Parks
Phone

Tanglewood RV Park

2

Sand Springs, OK

RV Parks
Phone

Glory Land RV Park

2

Canyon, OK

RV Parks
Phone

Meadowbrook RV Park

2

Muskogee, OK

RV Parks 50 Sites 💰 Valuation on file
Phone

Crossroads RV Park

3

Wynnewood, OK · 500 E Allen St, Wynnewood, OK 73098, USA

RV Parks

Rockwell RV Park & Campground

3

Oklahoma City, OK · 720 South Rockwell Avenue

RV Parks
Phone

Plaza Mobile Home Park

3

Ardmore, OK · 602 Park Street Southeast

RV Parks
Phone

Lake Murray Trailer Park

3

Ardmore, OK · 980 Lake Murray Drive South

RV Parks
Phone

Meadowbrook Village

3

Ponca City, OK · 2900 North Union Street

RV Parks
Phone Email

Riverview RV & Recreation Park

3

Colbert, OK · 300 South Dickson Road

RV Parks
Phone Email

RV Station Resort

3

Colbert, OK · 413 Sherrard Street

RV Parks
Phone

Colbert RV Park

3

Colbert, OK · 109 Timothy Drive

RV Parks
Phone Email

Fun Town RV Park at WinStar

3

Thackerville, OK · 21902 Merle Wolfe Road

RV Parks
Phone

Oklahoma Trailer Sales

3

Calera, OK · 7 Luke Brothers Drive

RV Parks
Phone

Lincoln Park North

3

Oklahoma City, OK · 5299 North Beverly Drive

RV Parks
Phone

Big Creek RV Park

3

Bokchito, OK

RV Parks
Phone

Fritz and Sons Trucking

3

Woods County, OK

RV Parks

Murray Lake Rv

3

Ardmore, OK · Cedar Cove Cir, Ardmore, OK 73401, USA

RV Parks
Phone Email

Creekside at Red River Rose RV Resort

3

Ardmore, OK · 4734 Hedges Rd SW, Ardmore, OK 73401, USA

RV Parks
Phone

Viewpoint mobile and RV park

3

Ardmore, OK · 1320 S Commerce St, Ardmore, OK 73401, USA

RV Parks
Phone

University Mobile Home Park

3

Lawton, OK · 2804 SW J Ave, Lawton, OK 73505, USA

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