Created
June 14, 2020 19:53
-
-
Save fynntimes/0f2a191febad1132aed661e1d87bb647 to your computer and use it in GitHub Desktop.
A fun little script to find the optimal park. Built on NodeJS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function haversine(lat1, lon1, lat2, lon2) { | |
const R = 3963.1676; // miles | |
const phi1 = lat1 * Math.PI / 180; // φ, λ in radians | |
const phi2 = lat2 * Math.PI / 180; | |
const deltaPhi = (lat2 - lat1) * Math.PI / 180; | |
const deltaLam = (lon2 - lon1) * Math.PI / 180; | |
const a = Math.sin(deltaPhi / 2) * Math.sin(deltaPhi / 2) + | |
Math.cos(phi1) * Math.cos(phi2) * | |
Math.sin(deltaLam / 2) * Math.sin(deltaLam / 2); | |
const c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1 - a)); | |
return R * c; | |
} | |
const fs = require('fs'); | |
const data = JSON.parse(fs.readFileSync('parks.json')).results; | |
const parks = data.map(x => ({ | |
name: x.name, | |
lat: x.geometry.location.lat, | |
lon: x.geometry.location.lng | |
})); | |
// having too many northern locations made the park unfairly far from Downingtown | |
// so the center of the northern locations were calculated first. | |
let locations = [ | |
// { | |
// name: "Orefield", | |
// lat: 40.62512969970703, | |
// lon: -75.58148193359375 | |
// }, | |
// { | |
// name: "Breinigsville", | |
// lat: 40.543399811, | |
// lon: -75.662841797 | |
// }, | |
// { | |
// name: "Whitehall", | |
// lat: 40.656864166, | |
// lon: -75.503738403 | |
// }, | |
// { | |
// name: "Bethlehem", | |
// lat: 40.631031036, | |
// lon: -75.377891541 | |
// }, | |
{ | |
name: "Northerners", | |
lat: 40.614106178176755, | |
lon: -75.53148841864844 | |
}, | |
{ | |
name: "Downingtown", | |
lat: 40.004848480, | |
lon: -75.706672668 | |
}, | |
]; | |
let center = locations.reduce((a, b) => { | |
a.lat += b.lat / locations.length; | |
a.lon += b.lon / locations.length; | |
return a; | |
}, { | |
lat: 0, | |
lon: 0 | |
}); | |
console.log(center); | |
let distances = []; | |
parks.forEach(x => distances.push({ | |
name: x.name, | |
distance: haversine(center.lat, center.lon, x.lat, x.lon) | |
})); | |
distances.sort((a, b) => a.distance - b.distance); | |
var output = "<html><head><title>Fun Park Thing</title><link rel=\"stylesheet\" href=\"https://unpkg.com/[email protected]/build/pure-min.css\"></head><body style=\"margin: 20px\"><h1>Generated listing of parks by distance to midpoint</h1>"; | |
output += "<p>Center point: <b>" + center.lat + ", " + center.lon + "</b></p>"; | |
output += "<h3>Parks</h3><table class=\"pure-table\"><tr><th>Park</th><th>Distance (mi)</th></tr>"; | |
distances.forEach(d => output += "<tr><td>" + d.name + "</td><td>" + d.distance + " mi</td></tr>"); | |
output += "</table><footer>Built by <a href=\"https://github.com/faizaand\">me</a></footer></body></html>"; | |
fs.writeFileSync("result.html", output); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"results": [ | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.4796756, | |
"lng": -75.6216263 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.4808128802915, | |
"lng": -75.62016046970849 | |
}, | |
"southwest": { | |
"lat": 40.4781149197085, | |
"lng": -75.6228584302915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/lodging-71.png", | |
"id": "5e37e746d54f8d98dcc5836b803f3fd7b6d55cdc", | |
"name": "Bear Creek Mountain Resort", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 450, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/110740311311518335871\"\u003eBear Creek Mountain Resort\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAlAWlFnSjyTlcHteaKqVA9khKeF62ERtttwyUrbS4oupC6sNy9QksMqTVN4lFFstRQzuJabNkzREgiTJZKjUXoZlTqrE3ejp_-BBmTQjUzDbiQSzxoq99QZ0Cnc9F0kfXEhBTtfK99Q-BAoJFTPrx1nqNGhSSeBPHF917b0bRkyHyrBLDDA3I5Q", | |
"width": 800 | |
} | |
], | |
"place_id": "ChIJQ_RA4p8uxIkR2IvZsX0dWGg", | |
"plus_code": { | |
"compound_code": "F9HH+V8 Macungie, PA, United States", | |
"global_code": "87G6F9HH+V8" | |
}, | |
"rating": 4.5, | |
"reference": "ChIJQ_RA4p8uxIkR2IvZsX0dWGg", | |
"scope": "GOOGLE", | |
"types": [ | |
"beauty_salon", | |
"hair_care", | |
"spa", | |
"lodging", | |
"park", | |
"restaurant", | |
"food", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 2429, | |
"vicinity": "101 Doe Mountain Lane, Macungie" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.81073, | |
"lng": -75.520864 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.8121032802915, | |
"lng": -75.5195742197085 | |
}, | |
"southwest": { | |
"lat": 40.8094053197085, | |
"lng": -75.52227218029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_business-71.png", | |
"id": "0cd415e749b08454cb9a096c1fb311a0fdb3c21f", | |
"name": "Blue Mountain Resort", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 640, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/108752330517682027080\"\u003eBlue Mountain Resort\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAd_hjv5qXc9Ue4nCvbAflW_A3clLGMnQz-pXWSGPWUNjo4eszk8kPVgsF8XVqj070Hlbl3bPgVEEZVd2mKeRRUwscx_YNFbpNUPKGK6JzeFq4HXcI6Ef6_1lUWVk9apQXEhBAapnCnwQZbGKwTUUPy2w7GhSklKZRCUJS8OMpZm_hXhtahkxYYg", | |
"width": 960 | |
} | |
], | |
"place_id": "ChIJgQ_bumVFxIkRQgl7Vng8W4Y", | |
"plus_code": { | |
"compound_code": "RF6H+7M Palmerton, PA, United States", | |
"global_code": "87G6RF6H+7M" | |
}, | |
"rating": 4.4, | |
"reference": "ChIJgQ_bumVFxIkRQgl7Vng8W4Y", | |
"scope": "GOOGLE", | |
"types": [ | |
"campground", | |
"tourist_attraction", | |
"lodging", | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 2702, | |
"vicinity": "1660 Blue Mountain Drive, Palmerton" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.6587222, | |
"lng": -75.627304 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.6600697802915, | |
"lng": -75.6259682197085 | |
}, | |
"southwest": { | |
"lat": 40.6573718197085, | |
"lng": -75.6286661802915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_business-71.png", | |
"id": "164bfefcb5c8721b257e3d6fd867920d41973e98", | |
"name": "Lehigh Valley Zoo", | |
"opening_hours": { | |
"open_now": false | |
}, | |
"photos": [ | |
{ | |
"height": 1836, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/103249585375368372175\"\u003eLehigh Valley Zoo\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAA8kkxP9xASNrHE6VTEpuO_FUN4jJHYv_0BlwwaRrWIFXlgtA4n1AI0etN6pE2y8IVbAZecEG9rbHFbFqsBVZeRljnLfzI5dI-fdMJXRnJZziTqHAMp3tbVMJodBcPGBNhEhDQaHGWfdBMHG0AO7rVikpvGhQznbLKorbostWfFJvdc6G2CtJu8w", | |
"width": 3264 | |
} | |
], | |
"place_id": "ChIJRWKMoCw0xIkRoBHLLF65nSA", | |
"plus_code": { | |
"compound_code": "M95F+F3 Schnecksville, PA, United States", | |
"global_code": "87G6M95F+F3" | |
}, | |
"rating": 4.5, | |
"reference": "ChIJRWKMoCw0xIkRoBHLLF65nSA", | |
"scope": "GOOGLE", | |
"types": [ | |
"zoo", | |
"tourist_attraction", | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 2366, | |
"vicinity": "5150 Game Preserve Road, Schnecksville" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.6894605, | |
"lng": -75.21281639999999 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.6908460802915, | |
"lng": -75.21147061970849 | |
}, | |
"southwest": { | |
"lat": 40.6881481197085, | |
"lng": -75.21416858029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "f0035a8ad60d897f23580c3aa9060fe06b0c94dc", | |
"name": "Jacob Nicholas House", | |
"photos": [ | |
{ | |
"height": 3264, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/118396968971761844967\"\u003eNate Jones\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAeGccDtCpHld2Q-z7b3yrD9yFYfcI5slwo1RCMSXQaQKTiWZy5Ql3_jof71Y9fGeBdGjv6fqW4YhUpQl5nFqz7uBzQFwadX3MsYp7gpmN43-OUVzAKxlPFqE8Cru56nyuEhBTQwaSWxyWQRV7ohNil_eXGhS66EuMZmrlsvP_MstffUWWWsGvdw", | |
"width": 2448 | |
} | |
], | |
"place_id": "ChIJsS_y_VlsxIkRFNoECZvklT8", | |
"plus_code": { | |
"compound_code": "MQQP+QV Easton, PA, United States", | |
"global_code": "87G6MQQP+QV" | |
}, | |
"rating": 5, | |
"reference": "ChIJsS_y_VlsxIkRFNoECZvklT8", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 2, | |
"vicinity": "458 Ferry Street, Easton" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.94201100000001, | |
"lng": -75.377889 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.9433800802915, | |
"lng": -75.37660566970848 | |
}, | |
"southwest": { | |
"lat": 40.94068211970851, | |
"lng": -75.3793036302915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/camping-71.png", | |
"id": "65b60d3e2a9e837546184f2322ffc3cc41e5d61d", | |
"name": "Silver Valley Campsite", | |
"opening_hours": { | |
"open_now": false | |
}, | |
"photos": [ | |
{ | |
"height": 1836, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/100021756455476384904\"\u003eGil Wortsmann\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAw9Rlk3xl7L1pdUCWQ2rsX31cnHCY-2ESAhrU3mioeBLOKbqe7fZLCdxOVlZlEguKUe230lJcP2EIZip1wV2vmuZYnb3-tI7Jj9pjERQzYzqVRoYLNdvbWl5rVm3VEJpiEhBF-Y8nAHd8qNzvjFMxyQBoGhSK1yoz8HjQUiDTxBSZ3d5CDfFwsA", | |
"width": 3264 | |
} | |
], | |
"place_id": "ChIJz7dab0tnxIkRhzqSQXhsvRQ", | |
"plus_code": { | |
"compound_code": "WJRC+RR Saylorsburg, PA, United States", | |
"global_code": "87G6WJRC+RR" | |
}, | |
"rating": 3.9, | |
"reference": "ChIJz7dab0tnxIkRhzqSQXhsvRQ", | |
"scope": "GOOGLE", | |
"types": [ | |
"campground", | |
"rv_park", | |
"lodging", | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 107, | |
"vicinity": "146 Silver Valley Circle, Saylorsburg" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.6338029, | |
"lng": -75.9869281 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.63508953029149, | |
"lng": -75.9858166697085 | |
}, | |
"southwest": { | |
"lat": 40.6323915697085, | |
"lng": -75.9885146302915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "5524e757f6f6c7b9f6c73c8e096bde3dee439266", | |
"name": "Hawk Mountain Sanctuary", | |
"photos": [ | |
{ | |
"height": 3456, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/109945946649306695570\"\u003eRory M\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAsikwqHZ1iMKii0res9B_um3E8Yo1k0JxYFs3TaxNtFNnlQs8Og_gRf20ZJkTbPJ1pt8eCmrqTS8xK3GTRigALYbbBqZc-J-bU8i_xc825L6ANmoUa-GFIIEKW_7AdH0iEhBvAujgtYQAj1r8pHsHRmeCGhRhDnO09_DDfUZV9c6tvqNEIQWqRQ", | |
"width": 5184 | |
} | |
], | |
"place_id": "ChIJaYplSHfExYkR68-ROajdpuw", | |
"plus_code": { | |
"compound_code": "J2M7+G6 Kempton, PA, United States", | |
"global_code": "87G6J2M7+G6" | |
}, | |
"rating": 4.8, | |
"reference": "ChIJaYplSHfExYkR68-ROajdpuw", | |
"scope": "GOOGLE", | |
"types": [ | |
"tourist_attraction", | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 656, | |
"vicinity": "1700 Hawk Mountain Road, Kempton" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.86509929999999, | |
"lng": -75.627268 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.8665038802915, | |
"lng": -75.6259270197085 | |
}, | |
"southwest": { | |
"lat": 40.8638059197085, | |
"lng": -75.62862498029152 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "6ec04bcdabce1aba75546581976fc392ca773eca", | |
"name": "Beltzville State Park", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 1536, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/104756126456500715507\"\u003eBeltzville State Park\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAJz4-wdQnbGhIviaK3yPg-lmgkmikWblnWobn3R7Tsjt7HgxdgQ3GvUv-EYBMVeh7rvBnmRF02bebWngbS4zrgLAtc54DHTZjau3uIwloCiIx_lni_qiX3yhPB2J7mWWiEhBE94ciIbqDwIS9Eyacg5DAGhQNJycmuR1QDvLxnT_xH5-PjQuqdg", | |
"width": 2048 | |
} | |
], | |
"place_id": "ChIJF9CkZ8FRxIkRH3KWMSBmvBY", | |
"plus_code": { | |
"compound_code": "V98F+23 Lehighton, PA, United States", | |
"global_code": "87G6V98F+23" | |
}, | |
"rating": 4.5, | |
"reference": "ChIJF9CkZ8FRxIkRH3KWMSBmvBY", | |
"scope": "GOOGLE", | |
"types": [ | |
"tourist_attraction", | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 2009, | |
"vicinity": "2950 Poho Poco Drive, Lehighton" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.7842784, | |
"lng": -75.29413459999999 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.7856044802915, | |
"lng": -75.29218231970849 | |
}, | |
"southwest": { | |
"lat": 40.7829065197085, | |
"lng": -75.29488028029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "0c062a75b77eb0b5eba617ec8fa07c12a25198c0", | |
"name": "Jacobsburg Environmental Education Center", | |
"photos": [ | |
{ | |
"height": 8000, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/111484341717365108746\"\u003eE-Smo*\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAv4dxNmTvfupZbBVO5-Srxo6H0MYGgibafQgqspAMcGDk4052XMynhvi0Iyxxe17XjxtjsBwYvvM4GX-ODdxZ1D13YzSqDFdLnCqFKGOJ6KTBdH1mIiSRVazq5GjsBm-XEhDBrUo_KVpO7TiaSzCYhMo-GhQR2b3RvEA04yge8h9SpMCv6OkIvA", | |
"width": 6000 | |
} | |
], | |
"place_id": "ChIJeXwJ21toxIkR5UgOrJezpEE", | |
"plus_code": { | |
"compound_code": "QPM4+P8 Nazareth, PA, United States", | |
"global_code": "87G6QPM4+P8" | |
}, | |
"rating": 4.8, | |
"reference": "ChIJeXwJ21toxIkR5UgOrJezpEE", | |
"scope": "GOOGLE", | |
"types": [ | |
"tourist_attraction", | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 886, | |
"vicinity": "400 Belfast Road, Nazareth" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.3355195, | |
"lng": -75.17829999999999 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.3554467, | |
"lng": -75.14149075 | |
}, | |
"southwest": { | |
"lat": 40.30193429999999, | |
"lng": -75.23300615000001 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "12b904b0872ed8951f88228d6f51103177135cf6", | |
"name": "Peace Valley Park", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 2176, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/107274768728254327854\"\u003eAnna Gedzul\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAA4OfNVBECSGXhiS7cKKTaQ99_quDQjvcwzpuegkFAqhDiTmj79ajHghaRU2b8tmzgHX4rMeFPw80WfA9TKuWwKs_JUIGsFo781RhamUdQm-0rbbdD3QjvIm5oWIuFJKPZEhD3NUkXg2Rj-MfF2Ja4cd1qGhS3WHNDhGEIEU4toQ3YHNyDv4_8Jg", | |
"width": 3264 | |
} | |
], | |
"place_id": "ChIJb5q8rmUdxIkRWH3z-OKEMQE", | |
"plus_code": { | |
"compound_code": "8RPC+6M Doylestown, PA, United States", | |
"global_code": "87G68RPC+6M" | |
}, | |
"rating": 4.8, | |
"reference": "ChIJb5q8rmUdxIkRWH3z-OKEMQE", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"tourist_attraction", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 1760, | |
"vicinity": "230 Creek Road, Doylestown" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.32922739999999, | |
"lng": -75.4860626 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.33064443029149, | |
"lng": -75.4847703197085 | |
}, | |
"southwest": { | |
"lat": 40.32794646970849, | |
"lng": -75.48746828029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "3d485ad8c1b73ae4a5e4659fa37faaf7488d6595", | |
"name": "Green Lane Park, Orange Trail", | |
"photos": [ | |
{ | |
"height": 536, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/115722212583640224928\"\u003eAmin Rashk\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAte3-oRK1mVZVVSzGoucw43nRYziq2o5qfWcE65PP5hMkvJfak6uiLSiReATrMoVPetxMetJ74TRMlrCK-SZTTYIJ51pEChxFCRYtmIrewPuh4Ahf9ny0UjNygIsYB_FtEhAqlTq8NGWT7YwEb4HXNOyUGhRUlPWyHUJHsoUURugHfeS3dncdOA", | |
"width": 800 | |
} | |
], | |
"place_id": "ChIJBX9SBRCdxokRvPKsa-M1djM", | |
"plus_code": { | |
"compound_code": "8GH7+MH Green Lane, PA, United States", | |
"global_code": "87G68GH7+MH" | |
}, | |
"rating": 4.7, | |
"reference": "ChIJBX9SBRCdxokRvPKsa-M1djM", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"tourist_attraction", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 618, | |
"vicinity": "2144 Snyder Road, Green Lane" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.2006789, | |
"lng": -75.4040205 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.2019812802915, | |
"lng": -75.40262341970849 | |
}, | |
"southwest": { | |
"lat": 40.1992833197085, | |
"lng": -75.40532138029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "fff7ddc93b1852a0562bcf9c1c5fd9f128fc2952", | |
"name": "Evansburg State Park", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 2448, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/110408774837818024078\"\u003eJayeon Kim\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAA21q9NTG5fUnf1S40Uk9WSEZwsOn_07zKihf4seK8pjJAEU0Kb1mnebbAALSX-6OXp8jXh4wtAj4Z9Ts4XF_6vYKm5oYTghvAi_CXdw5Z4anJpfaE2UNV8SiMjZHVhY9QEhAXnlP5Lt6TrkbVdmPAL3cQGhRDtY0O0nF4iF3YGD0YwIqnuFjEqw", | |
"width": 3264 | |
} | |
], | |
"place_id": "ChIJQedZyt6ZxokRfKk9Ue1ZY6s", | |
"plus_code": { | |
"compound_code": "6H2W+79 Collegeville, PA, United States", | |
"global_code": "87G66H2W+79" | |
}, | |
"rating": 4.6, | |
"reference": "ChIJQedZyt6ZxokRfKk9Ue1ZY6s", | |
"scope": "GOOGLE", | |
"types": [ | |
"tourist_attraction", | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 755, | |
"vicinity": "851 Mayhall Road, Collegeville" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.4619964, | |
"lng": -75.2330211 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.4638958302915, | |
"lng": -75.22851319999999 | |
}, | |
"southwest": { | |
"lat": 40.4611978697085, | |
"lng": -75.24654480000001 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "215f57530f58c9f244cf2b61e00b65f6f0e6521b", | |
"name": "Nockamixon State Park", | |
"photos": [ | |
{ | |
"height": 2448, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/111143149727200246208\"\u003eLisa Santos\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAWgfT9Xs9rAog6xK5dnYm17JgDhwq0M84uF5RvsXaNUB9MRIC8dPb1owfpJaV48CaiEmIwG5_1PgtcOIHkAZY_caK-mnYTJLTHbejQMkx2T3jclacrrjX67Vrb5LBjYLbEhC657ScRhVwBP-P0wdXKAlhGhQhsfKuWQIxoChl6fRuTo8FAWpFIg", | |
"width": 3264 | |
} | |
], | |
"place_id": "ChIJmyIT0jUaxIkRhihmecUGMR0", | |
"plus_code": { | |
"compound_code": "FQ68+QQ Quakertown, PA, United States", | |
"global_code": "87G6FQ68+QQ" | |
}, | |
"rating": 4.7, | |
"reference": "ChIJmyIT0jUaxIkRhihmecUGMR0", | |
"scope": "GOOGLE", | |
"types": [ | |
"tourist_attraction", | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 2503, | |
"vicinity": "1542 Mountain View Drive, Quakertown" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.56004, | |
"lng": -75.1288036 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.56135458029149, | |
"lng": -75.1274709697085 | |
}, | |
"southwest": { | |
"lat": 40.5586566197085, | |
"lng": -75.1301689302915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "a10391cd6d521cd5b0baef3e88ece62d5b649994", | |
"name": "Ringing Rocks County Park", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 3024, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/115727486462450904602\"\u003eEugene Griffith\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAUIMYqurxVimlKBaIzDbkGpkXHnHlEggqcYEKq8cFUKf5wysAPkZGCzssY8TBvT7OOwPfgX4sg3zhUhR5Q81K4nR7sObd-L-t2Cy4YvoIkpfkgLT8grCtcXXn4KMlF6zAEhBOHL64mg1EfHFfT6ALdIjeGhSNLpczhs9vcmTm6IIsEKs-6lSefQ", | |
"width": 4032 | |
} | |
], | |
"place_id": "ChIJ4T5aA90NxIkRLEhfJR9QLkA", | |
"plus_code": { | |
"compound_code": "HV6C+2F Upper Black Eddy, PA, United States", | |
"global_code": "87G6HV6C+2F" | |
}, | |
"rating": 4.6, | |
"reference": "ChIJ4T5aA90NxIkRLEhfJR9QLkA", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"tourist_attraction", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 917, | |
"vicinity": "Upper Black Eddy" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.5901052, | |
"lng": -75.9094401 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.5914809802915, | |
"lng": -75.9080751697085 | |
}, | |
"southwest": { | |
"lat": 40.5887830197085, | |
"lng": -75.91077313029152 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/camping-71.png", | |
"id": "b74b3629a55d11df9880d563aed929878f7285cc", | |
"name": "Blue Rocks Family Campground", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 3120, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/109837843718774512185\"\u003eChris Bigg\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAA7Wv3v1rNDrVa6zGXtXSyL7XFqJD0kX0DH52gkHvM0ziwZH_-wuUKnu8vutxPisi1xz8EKnX6R7k0NnaiGRQOPMNG6wW0LEcBQ_IY82jA_cFSJMMmLoQWBFafyW7___kxEhBTdaLI96WXatb2H9w0h8GvGhQ8_b0dHE8bKLqUELgXh5eOXZYhWA", | |
"width": 4160 | |
} | |
], | |
"place_id": "ChIJazq5zULFxYkRpiLlXI0LTVs", | |
"plus_code": { | |
"compound_code": "H3RR+26 Lenhartsville, PA, United States", | |
"global_code": "87G6H3RR+26" | |
}, | |
"rating": 4.5, | |
"reference": "ChIJazq5zULFxYkRpiLlXI0LTVs", | |
"scope": "GOOGLE", | |
"types": [ | |
"campground", | |
"lodging", | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 362, | |
"vicinity": "341 Sousley Road, Lenhartsville" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.5783759, | |
"lng": -75.7684829 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.5800017302915, | |
"lng": -75.76712446970848 | |
}, | |
"southwest": { | |
"lat": 40.5773037697085, | |
"lng": -75.7698224302915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/lodging-71.png", | |
"id": "fc64f9fa920f4b5598eb10e1a863d98d27a49a35", | |
"name": "Pine Hill RV Park", | |
"photos": [ | |
{ | |
"height": 2448, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/102160863970261034469\"\u003ePhilip Gregoire\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAWpKE3vAPfjrtWtMv_mio6Jq3PsOC3urLuxvkoga3jeAaQwWcZM7Q7-jsTP7iytdux2rSMTDvmsk1pnMVKi-MiZuDi4TFut4MV_lCHOpoS5nedxNbeoap8iasii7ArZr7EhBnXidMxSEAgl4AOBkwlLe_GhSw-o9qAtIrDSKWE84ohQn6lWo9JA", | |
"width": 3264 | |
} | |
], | |
"place_id": "ChIJFRiNp6HNxYkRgWgmSEf4J94", | |
"plus_code": { | |
"compound_code": "H6HJ+9J Kutztown, PA, United States", | |
"global_code": "87G6H6HJ+9J" | |
}, | |
"rating": 4.6, | |
"reference": "ChIJFRiNp6HNxYkRgWgmSEf4J94", | |
"scope": "GOOGLE", | |
"types": [ | |
"rv_park", | |
"campground", | |
"lodging", | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 153, | |
"vicinity": "268 Old U.S. 22, Kutztown" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.8846863, | |
"lng": -75.72540479999999 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.8861319302915, | |
"lng": -75.72402466970848 | |
}, | |
"southwest": { | |
"lat": 40.88343396970851, | |
"lng": -75.7267226302915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "46f27bd681cdb5ec33a3e136d214c0e7dc27b9be", | |
"name": "Jim Thorpe Tomb", | |
"photos": [ | |
{ | |
"height": 2268, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/111790574076397053118\"\u003eKathleen Popola\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAytcyb3sz6VAkjRhK-xosW5Bc7iS3BrIIidshNS9vmGVZvzDN_S6MEUg6kpNkaqA9xsaodYNwyV4Ml4wQaue0iBfiBUZu6t6gF50WeWO6IcDHm3VHL0s5ybLqZ8SoAtbWEhCScHlyKZflQjhiUWmgDc0eGhQJ_JZUEmmfonXzTrYVZ59j8kiCzA", | |
"width": 4032 | |
} | |
], | |
"place_id": "ChIJXapYqkitxYkRNl0ZjT_IkM4", | |
"plus_code": { | |
"compound_code": "V7MF+VR Jim Thorpe, PA, United States", | |
"global_code": "87G6V7MF+VR" | |
}, | |
"rating": 4.7, | |
"reference": "ChIJXapYqkitxYkRNl0ZjT_IkM4", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 23, | |
"vicinity": "Jim Thorpe" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.568273, | |
"lng": -75.435543 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.56962248029149, | |
"lng": -75.43419886970848 | |
}, | |
"southwest": { | |
"lat": 40.56692451970849, | |
"lng": -75.43689683029149 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "631a03f22631dc7021eede749aa97b96485a2709", | |
"name": "Big Rock Park/Bauer Rock", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 1536, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/117558790087445574234\"\u003eRichard Fallstich\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAOwROKFFIpr906Be6CBJqQKjVnC9ZDhGkeMvk8D3N01qOlEgeIPf2awEc21S5tte8FG2f0x_7XcFXaSgm4KYGak5-dBKrcgYEjiQYxq0Tm26KpdZqGbc3uNDtCCsOFrWUEhDekuC35lmYARy-obrDbNrhGhSNkcKCT1BCGP4QDtzdSgn-MT2XDQ", | |
"width": 2048 | |
} | |
], | |
"place_id": "ChIJsQkcwok7xIkRB-l3fDqqMCo", | |
"plus_code": { | |
"compound_code": "HH97+8Q Center Valley, Upper Saucon Township, PA, United States", | |
"global_code": "87G6HH97+8Q" | |
}, | |
"rating": 3.9, | |
"reference": "ChIJsQkcwok7xIkRB-l3fDqqMCo", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 19, | |
"vicinity": "Center Valley" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.33260919999999, | |
"lng": -75.48637389999999 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.3336669802915, | |
"lng": -75.48565591970849 | |
}, | |
"southwest": { | |
"lat": 40.3309690197085, | |
"lng": -75.4883538802915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "baabc395fa86e77a3303812d9b143c19e1763c79", | |
"name": "Deep Creek Lake", | |
"photos": [ | |
{ | |
"height": 3024, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/116947071077895281525\"\u003eRyan Junior\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAdJcR7A0YC2DcUWhskVOrb4dn2AT9wSvx1mVDS_A0lrbAS5w2Yyu3qfaDyic2oXTGkLRKhFAUDLT0htH1r611tcoI-85uwOmqBxugCgAm6DpQQh9_e4A1wOes_H7oAcE0EhBnzdLYngnf7aNX0DTPWc5kGhScTbVgfO8wYAitcwxLuHrMrrdynA", | |
"width": 4032 | |
} | |
], | |
"place_id": "ChIJ51mpBBCdxokRu8IYSCnXiMg", | |
"plus_code": { | |
"compound_code": "8GM7+2F Green Lane, PA, United States", | |
"global_code": "87G68GM7+2F" | |
}, | |
"rating": 4.3, | |
"reference": "ChIJ51mpBBCdxokRu8IYSCnXiMg", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 9, | |
"vicinity": "Deep Creek Road, Green Lane" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.50959280000001, | |
"lng": -75.5946908 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.5113839302915, | |
"lng": -75.5935713697085 | |
}, | |
"southwest": { | |
"lat": 40.5086859697085, | |
"lng": -75.59626933029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "51d582f973099e46e90e4505af790dc53bf36ac4", | |
"name": "Lock Ridge Furnace Museum", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 4032, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/106007069554083272766\"\u003eDavid Hunsicker\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAA9KLG6TNX4ltW7KwRsIVd6JC-NWfdAy6Mm5k4Nd-rR_mgzOY_MSi5oeepFqIxzAcDPo-CS-hvpFg-oQPyo6BnS0YmrLiSJacuixYgiAjwGbZRlnC2RxL7_Lm_jKpaYX5XEhA5n_89FmgHm0snK1zdtoY1GhSLbC1NZ7TzavrA-cLAI0cW2AfN_w", | |
"width": 3024 | |
} | |
], | |
"place_id": "ChIJOfHooEMuxIkRwcsi9yPcdJA", | |
"plus_code": { | |
"compound_code": "GC54+R4 Alburtis, PA, United States", | |
"global_code": "87G6GC54+R4" | |
}, | |
"rating": 4.5, | |
"reference": "ChIJOfHooEMuxIkRwcsi9yPcdJA", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 48, | |
"vicinity": "525 Franklin Street, Alburtis" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.22630639999999, | |
"lng": -75.52181759999999 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.2276667302915, | |
"lng": -75.52038606970849 | |
}, | |
"southwest": { | |
"lat": 40.2249687697085, | |
"lng": -75.5230840302915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/golf-71.png", | |
"id": "0f540a48e3cc5c78547d9a83eb8a19a30f597fd8", | |
"name": "Turtle Creek Golf Course", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 2483, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/115031398543857019722\"\u003eTurtle Creek Golf Course\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAvg43yhle34C3iREgRMb-n-WgBEd1_wQwiPmHuzMT3ticUH3RE2qrJdsKzn-4WNwG6vZOGK5ya5SSaEd7XLmfoXmhIrCX6QXPi4MJBTE-DAvkobyJbVPCWfyF5oD2_rFCEhADvohFc36ArlcYjrCHlxe2GhT3gzgpDU6rZfD2shqwi3E27VzLIA", | |
"width": 3809 | |
} | |
], | |
"place_id": "ChIJq94W-ceaxokRfyp7DhzeNFE", | |
"plus_code": { | |
"compound_code": "6FGH+G7 Limerick, PA, United States", | |
"global_code": "87G66FGH+G7" | |
}, | |
"rating": 4.2, | |
"reference": "ChIJq94W-ceaxokRfyp7DhzeNFE", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 142, | |
"vicinity": "303 West Ridge Pike, Limerick" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.6563705, | |
"lng": -75.617845 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.6577194802915, | |
"lng": -75.61649601970851 | |
}, | |
"southwest": { | |
"lat": 40.65502151970851, | |
"lng": -75.61919398029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "48e4a4a8128c6bd0e7c6b222975f035f10a07d66", | |
"name": "Trexler Nature Preserve", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 2322, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/100451150157494024856\"\u003eFredesvinda Campusano\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAhi-irbSWHNplL8CgzCpH1Y9ltagZfT2Bnwq0bXOKIlneV8uUTxWl4eiIxoDMrPER40z1cWrdKBvCgsOUPgWkPR0fizVzpuD__mhHOprlKj10adYM0_jN0gWwGeFjLQ0KEhC-jWqVvEHv57ruueIlDuKTGhQTxUH_jYcGaqz46Tvo5Ky2COe8Ww", | |
"width": 4128 | |
} | |
], | |
"place_id": "ChIJWwKS9Cs0xIkR1KLwrqv0rUI", | |
"plus_code": { | |
"compound_code": "M94J+GV Schnecksville, PA, United States", | |
"global_code": "87G6M94J+GV" | |
}, | |
"rating": 4.7, | |
"reference": "ChIJWwKS9Cs0xIkR1KLwrqv0rUI", | |
"scope": "GOOGLE", | |
"types": [ | |
"tourist_attraction", | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 1769, | |
"vicinity": "4935 Orchard Road, Schnecksville" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.67105, | |
"lng": -75.52403049999999 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.6723989802915, | |
"lng": -75.52268151970848 | |
}, | |
"southwest": { | |
"lat": 40.6697010197085, | |
"lng": -75.52537948029149 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "cce4ff1715186dd366720653ebb5a06c67e25e23", | |
"name": "Whitehall Parkway", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 6048, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/102834792029849325948\"\u003emamaprib\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAG6bSyokCb6awaQsPfJpLjJNB2ge09_TbsZN15n0791ttLV3i1pd3F58R2LA0s2ksxNkaV9-pN2sMz9IjUbq6GxB_d6mp-N0k-4m7zKIh-uqIPnRZlugsUpMOQHpkxWQfEhB27sQ4I6UpzZFXsFePKy9zGhQo3m8FurYyzakX8hCCcDnYbKsS8w", | |
"width": 8064 | |
} | |
], | |
"place_id": "ChIJ4y6QJBw4xIkRf_WPj5QiH8g", | |
"plus_code": { | |
"compound_code": "MFCG+C9 Whitehall, PA, United States", | |
"global_code": "87G6MFCG+C9" | |
}, | |
"rating": 4.5, | |
"reference": "ChIJ4y6QJBw4xIkRf_WPj5QiH8g", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 66, | |
"vicinity": "3219 Macarthur Road, Whitehall" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.5077794, | |
"lng": -75.06906549999999 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.5092420302915, | |
"lng": -75.06724701970849 | |
}, | |
"southwest": { | |
"lat": 40.5065440697085, | |
"lng": -75.0699449802915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "eaae8efb2739a27e122fa703530b7e8b6c24f6f8", | |
"name": "Tinicum Park", | |
"photos": [ | |
{ | |
"height": 2662, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/112154328834630733668\"\u003eMatt Roy\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAAfQC9QnEflP3irLg2qcrqq7Hw98oqnxfvK3ceQxchILHnW6tNdF-arriGwTxV0lwlbPyk3yuuG9wg8XU6MiMm8TPpvhdmzvMK1xYrBzbthnVVTrRMEbp-nwmHi0GWOohEhBAEJwma7-fk9IhMAukU1JLGhSsiDiw65O3cnXyqz3h5ycCoWGFKw", | |
"width": 2660 | |
} | |
], | |
"place_id": "ChIJhRVEutcOxIkRk_qW6_8Qi50", | |
"plus_code": { | |
"compound_code": "GW5J+49 Upper Black Eddy, PA, United States", | |
"global_code": "87G6GW5J+49" | |
}, | |
"rating": 4.6, | |
"reference": "ChIJhRVEutcOxIkRk_qW6_8Qi50", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"tourist_attraction", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 286, | |
"vicinity": "963 River Road, Upper Black Eddy" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.684045, | |
"lng": -74.89603079999999 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.68494135, | |
"lng": -74.89491441970848 | |
}, | |
"southwest": { | |
"lat": 40.68135595, | |
"lng": -74.89761238029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "c906117efc8f001fc23fe60026d4677c25fb042e", | |
"name": "Voorhees State Park", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 2988, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/109729531551468780668\"\u003eCameron Clark\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAASaf078J4xRdDyN5BbziT32zjn0l4WUypq3MoYjMedbRmotptMIAkGRh6kJr1P8z3hS63_1E-jrio7DvRku4zO1s8IfaJ4znEDUn7PV7zjoghGiEahD7r8a1GvdgQMReREhDNcGnLGWAufDMu_aaAyMDFGhTfusZz3WnsgSA4i8IbyjcuuK0GvQ", | |
"width": 5312 | |
} | |
], | |
"place_id": "ChIJMyobG16Jw4kRueG8xj1doRQ", | |
"plus_code": { | |
"compound_code": "M4M3+JH Glen Gardner, NJ, United States", | |
"global_code": "87G7M4M3+JH" | |
}, | |
"rating": 4.3, | |
"reference": "ChIJMyobG16Jw4kRueG8xj1doRQ", | |
"scope": "GOOGLE", | |
"types": [ | |
"tourist_attraction", | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 107, | |
"vicinity": "251 County Road Route 513, Glen Gardner" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.32361599999999, | |
"lng": -75.5744304 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.32431903029149, | |
"lng": -75.5733166697085 | |
}, | |
"southwest": { | |
"lat": 40.32162106970849, | |
"lng": -75.57601463029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/golf-71.png", | |
"id": "f695423379dacdef71a7c5e97e768e9be6a2401a", | |
"name": "Hickory Valley Golf Club", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 4032, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/116929412081460078594\"\u003eAndrew Dardzinski\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAABmi9UBEfVhnVirdD7JDu6DdMWQhLHB9LRlNueTrBaGMC-SKzU7ddk9RAgMBoYiLTKLcvWRYHzn0LH_IbQmV7S7caI-KkTwZJGW4-5Lg28HFJNN9nQCEqYW52q_pz1A1dEhDcDbfASN6G9nMKVpUlY85nGhT1ji2_Cxe9Kz9MhgyicIentuiv0Q", | |
"width": 3024 | |
} | |
], | |
"place_id": "ChIJlcifaweDxokRPpoQqsRihWg", | |
"plus_code": { | |
"compound_code": "8CFG+C6 Gilbertsville, PA, United States", | |
"global_code": "87G68CFG+C6" | |
}, | |
"rating": 4.1, | |
"reference": "ChIJlcifaweDxokRPpoQqsRihWg", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"point_of_interest", | |
"store", | |
"establishment" | |
], | |
"user_ratings_total": 145, | |
"vicinity": "1921 Ludwig Road, Gilbertsville" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.3414994, | |
"lng": -75.1041839 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.34362775, | |
"lng": -75.10200950000001 | |
}, | |
"southwest": { | |
"lat": 40.34078994999999, | |
"lng": -75.10490869999998 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "91ef0b01d47b9a925944726d0b85160324c8754b", | |
"name": "George M. Bush Park", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 3024, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/109345330109845556676\"\u003eRichard Harbert\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAyVlKkLzltGT4bRJa03vkDJ6HvII2qZWKSBXuyoOHQt4P14Mcn_B-yTehSulXK7Wsfco2xCGv70ICPq2o0rbqejqUgRnMOwPpksrmQ5-0Z850evjvnE1_kcKwFSyDY4CrEhB5pkH4NsFCwYdXaMJl6RScGhTaIJsrwQu_yDWLZLu7srI_51wQQA", | |
"width": 4032 | |
} | |
], | |
"place_id": "ChIJQfZ6xVkCxIkR3qnjDynt0YU", | |
"plus_code": { | |
"compound_code": "8VRW+H8 Doylestown, PA, United States", | |
"global_code": "87G68VRW+H8" | |
}, | |
"rating": 4.6, | |
"reference": "ChIJQfZ6xVkCxIkR3qnjDynt0YU", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"tourist_attraction", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 94, | |
"vicinity": "3868 Burnt House Hill Road, Doylestown" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.5810351, | |
"lng": -75.5467745 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.5823127802915, | |
"lng": -75.5454363197085 | |
}, | |
"southwest": { | |
"lat": 40.5796148197085, | |
"lng": -75.54813428029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "ec67bc972f814bdaf166a5bb5be52bb983c37846", | |
"name": "Lehigh County Sports Fields", | |
"photos": [ | |
{ | |
"height": 2952, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/110948309371836003199\"\u003eMonica Bodor\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAxlUHnivC7lmv2xqIRV3zoJNkemFU9qyIABfEYifcWkeZkBvSau-Y-iMBmW8NToCaARz8THpgghUHyxvh7xoTpF3Ng_O8Ts3X-6boL_Epvuf9pFFvWthwMv7A0zwHfGd7EhClzHU-PCUpoBQr2Q_3t7cFGhQkwf_BTuUF_m45o4zDdyqHDobfIQ", | |
"width": 5248 | |
} | |
], | |
"place_id": "ChIJlSNLCJMwxIkR48TjMg9XsU0", | |
"plus_code": { | |
"compound_code": "HFJ3+C7 Allentown, PA, United States", | |
"global_code": "87G6HFJ3+C7" | |
}, | |
"rating": 4.4, | |
"reference": "ChIJlSNLCJMwxIkR48TjMg9XsU0", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 187, | |
"vicinity": "Allentown" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.6174803, | |
"lng": -75.43706569999999 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.61897993029149, | |
"lng": -75.43577706970849 | |
}, | |
"southwest": { | |
"lat": 40.6162819697085, | |
"lng": -75.4384750302915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "d64433cf0d972ef02e7b77e32082edfabb12e538", | |
"name": "East Side Youth Center", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 3024, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/112879890541956801494\"\u003eMickey DeLorenzo\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAPVDcIMsTBCGwvdgOa7iCYOHB9WFyvHPTC36750nL0vhhg5l1RbcP0Q_PdMgwhGhU5f1-btK5UPJxVTf08TtPwH5z2jOUOIiyTlHKtN8HH5MVnH2o1mjjJCoL67uGDB-XEhDx_5RG5sh_dRxDtQO0OWFRGhQIUk92g5EtwCDCIgDCyhdMkjNavA", | |
"width": 4032 | |
} | |
], | |
"place_id": "ChIJUTOV8TQ5xIkRWx18HoAcJ6Y", | |
"plus_code": { | |
"compound_code": "JH87+X5 Allentown, PA, United States", | |
"global_code": "87G6JH87+X5" | |
}, | |
"rating": 4.6, | |
"reference": "ChIJUTOV8TQ5xIkRWx18HoAcJ6Y", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 11, | |
"vicinity": "1140 East Clair Street, Allentown" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.4097579, | |
"lng": -75.03647239999999 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.4111068802915, | |
"lng": -75.0351234197085 | |
}, | |
"southwest": { | |
"lat": 40.4084089197085, | |
"lng": -75.0378213802915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_business-71.png", | |
"id": "1a2712ee6f4524efb162edf8cf8a5b4ee8fed2d1", | |
"name": "Bull's Island Recreation Area", | |
"photos": [ | |
{ | |
"height": 3024, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/109059118362401081868\"\u003eMaewa S\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAj5XDSIWudRi9mhCe4Kl3Wp7LtcMmSc0EfFCYKrb52SSf1AIGRUhAb-lrlTkHm2shycU4o3xOXFdrZYqnrz1hD9eqF63BLrDI5Orl-t0XNEskZXU189xs90VYY9walL5CEhCDOtwv294hbC8WCnfylyNLGhQ6ulNBcnE5gPwyDs1UsEj7gtDoSQ", | |
"width": 4032 | |
} | |
], | |
"place_id": "ChIJibxQwuwGxIkRv1Ht_FZ5Ct4", | |
"plus_code": { | |
"compound_code": "CX57+WC Stockton, NJ, United States", | |
"global_code": "87G6CX57+WC" | |
}, | |
"rating": 4.5, | |
"reference": "ChIJibxQwuwGxIkRv1Ht_FZ5Ct4", | |
"scope": "GOOGLE", | |
"types": [ | |
"tourist_attraction", | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 171, | |
"vicinity": "2185 Daniel Bray Highway, Stockton" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.52615360000001, | |
"lng": -75.49873409999999 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.52732408029151, | |
"lng": -75.4975518697085 | |
}, | |
"southwest": { | |
"lat": 40.52462611970851, | |
"lng": -75.50024983029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "beee0a38de5c54bee0852c3bed69daee2488f505", | |
"name": "Furnace Dam", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 3264, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/117323294328631055964\"\u003eKevin Servais\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAay8T5dsSbw6kXf8lZfLYEp9UWF0u1lY5qU-RAMDnEstR4fQKW6tGpGftErxT0i7jDRjzjIUZRHgmamLrz_g1Hf6ff6PBm5txKXN0CWpvG9J-ua9rD5hem1U6xByE4GfKEhBq4S8y08Ht6oHgkLgywAqHGhSTeOuqGmE1_BrowB85MJm7qvH_OA", | |
"width": 2448 | |
} | |
], | |
"place_id": "ChIJHUvKiMs6xIkR4ugJiDK4oVQ", | |
"plus_code": { | |
"compound_code": "GGG2+FG Emmaus, PA, United States", | |
"global_code": "87G6GGG2+FG" | |
}, | |
"rating": 4.2, | |
"reference": "ChIJHUvKiMs6xIkR4ugJiDK4oVQ", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 37, | |
"vicinity": "420 South 10th Street, Emmaus" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.51195799999999, | |
"lng": -75.06312319999999 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.51329013029149, | |
"lng": -75.06149691970847 | |
}, | |
"southwest": { | |
"lat": 40.5105921697085, | |
"lng": -75.0641948802915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "a602f921d3f20e65611738df647adba85bf77c9a", | |
"name": "Kingwood Park", | |
"photos": [ | |
{ | |
"height": 4032, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/103045452769845482017\"\u003ePop Pop\u003c/a\u003e" | |
], | |
"photo_reference": "CmRZAAAAS7M1w_bTLuPlrbVOFKuadiEZK-1pPPYdUk47OdgjwfkV6zeyDm4mxNi17WQI5haIqTObpNkS3RKZmQlXPzob5Se-_f7OO-2I0PRTpDF967vsJ3i22ri4VM3OCvooJ6A0EhDw3gpVx3C4t3xV9pHRlnrAGhR6V4abww0Ad7nDgS5_t5debc3WmQ", | |
"width": 3024 | |
} | |
], | |
"place_id": "ChIJSUjcbtMOxIkRVU3NNhyAHRo", | |
"plus_code": { | |
"compound_code": "GW6P+QQ Frenchtown, NJ, United States", | |
"global_code": "87G6GW6P+QQ" | |
}, | |
"rating": 4.5, | |
"reference": "ChIJSUjcbtMOxIkRVU3NNhyAHRo", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"tourist_attraction", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 47, | |
"vicinity": "River Drive, Frenchtown" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.5783031, | |
"lng": -75.5910873 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.57957148029149, | |
"lng": -75.58963946970849 | |
}, | |
"southwest": { | |
"lat": 40.5768735197085, | |
"lng": -75.59233743029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "4a9680f0ff9aa42f6cfd9f980e920ae76919f5ca", | |
"name": "Lone Lane Park", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 3024, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/108077648611540854589\"\u003eNick Krivosh\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAchu2TX5ymjK0IOoLyG5INBzCnQW-XL6Gv83vOyGgfZrwOk94_QxbLVzFYlQWAgr_gCHlirZigUmKqh4IMxgXFnvyxgRs9n36RlM75X9I0RW-_HK7ypXqUDNbccfLgjXcEhDQFJhehOEoT41-ARynsPz8GhR_yyu2XJ7l7elenL0vXnJq1JQC9g", | |
"width": 4032 | |
} | |
], | |
"place_id": "ChIJbwYRZAkxxIkRtenQae-Dn04", | |
"plus_code": { | |
"compound_code": "HCH5+8H Allentown, PA, United States", | |
"global_code": "87G6HCH5+8H" | |
}, | |
"rating": 4.6, | |
"reference": "ChIJbwYRZAkxxIkRtenQae-Dn04", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"tourist_attraction", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 257, | |
"vicinity": "30 Lone Lane, Allentown" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.5154794, | |
"lng": -75.5522591 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.5166266302915, | |
"lng": -75.5509813197085 | |
}, | |
"southwest": { | |
"lat": 40.51392866970851, | |
"lng": -75.5536792802915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "e42245c7b3e594818d4f9d222a16a837f05b2c56", | |
"name": "Macungie Memorial Park", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 2952, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/117731301992759075512\"\u003eRichard Greene\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAyiyzRaMYPw5ud3RGQPlk0KyZH-1Q58ovMDH3t-2rBkC1YiBY2qGQA2rC6m4PIz2Dnao6h1JL6bQup_0ERKJKVuczP2JhcpDHG6kQjKg0tmbOo47BAnxyndqzhkNTW668EhDYsgMML8M_fZhDHR8grKb4GhQxBZxORfCEk7ye-Te5wDBAMAmrKg", | |
"width": 5248 | |
} | |
], | |
"place_id": "ChIJdXNMy-kvxIkR5pSjwshPG2c", | |
"plus_code": { | |
"compound_code": "GC8X+53 Macungie, PA, United States", | |
"global_code": "87G6GC8X+53" | |
}, | |
"rating": 4.6, | |
"reference": "ChIJdXNMy-kvxIkR5pSjwshPG2c", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"tourist_attraction", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 670, | |
"vicinity": "50 Poplar Street, Macungie" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.6128902, | |
"lng": -75.09907459999999 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.6142391802915, | |
"lng": -75.0977256197085 | |
}, | |
"southwest": { | |
"lat": 40.6115412197085, | |
"lng": -75.1004235802915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "5f0f4dd679a0a16677608693721dd623e1919e67", | |
"name": "Hunterdon County", | |
"photos": [ | |
{ | |
"height": 3024, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/117955715643556848876\"\u003eAden Gelmi\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAB1lT562bElK6qVuT_8CP4Bm6SZgugHlc5XcF7RKWWzcVvRas5XBoy7rv0U6jivgarFGJzYjELWpGmcln-bxrL-txkJqmG77dqdNM1vEzGE3I-dceOX0PSCdxEWO7TyNDEhC2KFIEGFRCThZ6JWtAPd2hGhTrbe_4xVZiFlGWi3uT3uuMiDxIew", | |
"width": 4032 | |
} | |
], | |
"place_id": "ChIJGWVsI9wMxIkRepmZ_ePOli8", | |
"plus_code": { | |
"compound_code": "JW72+59 Milford, NJ, United States", | |
"global_code": "87G6JW72+59" | |
}, | |
"rating": 4.1, | |
"reference": "ChIJGWVsI9wMxIkRepmZ_ePOli8", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 10, | |
"vicinity": "17 Green Street, Milford" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 41.0420768, | |
"lng": -75.3515671 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 41.0436482302915, | |
"lng": -75.35003696970848 | |
}, | |
"southwest": { | |
"lat": 41.0409502697085, | |
"lng": -75.3527349302915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "6e2de35b82a81c1f294a1f8ea532fdbf3987d994", | |
"name": "Big Pocono State Park", | |
"photos": [ | |
{ | |
"height": 3136, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/104090561525152417162\"\u003eTaley Mechlovitz\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAbQSZ2AmjpXUMj8rCu9aFZ2_4bbznk90VFCISVUCY37Xjs9H8yL9_NM1xjhc-cJRhJeJBvCgTf3Y4ZD85Kd_sLXT4RIngZuhYbkHVlkl0exZImvgYymUc3EEmd-ZLIPl_EhDhfCn14JGUTB3eo6jCYe-wGhTHwKHn7X-vnuXYWUGUsdXi7dTfnA", | |
"width": 5100 | |
} | |
], | |
"place_id": "ChIJSaLRCbX0xIkRYqYjA2wqfio", | |
"plus_code": { | |
"compound_code": "2JRX+R9 Tannersville, PA, United States", | |
"global_code": "87H62JRX+R9" | |
}, | |
"rating": 4.7, | |
"reference": "ChIJSaLRCbX0xIkRYqYjA2wqfio", | |
"scope": "GOOGLE", | |
"types": [ | |
"tourist_attraction", | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 1077, | |
"vicinity": "980 Camelback Road, Tannersville" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.616163, | |
"lng": -75.065062 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.6175045802915, | |
"lng": -75.0637631197085 | |
}, | |
"southwest": { | |
"lat": 40.6148066197085, | |
"lng": -75.06646108029152 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/camping-71.png", | |
"id": "201440b8d4d7d9c92c85e41c9ead373c2b6f6cfd", | |
"name": "Mountainview Campground", | |
"photos": [ | |
{ | |
"height": 5248, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/116518963172449655585\"\u003eDon Stewart\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAfR6_fHD5fVc0hiFM3ao4oOUY4egcRs4K-mLTfNJG-2_27KGBLpsCmCoKwUudh3YZ10vU9hjH1SZvQxzecRDyACSkW5DPbWO8g1PQjTlh8AEYd1uHk6umOETiSXgZrkOpEhAeQcWffjoigPY8HvcKCHH8GhQeDo2XmQe3K7RRvF2AzOshwxVY0g", | |
"width": 2952 | |
} | |
], | |
"place_id": "ChIJK-JkNGwNxIkRjBMOzWyGyz4", | |
"plus_code": { | |
"compound_code": "JW8M+FX Milford, NJ, United States", | |
"global_code": "87G6JW8M+FX" | |
}, | |
"rating": 4.5, | |
"reference": "ChIJK-JkNGwNxIkRjBMOzWyGyz4", | |
"scope": "GOOGLE", | |
"types": [ | |
"campground", | |
"lodging", | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 74, | |
"vicinity": "135 Goritz Road, Milford" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.85355730000001, | |
"lng": -75.7759995 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.8550905302915, | |
"lng": -75.77460711970849 | |
}, | |
"southwest": { | |
"lat": 40.8523925697085, | |
"lng": -75.7773050802915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/camping-71.png", | |
"id": "070430cdd6feab8cbfdee74ba5b3ae96dab426e4", | |
"name": "Jim Thorpe Camping Resort", | |
"photos": [ | |
{ | |
"height": 3036, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/108923686724184444554\"\u003eJake Adkins\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAA55j2Sf-2onRNELCmpALA_hqqAEkHwyNJC9Q0XA91VFtaK4-tl6b-3PmZaKBEvsXuXLroMxj6b4A9Okb4djFNOK1xCWKtRqmBqwlisyVvzuHtSrH6xJMMVCSFz2YdybxwEhAPEnfaLJkkgtamtU_iasHmGhTLkGss4eHbefrfiGtJJT1vXWO_7Q", | |
"width": 4048 | |
} | |
], | |
"place_id": "ChIJJQ1D9EKyxYkRqbGkioLq0zM", | |
"plus_code": { | |
"compound_code": "V63F+CJ Jim Thorpe, PA, United States", | |
"global_code": "87G6V63F+CJ" | |
}, | |
"rating": 4.2, | |
"reference": "ChIJJQ1D9EKyxYkRqbGkioLq0zM", | |
"scope": "GOOGLE", | |
"types": [ | |
"campground", | |
"lodging", | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 235, | |
"vicinity": "129 Lentz Trail, Jim Thorpe" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.6068067, | |
"lng": -75.4566851 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.6082580802915, | |
"lng": -75.4553517197085 | |
}, | |
"southwest": { | |
"lat": 40.6055601197085, | |
"lng": -75.45804968029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "83f96265435c23b1685170b065376c15d0a981a0", | |
"name": "Lehigh Landing", | |
"photos": [ | |
{ | |
"height": 2160, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/113725843303524391985\"\u003eCarolina Garcia\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAKo0ZaRxzdT5BLEoiMo_jGe11M4m13TtPSHD-zBA7sX8zbehDAZeyFt1wTCAtV7pUUYY7mwtjSF4yyBjcHkfaOpRG1loY3XVWIw0w7GqIO8RmFb-oXbLe5wQSb3hAWhnOEhChOr8vhj2sWz54ag_2_4DgGhSjhVZ5Ge5P4hhp1mWu-ErtYqIZFQ", | |
"width": 2880 | |
} | |
], | |
"place_id": "ChIJG8UHSl05xIkR6hQqVQ2I1YQ", | |
"plus_code": { | |
"compound_code": "JG4V+P8 Allentown, PA, United States", | |
"global_code": "87G6JG4V+P8" | |
}, | |
"rating": 4.6, | |
"reference": "ChIJG8UHSl05xIkR6hQqVQ2I1YQ", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 55, | |
"vicinity": "5 North Front Street, Allentown" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.926641, | |
"lng": -75.20151760000002 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.92824203029149, | |
"lng": -75.2006814697085 | |
}, | |
"southwest": { | |
"lat": 40.92554406970849, | |
"lng": -75.20337943029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "53e122edfd31bf370d3d9244da9ded8dfc197dec", | |
"name": "Columcille Megalith Park", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 2976, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/101980124636428507477\"\u003eSerge Polonski\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAA6fUC7WWeW1iIVRclWDpXjbIq15-1P2TPR2CQiIHvCojccOtcXIbjjCjldvBRHk5sqOrB-XFCRY4H_VjGpHqXRXHqVTMxOQjLPEw5bNtK0Sy5gQR-hZ4yuX7x9kULYM3DEhBW1PwUtVzMNqgGp9_xkAKVGhQHm3geEAJRHIIRs-uXgrtpjp_fFA", | |
"width": 3968 | |
} | |
], | |
"place_id": "ChIJs4LjEVZixIkR-qPmA02ZOI8", | |
"plus_code": { | |
"compound_code": "WQGX+M9 Bangor, PA, United States", | |
"global_code": "87G6WQGX+M9" | |
}, | |
"rating": 4.8, | |
"reference": "ChIJs4LjEVZixIkR-qPmA02ZOI8", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"tourist_attraction", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 606, | |
"vicinity": "2155 Fox Gap Road, Bangor" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.22711839999999, | |
"lng": -75.35615709999999 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.22830368029149, | |
"lng": -75.35452361970847 | |
}, | |
"southwest": { | |
"lat": 40.2256057197085, | |
"lng": -75.35722158029149 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "db04dc932c43a81d836ed489cf02d358ab85ba5b", | |
"name": "Fischer's Park", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 3024, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/100385286763850562026\"\u003eHarshil Patel\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAFqjdsdzbwVUWrZT3Hyn_Cm624TPI-lkKvwPqQ9eR4dO9zqQYns0IU_GCpwNPfyBpdgi862CE0dPyN82JwKp1_QzCq-0lOR7xeVCiHIi4Zh4s1JOcrR64z1MWHM-xYxtfEhBcxU_5mlk7ds15v_5CNPTSGhRxK10x7DAVF_UEvVulzbsbGfUf_g", | |
"width": 4032 | |
} | |
], | |
"place_id": "ChIJxd8zqomYxokRKXdU83C8FM8", | |
"plus_code": { | |
"compound_code": "6JGV+RG Harleysville, PA, United States", | |
"global_code": "87G66JGV+RG" | |
}, | |
"rating": 4.7, | |
"reference": "ChIJxd8zqomYxokRKXdU83C8FM8", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"tourist_attraction", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 549, | |
"vicinity": "2235 Bustard Road, Harleysville" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.8785973, | |
"lng": -75.7261328 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.8799061802915, | |
"lng": -75.72482411970849 | |
}, | |
"southwest": { | |
"lat": 40.8772082197085, | |
"lng": -75.72752208029149 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "ba23168c779e61bb58db124242f7db2dfd74f189", | |
"name": "Jim Thorpe Memorial Hall", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 3036, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/110497636002638894171\"\u003eSteve Naples\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAHiiQGpMv2sb-yM2qcyZdsvPR1h6tlzD8a3oJ-4T1eDtFCIVx795zpQoOphSbHCGTaJuAs0wAt-xeTipt1f-TDr1Rj5EWr8LYD7S86GCqAZZhXKaQYOgblexJ9P_4pZCLEhBWtQ2eYhIS1lAWdMsqAqN3GhRxi216kclprCFsQs2Aub02yBs_MA", | |
"width": 4048 | |
} | |
], | |
"place_id": "ChIJX803mVqtxYkRgCDUSRq5UT8", | |
"plus_code": { | |
"compound_code": "V7HF+CG Jim Thorpe, PA, United States", | |
"global_code": "87G6V7HF+CG" | |
}, | |
"rating": 4.4, | |
"reference": "ChIJX803mVqtxYkRgCDUSRq5UT8", | |
"scope": "GOOGLE", | |
"types": [ | |
"tourist_attraction", | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 101, | |
"vicinity": "101 East 10th Street, Jim Thorpe" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.2364834, | |
"lng": -75.2055841 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.2378229802915, | |
"lng": -75.20424511970849 | |
}, | |
"southwest": { | |
"lat": 40.2351250197085, | |
"lng": -75.20694308029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "853a1ddd632bd9b602b4c632d3798a97ed725629", | |
"name": "Windlestrae Park", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 3264, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/110288808276031977787\"\u003eBrian Rickman\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAWM7VueC1yVyPlI4a7Bns-xTd2rYLizeBIByK4SwRoYFwj5PplCHQnEJ91kQLqqGT9knTtzqGQr1j8BSaLQMifoqlppWhJbfFUtyek9yW0L0l1dsQMZx-lNb84DZdcPXmEhDM1z9cWZzZJHbyKHSylATcGhRsH8nhiW0ToSz0DCc7trvoJrD4lQ", | |
"width": 2448 | |
} | |
], | |
"place_id": "ChIJnRJY6i6kxokRd3oz5l8qtCY", | |
"plus_code": { | |
"compound_code": "6QPV+HQ North Wales, PA, United States", | |
"global_code": "87G66QPV+HQ" | |
}, | |
"rating": 4.5, | |
"reference": "ChIJnRJY6i6kxokRd3oz5l8qtCY", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"tourist_attraction", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 141, | |
"vicinity": "1147 Kenas Road, North Wales" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.2111874, | |
"lng": -75.2877515 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.2121977802915, | |
"lng": -75.28589256970849 | |
}, | |
"southwest": { | |
"lat": 40.2094998197085, | |
"lng": -75.28859053029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "45747e43ada57308053b4d78c22f6f0d6235bbd5", | |
"name": "Parkside Place Park", | |
"photos": [ | |
{ | |
"height": 609, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/117076032621549031988\"\u003eParkside Place Park\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAARMNglPtoPwJD0GE50JmtPQ5xyjopZRNTjVowWox0-EKXgKIxHUInFwL0pX_qIb8OPqjrAEwSaoquijeukygeD87EBumPlIwrF8cHTYpCqC8W46ZntiQ1zJIQI8h8GE0MEhAYplOSWgRh7-GrPg5PzFzXGhTRRu4_0ZCtIJkwY6p8xrKwONqRew", | |
"width": 1080 | |
} | |
], | |
"place_id": "ChIJHernNwSjxokRpQky6Jo2wog", | |
"plus_code": { | |
"compound_code": "6P66+FV North Wales, PA, United States", | |
"global_code": "87G66P66+FV" | |
}, | |
"rating": 4.6, | |
"reference": "ChIJHernNwSjxokRpQky6Jo2wog", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"tourist_attraction", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 480, | |
"vicinity": "1 Parkside Place, North Wales" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.3974046, | |
"lng": -75.27330460000002 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.39882903029149, | |
"lng": -75.27188381970849 | |
}, | |
"southwest": { | |
"lat": 40.3961310697085, | |
"lng": -75.27458178029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/civic_building-71.png", | |
"id": "f075424c435ea75a8ddcaf34d4456480b5e559ba", | |
"name": "East Rockhill Township Municipal Building", | |
"opening_hours": { | |
"open_now": false | |
}, | |
"photos": [ | |
{ | |
"height": 2048, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/103968318632254645360\"\u003eEast Rockhill Township Municipal Building\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAuQIH4nKKHRQjQZ1mA6o8lfpq1qgWw7yqxPl6laAHTxzSx3CLQ9vIqZAFGQ3FJm4-zHbzcecbjk6ijuK0_hnpLvu5NhSCbhBustfpax_uj0yge2D0fIDegd3JMqtO_PG7EhCazk7xFrxwAzauQ_xIkU7QGhRY2hlLngG2Ti_TFxYoQBTlnTRliw", | |
"width": 1365 | |
} | |
], | |
"place_id": "ChIJJ_NOXsAexIkR6lORn3-s93o", | |
"plus_code": { | |
"compound_code": "9PWG+XM Perkasie, PA, United States", | |
"global_code": "87G69PWG+XM" | |
}, | |
"reference": "ChIJJ_NOXsAexIkR6lORn3-s93o", | |
"scope": "GOOGLE", | |
"types": [ | |
"local_government_office", | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"vicinity": "1622 Ridge Road, Perkasie" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.18588159999999, | |
"lng": -75.2986621 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.1874463802915, | |
"lng": -75.29740726970849 | |
}, | |
"southwest": { | |
"lat": 40.1847484197085, | |
"lng": -75.30010523029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_business-71.png", | |
"id": "f9f17f926d86ba93b77db7d93946d0a9b8932675", | |
"name": "Stony Creek Sports Park", | |
"photos": [ | |
{ | |
"height": 4032, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/117702152706904006496\"\u003eChris Hellings\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAOXp5n6KGotVsrKbkwEaxXqXYd0kcvne5F6sGLFGTQ-60AeyWD1j9wLnuGUBO-fjB_kWhjwdh6VKhnWd1ulTQeuHz6PjGP77_Jha1qHAif7f22ffB91HxjkCdKkipt4eDEhBitqt70AH18mZ1GNDz0ufVGhQTWQawVQjp3kxHKWt02mFOC4vLBw", | |
"width": 3024 | |
} | |
], | |
"place_id": "ChIJW460FdeixokRWesZO1l22_o", | |
"plus_code": { | |
"compound_code": "5PP2+9G Lansdale, PA, United States", | |
"global_code": "87G65PP2+9G" | |
}, | |
"rating": 4.6, | |
"reference": "ChIJW460FdeixokRWesZO1l22_o", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 33, | |
"vicinity": "500 North Wales Road, Lansdale" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.8972143, | |
"lng": -75.60409869999999 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.8985376802915, | |
"lng": -75.6027969197085 | |
}, | |
"southwest": { | |
"lat": 40.8958397197085, | |
"lng": -75.6054948802915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/camping-71.png", | |
"id": "65965dc22fac683f06e3877f2ebe1d674c9b58a8", | |
"name": "The Woods Camping Resort", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 900, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/110770698185518009583\"\u003eThe Woods Camping Resort\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAIvccUE6nag4t5g3j21qtWk6BUkVkWDWmbzc6vEyH-9fUIivmU_IciLNnKscXtDgaSajLkA1GubTLsUkbnWUhe6uBPw-zz9yuHCALkrikI5PaiLNzAUc85mzDDotCOc_rEhCFbBe8a6P62taw0TAXa6RPGhQ-UM3hbtMKamHHAtOQSBkNBFcPbQ", | |
"width": 1600 | |
} | |
], | |
"place_id": "ChIJN71WbXRRxIkRyq6lA1k-5hA", | |
"plus_code": { | |
"compound_code": "V9WW+V9 Lehighton, PA, United States", | |
"global_code": "87G6V9WW+V9" | |
}, | |
"rating": 4.8, | |
"reference": "ChIJN71WbXRRxIkRyq6lA1k-5hA", | |
"scope": "GOOGLE", | |
"types": [ | |
"campground", | |
"lodging", | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 331, | |
"vicinity": "3500 Forest Street, Lehighton" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.433429, | |
"lng": -75.08780899999999 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.4347645302915, | |
"lng": -75.08647326970851 | |
}, | |
"southwest": { | |
"lat": 40.4320665697085, | |
"lng": -75.08917123029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/camping-71.png", | |
"id": "e694e5661d29d72d00150b5301a64e0a050ef923", | |
"name": "Ockanickon Scout Reservation", | |
"opening_hours": { | |
"open_now": false | |
}, | |
"photos": [ | |
{ | |
"height": 3024, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/102033437127447590418\"\u003eBruce J. Allen\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAA5OuFswzdlcIbuiq20MoS2ULcgqxvhIMRlUwFmU_YWZICNdLDi09xdWS-F8Wfe9617MKORzaFM6mS-PpjCS6MVesvVLdTs_91YHLU8Xi-ep8-kvQkSGojW4LEC2ecwS-dEhBCeqojxACBKhQthiUYEc0oGhTRiAa1zNIjSJNXxxEOM0ZX1KdOyA", | |
"width": 4032 | |
} | |
], | |
"place_id": "ChIJac_Ax7cFxIkRnxg6UMfp_2U", | |
"plus_code": { | |
"compound_code": "CWM6+9V Pipersville, Bedminster Township, PA, United States", | |
"global_code": "87G6CWM6+9V" | |
}, | |
"rating": 4.6, | |
"reference": "ChIJac_Ax7cFxIkRnxg6UMfp_2U", | |
"scope": "GOOGLE", | |
"types": [ | |
"campground", | |
"lodging", | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 129, | |
"vicinity": "5787 State Park Road, Pipersville" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.274838, | |
"lng": -75.45613500000002 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.2762611302915, | |
"lng": -75.45473836970849 | |
}, | |
"southwest": { | |
"lat": 40.2735631697085, | |
"lng": -75.45743633029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/shopping-71.png", | |
"id": "2e1ba40bbd492ee6e9c725b7e67da767e04f4103", | |
"name": "Cabin Craft Ski Shop and Outdoor Adventures", | |
"opening_hours": { | |
"open_now": false | |
}, | |
"photos": [ | |
{ | |
"height": 1536, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/112888079904486037269\"\u003eCabin Craft Ski Shop and Outdoor Adventures\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAphUW3iLRjAphwC3hhVJt7Z5ySwTqWuAApS_subEmPFo4sB_rLKX2fnxkG-WOZA67ooWpTK_cb5f1vP-ltBI8BZgI7v1Rsv2qBoromnTUhxqzjNlHpcadYHJsNIUx64sHEhCln-pW6Fj8ixrQTKIIQ3heGhQauXo1sLzoNehXETL4yS-Dd927iQ", | |
"width": 2048 | |
} | |
], | |
"place_id": "ChIJjdMRBbuQxokRzGt8OZWQH-g", | |
"plus_code": { | |
"compound_code": "7GFV+WG Spring Mount, PA, United States", | |
"global_code": "87G67GFV+WG" | |
}, | |
"rating": 4.6, | |
"reference": "ChIJjdMRBbuQxokRzGt8OZWQH-g", | |
"scope": "GOOGLE", | |
"types": [ | |
"campground", | |
"lodging", | |
"park", | |
"point_of_interest", | |
"store", | |
"establishment" | |
], | |
"user_ratings_total": 47, | |
"vicinity": "2 Main Street, Spring Mount" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.864281, | |
"lng": -75.74295499999999 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.86573268029149, | |
"lng": -75.74161451970849 | |
}, | |
"southwest": { | |
"lat": 40.86303471970849, | |
"lng": -75.7443124802915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_business-71.png", | |
"id": "9c87be421d1013bb2a8e553bb523e1ea9e5b793a", | |
"name": "The Jim Thorpe eXperience", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 720, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/106171921456203271923\"\u003eWilliam Flynn\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAHc3oFcMBiOFtb7X6lsbg7MVBKtUfuU1OfCwhh-P5HL9QrLUfgUSf63Xp7kfN6hvY4snvQ-bKxMRlVNdUx7jVIHTUUXEzfNtwW73zAkO7KkCp5dK_2IHNQ2OsjCFdrlqtEhAUqigVU9GxRJ2ZM_rFulZaGhRJNg1xj0H62dkJEUV9ddeVqWnD_A", | |
"width": 960 | |
} | |
], | |
"place_id": "ChIJq3qAgJmyxYkRfvuHb-RYbHk", | |
"plus_code": { | |
"compound_code": "V774+PR Jim Thorpe, PA, United States", | |
"global_code": "87G6V774+PR" | |
}, | |
"rating": 4.9, | |
"reference": "ChIJq3qAgJmyxYkRfvuHb-RYbHk", | |
"scope": "GOOGLE", | |
"types": [ | |
"travel_agency", | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 13, | |
"vicinity": "37 West Broadway, Jim Thorpe" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.3771102, | |
"lng": -75.4111716 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.37845503029149, | |
"lng": -75.4098445197085 | |
}, | |
"southwest": { | |
"lat": 40.3757570697085, | |
"lng": -75.41254248029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/camping-71.png", | |
"id": "71595ed2fbf95c0d7a0d49eb7bf9d38db341b936", | |
"name": "Boulder Woods Campground", | |
"photos": [ | |
{ | |
"height": 600, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/101497161116345991865\"\u003eBoulder Woods Campground\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAHcrLeRVvMRLA5NTsduzLAbaa6SMt1jTxe2KkFBHypA67MoYGY0XyjFZWa2_3ww-nS24amwM_IGB5kUJ7kcPtJYvQOTmcuObQgNLYZwa1yGbj12otZ4NCEHFgIobFbFbqEhDNxxhvWSxkVQUHNcZE9LjTGhRn_qQjbWyM5huaXf85Hj94QiN7UA", | |
"width": 800 | |
} | |
], | |
"place_id": "ChIJLSR4AMIgxIkRn5Ekd--g8oI", | |
"plus_code": { | |
"compound_code": "9HGQ+RG Green Lane, PA, United States", | |
"global_code": "87G69HGQ+RG" | |
}, | |
"rating": 4.4, | |
"reference": "ChIJLSR4AMIgxIkRn5Ekd--g8oI", | |
"scope": "GOOGLE", | |
"types": [ | |
"campground", | |
"lodging", | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 215, | |
"vicinity": "1050 Skymount Road, Green Lane" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.7294702, | |
"lng": -75.2472281 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.7308090802915, | |
"lng": -75.24588011970849 | |
}, | |
"southwest": { | |
"lat": 40.7281111197085, | |
"lng": -75.24857808029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "902003237883f5211ff024aa6409c022efc44f47", | |
"name": "Mill Race Park", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 3024, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/107943814778115810277\"\u003eRizwan\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAARfYNx5wac3024nq88-vWzz3TQGo8MndeKqylhzNQmuijxLN0vBZ_kO1lBMMeqPOk6i24RCgEWidJN70A9m-SF3xHBp9XBhx2YLI61y5tQbUIAUSytGC6a44DYDrEcJ4sEhBYjjE0r3LpNNusAA3nf-4OGhQqf1F2WwijzEfz4ZLzY8w7HkBpcQ", | |
"width": 4032 | |
} | |
], | |
"place_id": "ChIJKz5Dr6puxIkRHju7Iip28uQ", | |
"plus_code": { | |
"compound_code": "PQH3+Q4 Easton, PA, United States", | |
"global_code": "87G6PQH3+Q4" | |
}, | |
"rating": 4.4, | |
"reference": "ChIJKz5Dr6puxIkRHju7Iip28uQ", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"tourist_attraction", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 73, | |
"vicinity": "Easton" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.5992166, | |
"lng": -75.4499775 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.6005716802915, | |
"lng": -75.44865411970849 | |
}, | |
"southwest": { | |
"lat": 40.5978737197085, | |
"lng": -75.4513520802915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "97aa95b0346a7bb02cd1387146043187a0901a51", | |
"name": "Canal Park", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 2432, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/116607399615073611237\"\u003eE. Miller\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAB7uqhbJ4rcKziUj26mDGEjBVFSUzTv7LoiOlyPJurr1bQPft4XQf2lhloNJELPT2TNuwmwFIBinFQ8UpAc2jSKAQib52_KHIqora1o1mrHH2igiqe2nVdl06q8TRcNHwEhAs0n8uLOvPpaiqh9cqY1C6GhQXHBimuXu8xxg_wXppI0c1KVH58w", | |
"width": 4320 | |
} | |
], | |
"place_id": "ChIJrZYhf1k5xIkR2hipK4RSkVc", | |
"plus_code": { | |
"compound_code": "HHX2+M2 Allentown, PA, United States", | |
"global_code": "87G6HHX2+M2" | |
}, | |
"rating": 4.4, | |
"reference": "ChIJrZYhf1k5xIkR2hipK4RSkVc", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"tourist_attraction", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 237, | |
"vicinity": "101 East Walnut Street, Allentown" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.7313371, | |
"lng": -75.3962306 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.7328404302915, | |
"lng": -75.39444891970849 | |
}, | |
"southwest": { | |
"lat": 40.7301424697085, | |
"lng": -75.39714688029152 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "1449fdeedab6d197a28d5652bbbebe6f1a109f71", | |
"name": "Volunteer Firefighters Park", | |
"photos": [ | |
{ | |
"height": 3264, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/108611488564615972839\"\u003eChristine Metzler\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAQPL7KWft2itSh-FKoHz4keOt5KP6I_3TsMTgFQUPYrIQsv9jd4q1TTt-lu384redXdBCSoBDKIUgIohiWCYTxlodpHWKbVxgZRHemF5j2JtMJuiOEjr9VnKf3oN2_2YMEhDUtwateGOo8Fc1UgOMaMtOGhShuelHNv9Iyah__dkilZ5ViCwaHw", | |
"width": 2448 | |
} | |
], | |
"place_id": "ChIJRVZBqXNBxIkRORIDAJHflLM", | |
"plus_code": { | |
"compound_code": "PJJ3+GG Bath, PA, United States", | |
"global_code": "87G6PJJ3+GG" | |
}, | |
"rating": 4.1, | |
"reference": "ChIJRVZBqXNBxIkRORIDAJHflLM", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"tourist_attraction", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 20, | |
"vicinity": "300 North Chestnut Street, Bath" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.4996799, | |
"lng": -75.632758 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.5008511802915, | |
"lng": -75.63151471970849 | |
}, | |
"southwest": { | |
"lat": 40.4981532197085, | |
"lng": -75.6342126802915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "0860937239deff821e05c3955327cfa9bda26474", | |
"name": "Hunsicker's Grove", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 3024, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/102747517421026327655\"\u003eJamie Marie Binkley\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAA8T33DBghHio2qhH8HHsLMF2Vx7Ijq3Rnfd-Q5Mh8ZKZW4nE2dauOtDwtsaQ8GuVQdAH8ecBWRod5QhWru_VMpUOLC5OKW0t1ZE0-mMBnx5Ot3ROE6z7BM7fBruk9CGiJEhAgzEzFWD3nJQ1nEbKfYTKgGhT8lcDA7AQPVCm8biKNzmc3s3X8wQ", | |
"width": 4032 | |
} | |
], | |
"place_id": "ChIJaZ3PyTIsxIkRSIPCaGvp_WI", | |
"plus_code": { | |
"compound_code": "F9X8+VV Mertztown, PA, United States", | |
"global_code": "87G6F9X8+VV" | |
}, | |
"rating": 4.5, | |
"reference": "ChIJaZ3PyTIsxIkRSIPCaGvp_WI", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"tourist_attraction", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 59, | |
"vicinity": "9350 Longswamp Road, Mertztown" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.6891016, | |
"lng": -75.20897979999999 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.6904490302915, | |
"lng": -75.20766296970849 | |
}, | |
"southwest": { | |
"lat": 40.6877510697085, | |
"lng": -75.21036093029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_business-71.png", | |
"id": "693f6d47c0870473b43e04edddc5414cc4fe052f", | |
"name": "Easton Recreation Office", | |
"photos": [ | |
{ | |
"height": 5312, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/115901299652638450797\"\u003eLaurie Chalker\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAGnnyZhySGKcoMlFV50whJ1CnfIUi1Ld7h19_XMrgRejdnI3sBQsXEHtIFOz3cWrqS1yk6k2GZR2zKFoBZ8uvbVk0UFFEvdlaSvZ1w7_rc4LAjPo5HM-aK4yj6zE3bxisEhA2FMjomVwJyPY0zsmR1jt-GhQHicrwiWTNvJQt1vXEzgbxthDOQg", | |
"width": 2988 | |
} | |
], | |
"place_id": "ChIJ1fSWIlFsxIkRc1ei_JWGIRk", | |
"plus_code": { | |
"compound_code": "MQQR+JC Easton, PA, United States", | |
"global_code": "87G6MQQR+JC" | |
}, | |
"reference": "ChIJ1fSWIlFsxIkRc1ei_JWGIRk", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"vicinity": "123 South 3rd Street, Easton" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.3752631, | |
"lng": -75.484173 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.3766580802915, | |
"lng": -75.48265516970849 | |
}, | |
"southwest": { | |
"lat": 40.3739601197085, | |
"lng": -75.4853531302915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "ef6914859bb1920649b592c432c2c5f60b9dfd0c", | |
"name": "Red Hill Park", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 911, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/100150118878607232052\"\u003eFabulous Walrus\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAJhU7Zn8Gsxtu5jtEl-AA_HVpG04ctZPyFF-VXiNM9MwvWva7h1roYP0UHvAlkZVUt6qtvGxPUWm0d5nUflqqnLIT9tS-5ZbOoyWZ5F9EYfFaC5mpZ6-U0RWpFaI28rTHEhB2gsHyzwSVpojAH-KVqGJ7GhTjq5Z6vg6GrqzVeoHI0LvTb3ov8g", | |
"width": 1620 | |
} | |
], | |
"place_id": "ChIJ0T1zNJwnxIkRJIk_ZRxpNLY", | |
"plus_code": { | |
"compound_code": "9GG8+48 Red Hill, PA, United States", | |
"global_code": "87G69GG8+48" | |
}, | |
"rating": 4.2, | |
"reference": "ChIJ0T1zNJwnxIkRJIk_ZRxpNLY", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"tourist_attraction", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 65, | |
"vicinity": "56 East 4th Street, Red Hill" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.57748780000001, | |
"lng": -75.5428659 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.5788404302915, | |
"lng": -75.54153911970849 | |
}, | |
"southwest": { | |
"lat": 40.5761424697085, | |
"lng": -75.54423708029151 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "b11cafcf061917f3cefab3bd56a40a1d612079f7", | |
"name": "Lehigh County Parks & Recreation", | |
"photos": [ | |
{ | |
"height": 3264, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/106305135865196192197\"\u003eIrene Beasley\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAA5PikJE3rJpvW24pUBFhwZbNiuIKHu1fIstkWiB90Gnup9nwTJk4MMGikcvrYFCpS35Ipw_tFvjK1yLsE0BHgE07zgtI73v8TfYfvn23ApPJv9XDqFfKnEGe53xU_7cHEEhDbFx0uv8jDCtTxrPvZQKxYGhS2fba0zJ2kU6Gb118JXhyBbd8Y_w", | |
"width": 1836 | |
} | |
], | |
"place_id": "ChIJDzqTMI4wxIkRJysCW3IiIFw", | |
"plus_code": { | |
"compound_code": "HFG4+XV Allentown, PA, United States", | |
"global_code": "87G6HFG4+XV" | |
}, | |
"rating": 4.8, | |
"reference": "ChIJDzqTMI4wxIkRJysCW3IiIFw", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 11, | |
"vicinity": "260 South Cedarbrook Road, Allentown" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.4823931, | |
"lng": -75.52075499999999 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.4836600302915, | |
"lng": -75.51921471970849 | |
}, | |
"southwest": { | |
"lat": 40.4809620697085, | |
"lng": -75.52191268029149 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "8d3c5fb2c37f8f155dd13acf9f2616636363dd96", | |
"name": "Lenape Park", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 3024, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/115232295520817344264\"\u003ePastor Alejandro Escamilla\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAA4CpJ5Fmvd14YA_kJTFM3WJ5F5bQJ-5rCRFgOo-1qeC3F90_TRAE49UpFriQ4rpG_NYcEHRrJA9CJFFbo6GEusHK9l4wA4LGj0LRH-bkc20vLuzPD8q_LaQ_wLAjlYMSREhD_LGQGsA0kRXx0dDsoVlAHGhS3P8u5A26-AI6jlToLyaYDwuKOAw", | |
"width": 4032 | |
} | |
], | |
"place_id": "ChIJGzM4wYMlxIkRZMc6poCHrBw", | |
"plus_code": { | |
"compound_code": "FFJH+XM Zionsville, PA, United States", | |
"global_code": "87G6FFJH+XM" | |
}, | |
"rating": 4.7, | |
"reference": "ChIJGzM4wYMlxIkRZMc6poCHrBw", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"tourist_attraction", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 56, | |
"vicinity": "6102 Kings Highway South, Zionsville" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.7047222, | |
"lng": -75.35706789999999 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.70609073029149, | |
"lng": -75.3555230697085 | |
}, | |
"southwest": { | |
"lat": 40.7033927697085, | |
"lng": -75.3582210302915 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "9be179dee6772f7912ba000276250b962d2449a1", | |
"name": "Georgetown Road Park", | |
"photos": [ | |
{ | |
"height": 2988, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/104861268685515896469\"\u003eGrant Yoder\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAn2AP1M_VIbDkScuJ7T51_F0iqEaIRhGW1Td_cRBOQmt5ExSg1RVHe8ywXohLBEDxGTlgmAWZFQo4PpvYIGouyYeWQaZOnY7AjBbnqwxRdDawGWzHkaRghP9avE9Atg10EhDiuze2Ii3CtBpQ5BqiLIsHGhTT_qUdoIOepQqBrB4l9FceRs6Z6g", | |
"width": 5312 | |
} | |
], | |
"place_id": "ChIJwV8fwMxBxIkR81rGcvRbjtQ", | |
"plus_code": { | |
"compound_code": "PJ3V+V5 Nazareth, PA, United States", | |
"global_code": "87G6PJ3V+V5" | |
}, | |
"rating": 1, | |
"reference": "ChIJwV8fwMxBxIkR81rGcvRbjtQ", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 2, | |
"vicinity": "496 Georgetown Road, Nazareth" | |
}, | |
{ | |
"business_status": "OPERATIONAL", | |
"geometry": { | |
"location": { | |
"lat": 40.6424441, | |
"lng": -75.38093099999999 | |
}, | |
"viewport": { | |
"northeast": { | |
"lat": 40.6434200802915, | |
"lng": -75.37983401970848 | |
}, | |
"southwest": { | |
"lat": 40.6407221197085, | |
"lng": -75.38253198029149 | |
} | |
} | |
}, | |
"icon": "https://maps.gstatic.com/mapfiles/place_api/icons/generic_recreational-71.png", | |
"id": "0b98f9373072e5dbfecf67e5b5222536b2ff0fa4", | |
"name": "Illick's Mill Park", | |
"opening_hours": { | |
"open_now": true | |
}, | |
"photos": [ | |
{ | |
"height": 3492, | |
"html_attributions": [ | |
"\u003ca href=\"https://maps.google.com/maps/contrib/106894870590163183666\"\u003eJohn Valentine\u003c/a\u003e" | |
], | |
"photo_reference": "CmRaAAAAS5ORuMkbxFzpNfbqjcltLr1kDDJwn7xBNamBkZ390Dia1-0gDUYNwZolPfnD-2MTmQcIOiYCSW41X-EBhKvYlRDend6U10473Y8QWkojgmw-OUMtSwirFCZJpjQeLQZ8EhAn0XQnmNWcXQ-n9nzbeQJHGhSquGm_ub7nne_JLogNtHpVHYFz-g", | |
"width": 4656 | |
} | |
], | |
"place_id": "ChIJp_6E-KM_xIkR8rmphugcYuo", | |
"plus_code": { | |
"compound_code": "JJR9+XJ Bethlehem, PA, United States", | |
"global_code": "87G6JJR9+XJ" | |
}, | |
"rating": 4.5, | |
"reference": "ChIJp_6E-KM_xIkR8rmphugcYuo", | |
"scope": "GOOGLE", | |
"types": [ | |
"park", | |
"tourist_attraction", | |
"point_of_interest", | |
"establishment" | |
], | |
"user_ratings_total": 396, | |
"vicinity": "100 Illick's Mill Road, Bethlehem" | |
} | |
], | |
"status": "OK" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment