Skip to content

Instantly share code, notes, and snippets.

@urschrei
Last active May 8, 2018 15:19
Show Gist options
  • Save urschrei/d7bcd6523117699e4ff96ccfba9300b6 to your computer and use it in GitHub Desktop.
Save urschrei/d7bcd6523117699e4ff96ccfba9300b6 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# needs Pandas, Geopandas, Shapely. Should work on 2.7.x and 3.6.x
# this will only dump properties that are open or partially open today
# this can be adjusted by commenting out or altering the values given to isin()
from datetime import date
import geopandas as gp
import pandas as pd
from shapely.geometry import Point, LineString, Polygon, MultiPolygon, MultiPoint, box
df = pd.read_json("https://www.nationaltrust.org.uk/search/data/all-places")
# flip it
df = df.transpose()
# filter by openingTimes value, so anything that's closed isn't dumped
# possible values: ['Open today', 'Closed today', 'Partially open today', nan]
# dropping nan values may give a false negative, but it's better than a false positive
df = df.loc[df['openingTimeStatus'].isin([u'Open today', u'Partially open today'])]
# GeoJSON CRS
crs = {'init': 'epsg:4326'}
today = date.today()
# split lon and lat
df['longitude'] = df.location.apply(lambda c: c['longitude'])
df['latitude'] = df.location.apply(lambda c: c['latitude'])
# build points
geometry = [Point(xy) for xy in zip(df.longitude, df.latitude)]
# drop columns we don't need
df.drop(
['longitude', 'latitude', 'location', 'displayable', 'alternativeImages'],
axis=1,
inplace=True
)
# create GeoDataFrame
gdf = gp.GeoDataFrame(df, crs=crs, geometry=geometry)
# fix image path
gdf['imagePath'] = 'https://www.nationaltrust.org.uk' + gdf['imagePath'].astype(str)
# dump to GeoJSON
gdf.to_file(
"/Users/sth/dev/national_trust/national_trust_allplaces_%s.geojson" % today.strftime("%Y%m%d"),
driver="GeoJSON"
)
Display the source blob
Display the rendered blob
Raw
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Quirky 18th-century, 16 sided house with fascinating interior decoration and collections", "id": "1", "imageDescription": "A la Ronde in winter", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431765800108-1145180.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431765800108-1145180.jpg", "openingTimeStatus": "Open today", "subTitle": "Exmouth, Devon", "title": "A la Ronde", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/a-la-ronde" }, "geometry": { "type": "Point", "coordinates": [ -3.408798, 50.641718 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "A home with a heartbeat, still lived in today by the Carew Pole family.", "id": "10", "imageDescription": "The garden at Antony", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431745400540-768049.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431745400540-768049.jpg", "openingTimeStatus": "Open today", "subTitle": "Torpoint, Cornwall", "title": "Antony", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/antony" }, "geometry": { "type": "Point", "coordinates": [ -4.22563, 50.3848 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Boating, Dog walking, Fishing, Geocaching, Sailing, Walking", "cmsRegion": "RegionNorthernIreland", "description": "Romantic and tranquil landscape of islands, woodland and historical ruins", "id": "100", "imageDescription": "Castle ruins at Crom, Northern Ireland", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431785753390-castleruinscromntchrislacey.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431785753390-castleruinscromntchrislacey.jpg", "openingTimeStatus": "Open today", "subTitle": "Newtownbutler, County Fermanagh", "title": "Crom", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/crom" }, "geometry": { "type": "Point", "coordinates": [ -7.44284, 54.162601 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Geocaching, Walking", "cmsRegion": "RegionMidlands", "description": "Expect the unexpected. Incredible innovation, devastating loss, remarkable survival and magnificent restoration. All in one place", "id": "101", "imageDescription": "croome court exterior in the evening sunshine", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806662159-courtexterioreveningviewfromnorthwestcreditjohnhubble.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806662159-courtexterioreveningviewfromnorthwestcreditjohnhubble.jpg", "openingTimeStatus": "Open today", "subTitle": "Worcester, Worcestershire", "title": "Croome", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/croome" }, "geometry": { "type": "Point", "coordinates": [ -2.1662722, 52.105154 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionNorthernIreland", "description": "The most famous pub in Belfast", "id": "102", "imageDescription": "Crown Bar Belfast Liquor saloon", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431738354744-cr034.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431738354744-cr034.jpg", "openingTimeStatus": "Open today", "subTitle": "Belfast, County Antrim", "title": "The Crown Bar", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/the-crown-bar" }, "geometry": { "type": "Point", "coordinates": [ -5.9342, 54.5947 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionNorthWest", "description": "14th-century tower built to assert the authority of the Abbot of Furness Abbey", "id": "103", "imageDescription": "Dalton Castle", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/50752.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/50752.jpg", "openingTimeStatus": "Closed today", "subTitle": "Dalton-in-Furness, Cumbria", "title": "Dalton Castle", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/dalton-castle" }, "geometry": { "type": "Point", "coordinates": [ -3.18896, 54.153801 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionNorthernIreland", "description": "Late 18th-century thatched house in gentrified vernacular style", "id": "104", "imageDescription": "Derrymore House", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/derrymorehouse1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/derrymorehouse1400x788.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Newry, County Armagh", "title": "Derrymore House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/derrymore-house" }, "geometry": { "type": "Point", "coordinates": [ -6.38167, 54.189899 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Spectacular views and walks in the Surrey Hills countryside", "id": "106", "imageDescription": "The viewpoint at the Devil's Punch Bowl in winter", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431797180071-viewpointdpbwinter2.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431797180071-viewpointdpbwinter2.jpg", "openingTimeStatus": "Open today", "subTitle": "Hindhead, Surrey", "title": "Hindhead Commons and the Devil's Punch Bowl", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hindhead-commons-and-the-devils-punch-bowl" }, "geometry": { "type": "Point", "coordinates": [ -0.72858, 51.113998 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Running, Walking", "cmsRegion": "RegionWales", "description": "National Nature Reserve, historic house and 18th-century landscape park, enclosing a medieval deer park", "id": "107", "imageDescription": "Golden hour at Dinefwr Park", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431775246240-1151333.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431775246240-1151333.jpg", "openingTimeStatus": "Open today", "subTitle": "Llandeilo, Carmarthenshire", "title": "Dinefwr", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/dinefwr" }, "geometry": { "type": "Point", "coordinates": [ -4.01424, 51.882099 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionWales", "description": "Gold mines in use from Roman times to the 20th century", "id": "108", "imageDescription": "Teithiau tanddaearol ym Mwyngloddiau Aur Dolaucothi", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431755311076-dolaucothi-headliner-web.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431755311076-dolaucothi-headliner-web.jpg", "openingTimeStatus": "Open today", "subTitle": "Llanwrda, Carmarthenshire", "title": "Dolaucothi Gold Mines", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/cy_gb\/mwyngloddiau-aur-dolaucothi" }, "geometry": { "type": "Point", "coordinates": [ -3.94824, 52.0443 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "1930s-style garden, with herbaceous borders, cottage garden and lily pond", "id": "109", "imageDescription": "Herbaceous borders with delphiniums, foxgloves and meadow clary", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/135258-national-trust-images-stephen-robson.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/135258-national-trust-images-stephen-robson.jpg", "openingTimeStatus": "Closed today", "subTitle": "Burnham, Buckinghamshire", "title": "Dorneywood Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/dorneywood-garden" }, "geometry": { "type": "Point", "coordinates": [ -0.64688, 51.5546 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionNorthernIreland", "description": "17th-century house with elegant 18th-century decoration and a traditional farmyard", "id": "11", "imageDescription": "Ardress house ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737632002-ardresshouse1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737632002-ardresshouse1400x788.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Portadown, County Armagh", "title": "Ardress House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/ardress-house" }, "geometry": { "type": "Point", "coordinates": [ -6.59239, 54.442902 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionNorthernIreland", "description": "Visit this stunning landscape and beautiful gardens.", "id": "110", "imageDescription": "Downhill Demesne", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431730298252-downhill.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431730298252-downhill.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Castlerock, County Londonderry", "title": "Downhill Demesne and Hezlett House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/downhill-demesne-and-hezlett-house" }, "geometry": { "type": "Point", "coordinates": [ -6.80705, 55.1609 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Fishing, Walking", "cmsRegion": "RegionMidlands", "description": "An old family home shaped by modern tastes and culture", "id": "111", "imageDescription": "Daffodils at Dudmaston in Shropshire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431743585830-009.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431743585830-009.jpg", "openingTimeStatus": "Open today", "subTitle": "near Bridgnorth, Shropshire", "title": "Dudmaston", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/dudmaston" }, "geometry": { "type": "Point", "coordinates": [ -2.36803, 52.495701 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Horse riding, Walking", "cmsRegion": "RegionNorthWest", "description": "A garden for all seasons, an ancient deer park and a house filled with treasures and stories", "id": "112", "imageDescription": "Dunham Spring Bluebells Close 2017", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431772926700-bluebells-10---dave-jones-spring-2016.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431772926700-bluebells-10---dave-jones-spring-2016.jpg", "openingTimeStatus": "Open today", "subTitle": "Altrincham, Cheshire", "title": "Dunham Massey", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/dunham-massey" }, "geometry": { "type": "Point", "coordinates": [ -2.4045, 53.3832 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Horse riding, Running, Walking", "cmsRegion": "RegionSouthWest", "description": "Wooded country around Cornwall's largest natural lake. Penrose features woodland tracks, stretches of coastline and open parkland, the perfect backdrop for a day out.", "id": "1130", "imageDescription": "Daffodils in bloom at Penrose", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431772840968-penrose-spring-astley-for-web.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431772840968-penrose-spring-astley-for-web.jpg", "openingTimeStatus": "Open today", "subTitle": "Helston, Cornwall", "title": "Penrose", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/penrose" }, "geometry": { "type": "Point", "coordinates": [ -5.301873, 50.086196 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "Massive ruined castle in an impressive coastal setting", "id": "114", "imageDescription": "Visitors heading for Dunstanburgh Castle", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1122706dunstanburghcastleghostwalk.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1122706dunstanburghcastleghostwalk.jpg", "subTitle": "Alnwick, Northumberland", "title": "Dunstanburgh Castle", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/dunstanburgh-castle" }, "geometry": { "type": "Point", "coordinates": [ -1.59632, 55.4911 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "An ancient castle and comfortable country home with dramatic vistas and subtropical gardens", "id": "115", "imageDescription": "Magnolia flowers in front of Dunster Castle", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431771384616-142.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431771384616-142.jpg", "openingTimeStatus": "Open today", "subTitle": "near Minehead, Somerset", "title": "Dunster Castle", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/dunster-castle" }, "geometry": { "type": "Point", "coordinates": [ -3.44279, 51.181099 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Fully restored 18th-century working watermill", "id": "116", "imageDescription": "The watermill", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431768592817-img4300.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431768592817-img4300.jpg", "openingTimeStatus": "Open today", "subTitle": "near Minehead, Somerset", "title": "Dunster Working Watermill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/dunster-working-watermill" }, "geometry": { "type": "Point", "coordinates": [ -3.446811, 51.180902 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Geocaching, Walking", "cmsRegion": "RegionEastofEngland", "description": "A precious landscape on the Suffolk coast", "id": "117", "imageDescription": "Dunwich Heath early morning landscape", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431802771715-justinminnsdh-13copywebresize.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431802771715-justinminnsdh-13copywebresize.jpg", "openingTimeStatus": "Open today", "subTitle": "Dunwich, Suffolk", "title": "Dunwich Heath and Beach", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/dunwich-heath-and-beach" }, "geometry": { "type": "Point", "coordinates": [ 1.626715, 52.25889 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionEastofEngland", "description": "Extensive chalk grassland in an Area of Outstanding Natural Beauty", "id": "118", "imageDescription": "Spring on Dunstable Downs Bedfordshire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431805969154-ddhot0418ccrpd.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431805969154-ddhot0418ccrpd.jpg", "openingTimeStatus": "Open today", "subTitle": "Dunstable, Bedfordshire", "title": "Dunstable Downs and the Whipsnade Estate", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/dunstable-downs-and-whipsnade-estate" }, "geometry": { "type": "Point", "coordinates": [ -0.537432, 51.865538 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "Ancient deer park, 17th-century house and garden", "id": "119", "imageDescription": "A view of Dyrham Park set in parkland", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431805818972-409002.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431805818972-409002.jpg", "openingTimeStatus": "Open today", "subTitle": "near Bath, Gloucestershire", "title": "Dyrham Park", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/dyrham-park" }, "geometry": { "type": "Point", "coordinates": [ -2.3629, 51.4805 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "Intriguing Regency house and impressive collection of horse-drawn vehicles, set in a picturesque garden", "id": "12", "imageDescription": "Arlington Court front lawn in spring", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431805239854-1238473resized1400788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431805239854-1238473resized1400788.jpg", "openingTimeStatus": "Open today", "subTitle": "near Barnstaple, Devon", "title": "Arlington Court and the National Trust Carriage Museum", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/arlington-court-and-the-national-trust-carriage-museum" }, "geometry": { "type": "Point", "coordinates": [ -3.98588, 51.145699 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "A little oasis in a busy urban area", "id": "120", "imageDescription": "Three children running and laughing on the lawn", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431800814376-1351756childreningardentrevorrayhart.jpg.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431800814376-1351756childreningardentrevorrayhart.jpg.jpg", "openingTimeStatus": "Open today", "subTitle": "Keighley, West Yorkshire", "title": "East Riddlesden Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/east-riddlesden-hall" }, "geometry": { "type": "Point", "coordinates": [ -1.87589, 53.873199 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Striking Elizabethan brick-built gentry house set in tranquil gardens", "id": "121", "imageDescription": "Eastbury Manor House, an Elizabethan gentry house. It is one of London’s hidden architectural gems.", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431734028806-eastbury-manor-house-front.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431734028806-eastbury-manor-house-front.jpg", "openingTimeStatus": "Closed today", "subTitle": "Barking, Essex", "title": "Eastbury Manor House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/eastbury-manor-house" }, "geometry": { "type": "Point", "coordinates": [ 0.10061, 51.534199 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionEastofEngland", "description": "Delightful treasury of 16th-century domestic history", "id": "122", "imageDescription": "Boy dressed in costume at Elizabethan House Museum", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431774076336-elizabethan-house-boy-in-costume-26.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431774076336-elizabethan-house-boy-in-costume-26.jpg", "openingTimeStatus": "Open today", "subTitle": "Great Yarmouth, Norfolk", "title": "Elizabethan House Museum", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/elizabethan-house-museum" }, "geometry": { "type": "Point", "coordinates": [ 1.72721, 52.605 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Geocaching, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Interesting hillside garden with year-round features", "id": "123", "imageDescription": "Bluebell banks at Emmetts Garden, a National Trust property in Kent", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431805891528-emmet-apr-2018p1050989websitesize.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431805891528-emmet-apr-2018p1050989websitesize.jpg", "openingTimeStatus": "Open today", "subTitle": "Sevenoaks, Kent", "title": "Emmetts Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/emmetts-garden" }, "geometry": { "type": "Point", "coordinates": [ 0.11573, 51.250599 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Horse riding, Running, Walking", "cmsRegion": "RegionWales", "description": "Explore a much-loved home, garden and estate filled with the stories of a family and their servants.", "id": "124", "imageDescription": "Elevated view from the east of Erddig house and garden", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431777974757-erddig-2-elevated-brighter-house-john-miller-national-trust-images.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431777974757-erddig-2-elevated-brighter-house-john-miller-national-trust-images.jpg", "openingTimeStatus": "Open today", "subTitle": "Wrexham", "title": "Erddig", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/erddig" }, "geometry": { "type": "Point", "coordinates": [ -3.00296, 53.027302 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionMidlands", "description": "Honey-coloured stone house with exquisite plasterwork and fine landscaped garden", "id": "125", "imageDescription": "View over parkland to serpentine lake", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431747247781-1147389serpentinecms.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431747247781-1147389serpentinecms.jpg", "openingTimeStatus": "Closed today", "subTitle": "near Banbury, Warwickshire", "title": "Farnborough Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/farnborough-hall" }, "geometry": { "type": "Point", "coordinates": [ -1.36541, 52.136902 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "Rocky islands, habitat for seals and many species of seabird", "id": "126", "imageDescription": "Puffins at the Farne Islands, Northumbria", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431734033275-puffin-71089-joe-cornish.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431734033275-puffin-71089-joe-cornish.jpg", "openingTimeStatus": "Open today", "subTitle": "Northumberland", "title": "Farne Islands", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/farne-islands" }, "geometry": { "type": "Point", "coordinates": [ -1.6538, 55.616001 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionEastofEngland", "description": "Truly a hidden gem", "id": "127", "imageDescription": "Felbrigg Hall in springtime", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431745027597-daffodilshall-crop.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431745027597-daffodilshall-crop.jpg", "openingTimeStatus": "Open today", "subTitle": "Norwich, Norfolk", "title": "Felbrigg Hall, Gardens and Estate", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/felbrigg-hall-gardens-and-estate" }, "geometry": { "type": "Point", "coordinates": [ 1.25942499, 52.907469 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Boating, Canoeing and kayaking, Running, Walking", "cmsRegion": "RegionNorthWest", "description": "Lakeshore park with stunning mountain views", "id": "128", "imageDescription": "Lakeshore by Fell Foot", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431763813097-fell-foot-lisa-hornby-view-4-web.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431763813097-fell-foot-lisa-hornby-view-4-web.jpg", "openingTimeStatus": "Open today", "subTitle": "Windermere, Cumbria", "title": "Fell Foot", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/fell-foot" }, "geometry": { "type": "Point", "coordinates": [ -2.952607, 54.27402 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Handsome 17th-century house with walled garden", "id": "129", "imageDescription": "The garden at Fenton House", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1083410fentonhouselawn.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1083410fentonhouselawn.jpg", "openingTimeStatus": "Closed today", "subTitle": "Hampstead, London", "title": "Fenton House and Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/fenton-house-and-garden" }, "geometry": { "type": "Point", "coordinates": [ -0.180926, 51.558773 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionNorthernIreland", "description": "Atmospheric Irish gentry house and wooded riverside estate", "id": "13", "imageDescription": "Admire the countless display of yellow daffodils at The Argory ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431802998580-daffodilsattheargory.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431802998580-daffodilsattheargory.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Dungannon, County Armagh", "title": "The Argory", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/the-argory" }, "geometry": { "type": "Point", "coordinates": [ -6.66035, 54.464401 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "The last working water-powered forge in England", "id": "130", "imageDescription": "Blacksmith at work, Finch Foundry, Devon", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431784156812-ntandchrislacey.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431784156812-ntandchrislacey.jpg", "openingTimeStatus": "Open today", "subTitle": "Okehampton, Devon", "title": "Finch Foundry", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/finch-foundry" }, "geometry": { "type": "Point", "coordinates": [ -3.92589, 50.730202 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Geocaching, Walking", "cmsRegion": "RegionEastofEngland", "description": "Explore Constable Country", "id": "131", "imageDescription": "Willy Lott's House as seen in the Hay Wain", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431734110013-flatford-web-50.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431734110013-flatford-web-50.jpg", "openingTimeStatus": "Open today", "subTitle": "East Bergholt, Suffolk", "title": "Flatford", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/flatford" }, "geometry": { "type": "Point", "coordinates": [ 1.0261, 51.957802 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "A traditional English pub", "id": "132", "imageDescription": "The Fleece Inn", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735326445-the-fleece-inn.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735326445-the-fleece-inn.jpg", "openingTimeStatus": "Open today", "subTitle": "near Evesham, Worcestershire", "title": "The Fleece Inn", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/the-fleece-inn" }, "geometry": { "type": "Point", "coordinates": [ -1.86567, 52.090099 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Walking", "cmsRegion": "RegionNorthernIreland", "description": "Beautiful 18th-century home set on a sustainable estate and gardens", "id": "133", "imageDescription": "A view of the front of Florence Court house", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431734179484-fc-summerish.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431734179484-fc-summerish.jpg", "openingTimeStatus": "Open today", "subTitle": "Enniskillen, County Fermanagh", "title": "Florence Court", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/florence-court" }, "geometry": { "type": "Point", "coordinates": [ -7.72989, 54.258301 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Running, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "Ancient abbey ruins and an awe-inspiring water garden at this World Heritage Site", "id": "134", "imageDescription": "Primroses blooming around Fountains Abbey", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806308457-primroses.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806308457-primroses.jpg", "openingTimeStatus": "Open today", "subTitle": "Ripon, North Yorkshire", "title": "Fountains Abbey and Studley Royal Water Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/fountains-abbey-and-studley-royal-water-garden" }, "geometry": { "type": "Point", "coordinates": [ -1.58033, 54.1096 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Geocaching, Orienteering, Walking", "cmsRegion": "RegionNorthWest", "description": "Glorious beach with dramatic sand dunes, surrounded by sweeping coastal pinewoods.", "id": "135", "imageDescription": "A view across the Marram and Sea-lyme sand dunes at Formby", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431729829402-formby84553ttsandddunesbeachsea.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431729829402-formby84553ttsandddunesbeachsea.jpg", "openingTimeStatus": "Open today", "subTitle": "near Formby, Liverpool", "title": "Formby", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/formby" }, "geometry": { "type": "Point", "coordinates": [ -3.09217, 53.563 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "Explore a wild garden", "id": "137", "imageDescription": "The courtyard at Fyne Court", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431784257248-fynecourtresizeddavidsellman.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431784257248-fynecourtresizeddavidsellman.jpg", "openingTimeStatus": "Open today", "subTitle": "Bridgwater, Somerset", "title": "Fyne Court", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/fyne-court" }, "geometry": { "type": "Point", "coordinates": [ -3.112139, 51.082907 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionNorthWest", "description": "An Elizabethan gem in the heart of industrial Lancashire ", "id": "138", "imageDescription": "A view of the south front of Gawthorpe Hall", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736849230-r80040.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736849230-r80040.jpg", "openingTimeStatus": "Partially open today", "subTitle": "near Burnley, Lancashire", "title": "Gawthorpe Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/gawthorpe-hall" }, "geometry": { "type": "Point", "coordinates": [ -2.29093, 53.803799 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Last remaining galleried inn in London", "id": "139", "imageDescription": "The exterior of The George Inn, Southwark, (built 1677), the only remaining galleried inn in London", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737421504-39951-cropped-george-inn.jpg.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737421504-39951-cropped-george-inn.jpg.jpg", "openingTimeStatus": "Open today", "subTitle": "Southwark, London", "title": "George Inn", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/george-inn" }, "geometry": { "type": "Point", "coordinates": [ -0.08904, 51.503799 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Half-timbered house originating from 1606, transformed by the Rothschilds in the late 19th century, containing superb collections.", "id": "14", "imageDescription": "A sundial of box hedge topiary in the gardens at Ascott", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736739738-82256-web-cropped.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736739738-82256-web-cropped.jpg", "openingTimeStatus": "Open today", "subTitle": "near Leighton Buzzard, Buckinghamshire", "title": "Ascott", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/ascott" }, "geometry": { "type": "Point", "coordinates": [ -0.70058, 51.895802 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Running, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "Birthplace of the world-famous railway engineer", "id": "140", "imageDescription": "The exterior of George Stephenson's birthplace", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431762303787-resized-gsb-exterior-national-trust-images-john-millar.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431762303787-resized-gsb-exterior-national-trust-images-john-millar.jpg", "subTitle": "near Wylam, Northumberland", "title": "George Stephenson's Birthplace", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/george-stephensons-birthplace" }, "geometry": { "type": "Point", "coordinates": [ -1.80473, 54.979287 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Surfing, Walking", "cmsRegion": "RegionNorthernIreland", "description": "In the footsteps of giants...", "id": "141", "imageDescription": "Picture shows the sun setting on the horizon at the Giant's Causeway", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735893652-causewaysunsethorizon.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735893652-causewaysunsethorizon.jpg", "openingTimeStatus": "Open today", "subTitle": "Bushmills, County Antrim", "title": "Giant's Causeway", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/giants-causeway" }, "geometry": { "type": "Point", "coordinates": [ -6.511572, 55.240807 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Running, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "Stunning 18th-century landscape garden and haven for nature", "id": "142", "imageDescription": "South East front of Gibside Hall, Newcastle upon Tyne", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737678417-116275-gibside-hall-1400.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737678417-116275-gibside-hall-1400.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Gateshead, Tyne & Wear", "title": "Gibside", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/gibside" }, "geometry": { "type": "Point", "coordinates": [ -1.73174, 54.920502 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Prominent hill overlooking the Isle of Avalon, Glastonbury and Somerset", "id": "143", "imageDescription": "Glastonbury Tor, Somerset", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/glastonburytor1050285history1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/glastonburytor1050285history1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "near Glastonbury, Somerset", "title": "Glastonbury Tor", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/glastonbury-tor" }, "geometry": { "type": "Point", "coordinates": [ -2.698991, 51.144572 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Boating, Walking", "cmsRegion": "RegionSouthWest", "description": "Stroll down through the peaceful, exotic and playful valley to a sheltered beach at the bottom.", "id": "144", "imageDescription": "a grass path leads through the garden at Glendurgan surrounded by bluebells and a flowering cherry tree in the foreground", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431748257648-glendurgan-bluebells-cherry-orchard.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431748257648-glendurgan-bluebells-cherry-orchard.jpg", "openingTimeStatus": "Open today", "subTitle": "near Falmouth, Cornwall", "title": "Glendurgan Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/glendurgan-garden" }, "geometry": { "type": "Point", "coordinates": [ -5.116531, 50.10914 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "An ancient and atmospheric estate with a medieval garden and historic house", "id": "145", "imageDescription": "Godolphin bluebells 1", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806933575-bluebellsatgodolphin.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806933575-bluebellsatgodolphin.jpg", "openingTimeStatus": "Open today", "subTitle": "Helston, Cornwall", "title": "Godolphin", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/godolphin" }, "geometry": { "type": "Point", "coordinates": [ -5.36116, 50.1367 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Boating, Walking", "cmsRegion": "RegionNorthWest", "description": "Rebuilt Victorian steam-powered yacht on Coniston Water", "id": "146", "imageDescription": "Steam Yacht Gondola with steam", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/gondola-steaming-off.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/gondola-steaming-off.jpg", "openingTimeStatus": "Open today", "subTitle": "Coniston, Cumbria", "title": "Steam Yacht Gondola", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/steam-yacht-gondola" }, "geometry": { "type": "Point", "coordinates": [ -3.06483, 54.363899 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "Handsome town house, with architectural features from various eras and riverside walled garden", "id": "147", "imageDescription": "Exterior of Grantham House in the gardens", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431742073583-gh001.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431742073583-gh001.jpg", "openingTimeStatus": "Closed today", "subTitle": "Grantham, Lincolnshire", "title": "Grantham House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/grantham-house" }, "geometry": { "type": "Point", "coordinates": [ -0.63818, 52.914799 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionNorthernIreland", "description": "18th-century printing press", "id": "149", "imageDescription": "Grays Printing Press", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/graysstrabane56001400x788.jpeg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/graysstrabane56001400x788.jpeg", "openingTimeStatus": "Closed today", "subTitle": "Strabane, County Tyrone", "title": "Gray's Printing Press", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/grays-printing-press" }, "geometry": { "type": "Point", "coordinates": [ -7.46152, 54.8246 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Unusual Dutch-style house on the Berkshire Downs", "id": "15", "imageDescription": "The view from Ashdown rooftop towards Weathercock Hill", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431801469429-ashdownhouse4resized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431801469429-ashdownhouse4resized.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Newbury, Oxfordshire", "title": "Ashdown House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/ashdown-house" }, "geometry": { "type": "Point", "coordinates": [ -1.59116, 51.535999 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Charming 15th-century manor house with Arts and Crafts garden", "id": "150", "imageDescription": "The North front across the moat and forecourt of Great Chalfield Manor, near Melksham, Wiltshire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735844018-147902resized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735844018-147902resized.jpg", "openingTimeStatus": "Open today", "subTitle": "near Melksham, Wiltshire", "title": "Great Chalfield Manor and Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/great-chalfield-manor-and-garden" }, "geometry": { "type": "Point", "coordinates": [ -2.19942, 51.368198 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionLondonSouthEast", "description": "13th-century stone barn", "id": "151", "imageDescription": "Great Coxwell Barn near Faringdon Oxfordshire ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431748601735-171482-nti-robert-morris-great-coxwell-barn-resized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431748601735-171482-nti-robert-morris-great-coxwell-barn-resized.jpg", "openingTimeStatus": "Open today", "subTitle": "Faringdon, Oxfordshire", "title": "Great Coxwell Barn", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/great-coxwell-barn" }, "geometry": { "type": "Point", "coordinates": [ -1.61404, 51.642799 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Horse riding, Walking", "cmsRegion": "RegionSouthWest", "description": "Greenway house and garden: 'the loveliest place in the world'", "id": "152", "imageDescription": "Greenway house on the banks of the River Dart", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431754424923-174937.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431754424923-174937.jpg", "openingTimeStatus": "Open today", "subTitle": "near Brixham, Devon", "title": "Greenway", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/greenway" }, "geometry": { "type": "Point", "coordinates": [ -3.5872, 50.382401 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "Late Medieval merchant's house, rescued from demolition, in Worcester city centre", "id": "153", "imageDescription": "The garden and rear of the house at Greyfriars", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431747193189-greyfriars-garden.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431747193189-greyfriars-garden.jpg", "openingTimeStatus": "Open today", "subTitle": "Worcester, Worcestershire", "title": "Greyfriars' House and Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/greyfriars-house-and-garden" }, "geometry": { "type": "Point", "coordinates": [ -2.21898, 52.190455 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionLondonSouthEast", "description": "A family home, delightful gardens and an idyllic setting", "id": "154", "imageDescription": "Greys Court mansion house in spring with daffodils", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431800774751-hughmothersoleedit.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431800774751-hughmothersoleedit.jpg", "openingTimeStatus": "Open today", "subTitle": "Henley-on-Thames, Oxfordshire", "title": "Greys Court", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/greys-court" }, "geometry": { "type": "Point", "coordinates": [ -0.95151, 51.5452 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionMidlands", "description": "A homely country house dated 1700 set in Victorian walled gardens at the foot of the Lincolnshire Wolds", "id": "155", "imageDescription": "Gunby Hall in Lincolnshire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431777552201-gunby-hall-fire-drill-david-dales-cropped.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431777552201-gunby-hall-fire-drill-david-dales-cropped.jpg", "openingTimeStatus": "Open today", "subTitle": "Spilsby, Lincolnshire", "title": "Gunby Estate, Hall and Gardens", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/gunby-estate-hall-and-gardens" }, "geometry": { "type": "Point", "coordinates": [ 0.19669, 53.178001 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "Roman wall running through an often wild landscape", "id": "157", "imageDescription": "A small group of people walk alongside Hadrian's Wall", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431798635175-771233rs.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431798635175-771233rs.jpg", "openingTimeStatus": "Open today", "subTitle": "Hexham, Northumberland", "title": "Hadrian's Wall and Housesteads Fort", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hadrians-wall-and-housesteads-fort" }, "geometry": { "type": "Point", "coordinates": [ -2.32881, 55.013199 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "13th-century Cistercian abbey", "id": "158", "imageDescription": "Explore the 13th century ruins of Hailes Abbey", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431781283939-hailes-abbey-----historic-engl.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431781283939-hailes-abbey-----historic-engl.jpg", "openingTimeStatus": "Open today", "subTitle": "Cheltenham, Gloucestershire", "title": "Hailes Abbey", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hailes-abbey" }, "geometry": { "type": "Point", "coordinates": [ -1.92724, 51.9702 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionLondonSouthEast", "description": "A unique 17th-century treasure trove ", "id": "159", "imageDescription": "View of Ham House from the North terrace", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735573530-ham-house-north-view.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735573530-ham-house-north-view.jpg", "openingTimeStatus": "Open today", "subTitle": "Richmond, Surrey", "title": "Ham House and Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/ham-house-and-garden" }, "geometry": { "type": "Point", "coordinates": [ -0.31505, 51.443199 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "15th-century tithe barn", "id": "16", "imageDescription": "Ashleworth Tithe Barn", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431734561168-20150923-ashleworth-tithe-barn.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431734561168-20150923-ashleworth-tithe-barn.jpg", "openingTimeStatus": "Open today", "subTitle": "Ashleworth, Gloucestershire", "title": "Ashleworth Tithe Barn", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/ashleworth-tithe-barn" }, "geometry": { "type": "Point", "coordinates": [ -2.26572, 51.924198 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Running, Walking", "cmsRegion": "RegionMidlands", "description": "William and Mary-style country house, garden and park", "id": "160", "imageDescription": "Spring flowers at Hanbury Hall", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431773872564-hanbury-parterre---april-032.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431773872564-hanbury-parterre---april-032.jpg", "openingTimeStatus": "Open today", "subTitle": "Droitwich Spa, Worcestershire", "title": "Hanbury Hall and Gardens", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hanbury-hall-and-gardens" }, "geometry": { "type": "Point", "coordinates": [ -2.08633, 52.275398 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Fishing, Orienteering, Walking", "cmsRegion": "RegionMidlands", "description": "An Elizabethan masterpiece", "id": "161", "imageDescription": "Hardwick Hall from the outside with spring blossom", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806772213-hardwickexteriorspringtime.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806772213-hardwickexteriorspringtime.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Chesterfield, Derbyshire", "title": "Hardwick", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hardwick-hall" }, "geometry": { "type": "Point", "coordinates": [ -1.30813, 53.167801 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Geocaching, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Stretches of sweeping parkland sheltering a classic country house", "id": "162", "imageDescription": "Bluebells at Hatchlands Park", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735090079-springbluebells2ga.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735090079-springbluebells2ga.jpg", "openingTimeStatus": "Open today", "subTitle": "Guildford, Surrey", "title": "Hatchlands Park", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hatchlands-park" }, "geometry": { "type": "Point", "coordinates": [ -0.47067, 51.256401 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Boating, Cycling, Dog walking, Fishing, Horse riding, Running, Walking", "cmsRegion": "RegionEastofEngland", "description": "Ancient royal hunting forest", "id": "163", "imageDescription": "blossom and bud burst in the forest", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431805957345-budburst2018p1060333acc.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431805957345-budburst2018p1060333acc.jpg", "openingTimeStatus": "Open today", "subTitle": "Bishop's Stortford, Essex", "title": "Hatfield Forest", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hatfield-forest" }, "geometry": { "type": "Point", "coordinates": [ 0.2363, 51.8592 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "16th-century half-timbered dovecote", "id": "164", "imageDescription": "The Hawford Dovecote in the Worcestershire countryside", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/hawford-dovecote.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/hawford-dovecote.jpg", "openingTimeStatus": "Open today", "subTitle": "Hawford, Worcestershire", "title": "Hawford Dovecote", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hawford-dovecote" }, "geometry": { "type": "Point", "coordinates": [ -2.22556, 52.242401 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Orienteering, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "Beautiful wooded valley with 19th-century Gibson Mill at its heart", "id": "165", "imageDescription": "Path through woodland, covered with Blubells", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431748397774-hccgrantlowebluebelltrail.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431748397774-hccgrantlowebluebelltrail.jpg", "openingTimeStatus": "Open today", "subTitle": "near Hebden Bridge, West Yorkshire", "title": "Hardcastle Crags", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hardcastle-crags" }, "geometry": { "type": "Point", "coordinates": [ -2.0196805, 53.758257 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionNorthWest", "description": "A tranquil woodland garden, surrounded by parkland, with a delightful walled garden at its heart.", "id": "166", "imageDescription": "Hare Hill Spring Pond", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431744458071-pistolpondspring.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431744458071-pistolpondspring.jpg", "openingTimeStatus": "Open today", "subTitle": "Macclesfield, Cheshire", "title": "Hare Hill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hare-hill" }, "geometry": { "type": "Point", "coordinates": [ -2.191945, 53.283518 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Monument to Vice-Admiral Hardy", "id": "167", "imageDescription": "Hardy Monument standing tall against a blue sky ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737638801-hardymonumentnt.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737638801-hardymonumentnt.jpg", "openingTimeStatus": "Closed today", "subTitle": "Portesham, Dorset", "title": "Hardy Monument", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hardy-monument" }, "geometry": { "type": "Point", "coordinates": [ -2.54871, 50.686199 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Evocative cob and thatch cottage - birthplace of Thomas Hardy", "id": "168", "imageDescription": "A view of the Cottage at Hardy's birthplace", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431804001591-1029853aviewtowardsthecottagefromthegardenathardysbirthplacentilchrislaceyweb.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431804001591-1029853aviewtowardsthecottagefromthegardenathardysbirthplacentilchrislaceyweb.jpg", "openingTimeStatus": "Open today", "subTitle": "near Dorchester, Dorset", "title": "Hardy's Cottage", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hardys-cottage" }, "geometry": { "type": "Point", "coordinates": [ -2.386136, 50.731308 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Running, Walking", "cmsRegion": "RegionNorthWest", "description": "Colourful Viewing Station with endless lake views and waterside paths", "id": "169", "imageDescription": "Couple with dog enjoy the autumnal view from the platform at Claife Viewing Station ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431788043471-claifeplatformautumnresziedforweb.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431788043471-claifeplatformautumnresziedforweb.jpg", "openingTimeStatus": "Open today", "subTitle": "Hawkshead, Cumbria", "title": "Claife Viewing Station and Windermere West Shore", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/claife-viewing-station-and-windermere-west-shore" }, "geometry": { "type": "Point", "coordinates": [ -2.942319, 54.351458 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Horse riding, Orienteering, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Ancient trees, rolling chalk downlands and lush meadows in an area of outstanding natural beauty", "id": "17", "imageDescription": "Lambs on the Ivinghoe Hills at Ashridge Estate Hertfordshire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431744640199-lambs-on-ivinghoe-hills.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431744640199-lambs-on-ivinghoe-hills.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Near Berkhamsted, Hertfordshire", "title": "Ashridge Estate", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/ashridge-estate" }, "geometry": { "type": "Point", "coordinates": [ -0.58542, 51.805599 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "Towering cliffs, coves and a wooded valley within Exmoor National Park", "id": "170", "imageDescription": "Heddon Valley National Trust ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431782075519-152553-heddon-valley-national-trust-images-david-noton.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431782075519-152553-heddon-valley-national-trust-images-david-noton.jpg", "openingTimeStatus": "Open today", "subTitle": "Barnstaple, Devon", "title": "Heddon Valley", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/heddon-valley" }, "geometry": { "type": "Point", "coordinates": [ -3.92621, 51.215599 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Experience one of the country's great gardens", "id": "172", "imageDescription": "The view to the Plant House in May ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431807114636-sarahdavisviewfromthecourtyardinmayhidcote.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431807114636-sarahdavisviewfromthecourtyardinmayhidcote.jpg", "openingTimeStatus": "Open today", "subTitle": "near Chipping Campden, Gloucestershire", "title": "Hidcote", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hidcote" }, "geometry": { "type": "Point", "coordinates": [ -1.74556, 52.083 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionNorthWest", "description": "Beatrix Potter's 17th-century farmhouse: a time-capsule of her life", "id": "174", "imageDescription": "View up the garden path at Hill Top in spring", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431744917877-hilltopspringgarden.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431744917877-hilltopspringgarden.jpg", "openingTimeStatus": "Open today", "subTitle": "Ambleside, Cumbria", "title": "Hill Top", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hill-top" }, "geometry": { "type": "Point", "coordinates": [ -2.97054, 54.351101 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Elegant country house with highly distinctive gardens", "id": "175", "imageDescription": "The Sunken Garden and view to the Downs in July at Hinton Ampner", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431799376404-778607x.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431799376404-778607x.jpg", "openingTimeStatus": "Partially open today", "subTitle": "near Alresford, Hampshire", "title": "Hinton Ampner", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hinton-ampner" }, "geometry": { "type": "Point", "coordinates": [ -1.151521, 51.044591 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Boating, Walking", "cmsRegion": "RegionEastofEngland", "description": "An iconic Norfolk Broads landmark", "id": "176", "imageDescription": "the red brick tower is lit up by flood lights in the dark, you can see the four new sails and the reflection in the water in front", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431800958099-horsey-18web.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431800958099-horsey-18web.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Great Yarmouth, Norfolk", "title": "Horsey Windpump", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/horsey-windpump" }, "geometry": { "type": "Point", "coordinates": [ 1.638635, 52.74247 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Canoeing and kayaking, Cycling, Dog walking, Walking", "cmsRegion": "RegionEastofEngland", "description": "Impressive working 18th-century watermill", "id": "177", "imageDescription": "Exterior view of Houghton Mill on the River Ouse", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/houghton---prod.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/houghton---prod.jpg", "openingTimeStatus": "Open today", "subTitle": "near Huntingdon, Cambridgeshire", "title": "Houghton Mill and Waterclose Meadows", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/houghton-mill-and-waterclose-meadows" }, "geometry": { "type": "Point", "coordinates": [ -0.1204, 52.3311 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Varied landscape of moorland, woods, farms and coast, rich in wildlife", "id": "178", "imageDescription": "View towards Selworthy in autumn colour on the Holnicote Estate, Exmoor National Park, Somerset.", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735396818-holnicote-autumn.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735396818-holnicote-autumn.jpg", "subTitle": "near Minehead, Somerset", "title": "Holnicote Estate", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/holnicote-estate" }, "geometry": { "type": "Point", "coordinates": [ -3.54753, 51.21106 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "One architect's vision of the future", "id": "179", "imageDescription": "View across the lake to The Homewood in Surrey", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736330035-homewoodexterior.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736330035-homewoodexterior.jpg", "openingTimeStatus": "Closed today", "subTitle": "Esher, Surrey", "title": "The Homewood", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/the-homewood" }, "geometry": { "type": "Point", "coordinates": [ -0.381423, 51.356013 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Orienteering, Running, Walking", "cmsRegion": "RegionMidlands", "description": "An 18th-century mansion and estate shaped by a story of love and neglect", "id": "18", "imageDescription": "College tutors in front of the Mansion at Attingham c.1950", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431799015924-staffbymansion.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431799015924-staffbymansion.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Shrewsbury, Shropshire", "title": "Attingham Park", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/attingham-park" }, "geometry": { "type": "Point", "coordinates": [ -2.66675, 52.684399 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "A manor house built from the remains of a Norman hall", "id": "180", "imageDescription": "Horton Court", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736530248-20151021-horton-court-march-2015.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736530248-20151021-horton-court-march-2015.jpg", "subTitle": "near Chipping Sodbury, South Gloucestershire", "title": "Horton Court", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/horton-court" }, "geometry": { "type": "Point", "coordinates": [ -2.33797, 51.562401 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Running, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Country home of the Victorian statesman Benjamin Disraeli", "id": "181", "imageDescription": "Hughenden Manor ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431795187094-hughendenmanorwebsite2.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431795187094-hughendenmanorwebsite2.jpg", "openingTimeStatus": "Open today", "subTitle": "High Wycombe, Buckinghamshire", "title": "Hughenden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hughenden" }, "geometry": { "type": "Point", "coordinates": [ -0.7565552, 51.650214 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Walking", "cmsRegion": "RegionEastofEngland", "description": "A Georgian Italianate palace in an idyllic English landscape", "id": "182", "imageDescription": "Daffodils in front of Ickworth Rotunda", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431772504011-ickworth-spring-web-91.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431772504011-ickworth-spring-web-91.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Bury St Edmunds, Suffolk", "title": "Ickworth", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/ickworth" }, "geometry": { "type": "Point", "coordinates": [ 0.6563212, 52.222136 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Outstanding 14th-century moated manor house", "id": "183", "imageDescription": "The house at Ightham Mote is reflected in the moat from the south west, showing the stone tower and mock Tudor facade on the south face.", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431745150650-c-andrew-butler---no-flag-version.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431745150650-c-andrew-butler---no-flag-version.jpg", "openingTimeStatus": "Open today", "subTitle": "Sevenoaks, Kent", "title": "Ightham Mote", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/ightham-mote" }, "geometry": { "type": "Point", "coordinates": [ 0.27088, 51.258598 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Geocaching, Orienteering, Walking", "cmsRegion": "RegionMidlands", "description": "Spectacular 18th-century mansion with Adam interiors and parkland", "id": "185", "imageDescription": "kedleston's bluebells", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431777412624-bluebells.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431777412624-bluebells.jpg", "openingTimeStatus": "Open today", "subTitle": "Derby, Derbyshire", "title": "Kedleston Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/kedleston-hall" }, "geometry": { "type": "Point", "coordinates": [ -1.53348, 52.9585 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Historic ancient coaching inn in the heart of Aylesbury", "id": "186", "imageDescription": "Close of the exterior of the King's Head, Aylesbury", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737578925-33166-cropped.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737578925-33166-cropped.jpg", "openingTimeStatus": "Open today", "subTitle": "Aylesbury, Buckinghamshire", "title": "King's Head", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/kings-head" }, "geometry": { "type": "Point", "coordinates": [ -0.8135919, 51.8164723 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionMidlands", "description": "High sandstone ridge and hill fort overlooking dramatic red sandstone rock houses", "id": "187", "imageDescription": "View of the rock houses in kinver", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431791411451-rockhouseresize.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431791411451-rockhouseresize.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Kinver, near Stourbridge, Staffordshire", "title": "Kinver Edge and the Rock Houses", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/kinver-edge-and-the-rock-houses" }, "geometry": { "type": "Point", "coordinates": [ -2.242739, 52.450109 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "Circular 14th-century dovecote", "id": "188", "imageDescription": "Kinwarton Dovecote with walkers and dog", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431733667080-kinwarton---prod.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431733667080-kinwarton---prod.jpg", "openingTimeStatus": "Open today", "subTitle": "near Alcester, Warwickshire", "title": "Kinwarton Dovecote", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/kinwarton-dovecote" }, "geometry": { "type": "Point", "coordinates": [ -1.8495, 52.2232 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Horse riding, Orienteering, Running, Walking", "cmsRegion": "RegionSouthWest", "description": "A family home and a great estate. Glorious landscape garden surrounded by parkland with fine 18th-century house ", "id": "189", "imageDescription": "Votes for Women?", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431800702876-entrancehall-7123web.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431800702876-entrancehall-7123web.jpg", "openingTimeStatus": "Open today", "subTitle": "Exeter, Devon", "title": "Killerton", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/killerton" }, "geometry": { "type": "Point", "coordinates": [ -3.4565, 50.792 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "Ancient stone circle, museum and manor house in the heart of the Avebury World Heritage Site", "id": "19", "imageDescription": "Stone circle and village", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431745940386-aveburywithvillagenationaltrustabbygeorge.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431745940386-aveburywithvillagenationaltrustabbygeorge.jpg", "openingTimeStatus": "Partially open today", "subTitle": "near Marlborough, Wiltshire", "title": "Avebury", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/avebury" }, "geometry": { "type": "Point", "coordinates": [ -1.85611, 51.427502 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Wool-merchant's house of circa 1500", "id": "190", "imageDescription": "A view of King John's Hunting Lodge", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736493644-20151021-kjhl-jim-elliott.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736493644-20151021-kjhl-jim-elliott.jpg", "openingTimeStatus": "Open today", "subTitle": "Axbridge, Somerset", "title": "King John's Hunting Lodge", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/king-johns-hunting-lodge" }, "geometry": { "type": "Point", "coordinates": [ -2.82384, 51.2864 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Running, Walking", "cmsRegion": "RegionSouthWest", "description": "A lavish family home built to resemble an Italian Palace in the rural Dorset countryside", "id": "191", "imageDescription": "Kingston Lacy in Dorset", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431748340807-kingston-lacy-spring-header-pic.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431748340807-kingston-lacy-spring-header-pic.jpg", "openingTimeStatus": "Open today", "subTitle": "Wimborne Minster, Dorset", "title": "Kingston Lacy", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/kingston-lacy" }, "geometry": { "type": "Point", "coordinates": [ -2.0306, 50.810398 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Orienteering, Walking", "cmsRegion": "RegionSouthWest", "description": "Discover Knightshayes, a country estate on a grand, gothic scale", "id": "192", "imageDescription": "View of south terrace lawn at Knightshayes", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431781507354-knightshayes-south-lawn-garden-v.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431781507354-knightshayes-south-lawn-garden-v.jpg", "openingTimeStatus": "Open today", "subTitle": "Tiverton, Devon", "title": "Knightshayes", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/knightshayes" }, "geometry": { "type": "Point", "coordinates": [ -3.47967, 50.9259 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Geocaching, Running, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Be part of a 400 year history of visiting Knole", "id": "193", "imageDescription": "The exterior of Knole", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431773870307-knole-exterior-web-picture.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431773870307-knole-exterior-web-picture.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Sevenoaks, Kent", "title": "Knole", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/knole" }, "geometry": { "type": "Point", "coordinates": [ 0.20122, 51.267601 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Georgian house with literary associations", "id": "195", "imageDescription": "The front door at Lamb House", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431744954892-front-of-house-for-web.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431744954892-front-of-house-for-web.jpg", "openingTimeStatus": "Closed today", "subTitle": "Rye, East Sussex", "title": "Lamb House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/lamb-house" }, "geometry": { "type": "Point", "coordinates": [ 0.73426, 50.949699 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Walking", "cmsRegion": "RegionEastofEngland", "description": "Intriguing stories", "id": "196", "imageDescription": "Lavenham Guildhall front in market square in the sunshine ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431742481665-garden-party-resized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431742481665-garden-party-resized.jpg", "openingTimeStatus": "Open today", "subTitle": "Sudbury, Suffolk", "title": "Lavenham Guildhall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/lavenham-guildhall" }, "geometry": { "type": "Point", "coordinates": [ 0.79662, 52.10876 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Country house with monastic roots, once home to William Henry Fox Talbot", "id": "197", "imageDescription": "Carpet of snowdrops in front of Lacock Abbey ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431734398384-snowdropslacock.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431734398384-snowdropslacock.jpg", "openingTimeStatus": "Open today", "subTitle": "near Chippenham, Wiltshire", "title": "Lacock Abbey, Fox Talbot Museum and Village", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/lacock-abbey-fox-talbot-museum-and-village" }, "geometry": { "type": "Point", "coordinates": [ -2.11941, 51.414799 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Running, Walking", "cmsRegion": "RegionSouthWest", "description": "Magnificent late Victorian country house with garden and wooded estate", "id": "198", "imageDescription": "Gatehouse, garden and house at Lanhydrock", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/lanhydrock768072house1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/lanhydrock768072house1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Bodmin, Cornwall", "title": "Lanhydrock", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/lanhydrock" }, "geometry": { "type": "Point", "coordinates": [ -4.69638, 50.4403 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Beautiful Georgian town house", "id": "199", "imageDescription": "Lawrence House drawing room in Launceston, North Cornwall", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431742189518-drawing-room-1400-x-788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431742189518-drawing-room-1400-x-788.jpg", "openingTimeStatus": "Open today", "subTitle": "Launceston, Cornwall", "title": "Lawrence House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/lawrence-house" }, "geometry": { "type": "Point", "coordinates": [ -4.36567, 50.638599 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionWales", "description": "14th-century merchant's house", "id": "2", "imageDescription": "Aberconwy House, Conwy", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737802588-aberc-ext-closeup-web.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737802588-aberc-ext-closeup-web.jpg", "openingTimeStatus": "Open today", "subTitle": "Conwy", "title": "Aberconwy House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/aberconwy-house" }, "geometry": { "type": "Point", "coordinates": [ -3.82732, 53.282101 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Running, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Come and explore the trails through woodland, heathland, and farmland before climbing to the top of the majestic Leith Hill Tower.", "id": "200", "imageDescription": "The sun rises over Leith Hill and Leith Hill Tower on a winters' morning", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431797183935-1137527sunriseoverleithhilltowercreditjohnmiller1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431797183935-1137527sunriseoverleithhilltowercreditjohnmiller1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Dorking, Surrey", "title": "Leith Hill Tower and Countryside", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/leith-hill-tower-and-countryside" }, "geometry": { "type": "Point", "coordinates": [ -0.37276, 51.176899 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Geocaching, Walking", "cmsRegion": "RegionSouthWest", "description": "High-up on the exposed cliffs of the 'Tin Coast' and part of the Cornish Mining World Heritage Site. At its heart, the restored 1840s beam engine running on steam.", "id": "201", "imageDescription": "Beam and pumping engine houses, Levant", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431760252448-levant-engine-pumping-houses-august-2016.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431760252448-levant-engine-pumping-houses-august-2016.jpg", "openingTimeStatus": "Open today", "subTitle": "near St Just, Cornwall", "title": "Levant Mine and Beam Engine", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/levant-mine-and-beam-engine" }, "geometry": { "type": "Point", "coordinates": [ -5.6827, 50.151001 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "An inspiring year of art and architecture within a unique 16th-century castle", "id": "202", "imageDescription": "Artist Anya Gallaccio inside one of the cubes at Lindisfarne Castle", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806764763-resizedforwebanyagallaccioatlindisfarnecastle17nationaltrustnorthnewspictures.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806764763-resizedforwebanyagallaccioatlindisfarnecastle17nationaltrustnorthnewspictures.jpg", "openingTimeStatus": "Open today", "subTitle": "Berwick-upon-Tweed, Northumberland", "title": "Lindisfarne Castle", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/lindisfarne-castle" }, "geometry": { "type": "Point", "coordinates": [ -1.78756, 55.6698 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Late 15th-century stone house", "id": "204", "imageDescription": "External photo of Little Clarendon", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431749963201-littleclarendenhousentabbygeorge.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431749963201-littleclarendenhousentabbygeorge.jpg", "openingTimeStatus": "Closed today", "subTitle": "Salisbury, Wiltshire", "title": "Little Clarendon", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/little-clarendon" }, "geometry": { "type": "Point", "coordinates": [ -1.97897, 51.0839 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionNorthWest", "description": "Iconic Tudor Manor House", "id": "206", "imageDescription": "The south front of Little Moreton Hall, Cheshire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431794262618-southrange.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431794262618-southrange.jpg", "openingTimeStatus": "Closed today", "subTitle": "Congleton, Cheshire", "title": "Little Moreton Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/little-moreton-hall" }, "geometry": { "type": "Point", "coordinates": [ -2.24874, 53.126499 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Coasteering, Cycling, Dog walking, Fishing, Geocaching, Running, Surfing, Swimming, Walking", "cmsRegion": "RegionSouthWest", "description": "Dramatic cliffs shaped by the Atlantic. The Lizard features white beaches, turquoise seas and unique nature. ", "id": "207", "imageDescription": "Download walks at and around Lizard Point", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431767923145-walkers-on-cliffs-3---steve-haywood-for-web.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431767923145-walkers-on-cliffs-3---steve-haywood-for-web.jpg", "subTitle": "near Helston, Cornwall", "title": "Lizard Point", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/lizard-point" }, "geometry": { "type": "Point", "coordinates": [ -5.2063796, 49.959434 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionWales", "description": "An elegant Georgian villa, set in the wooded Aeron valley. Remarkably unaltered for over 200 years, this self-sufficient estate includes a farm, walled gardens and lake", "id": "208", "imageDescription": "Spring daffodils at Llanerchaeron, Ceredigion", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431771617032-llanerchaeron---daffodils---michael-hall---1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431771617032-llanerchaeron---daffodils---michael-hall---1400x788.jpg", "openingTimeStatus": "Partially open today", "subTitle": "near Aberaeron, Ceredigion", "title": "Llanerchaeron", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/llanerchaeron" }, "geometry": { "type": "Point", "coordinates": [ -4.22546, 52.218201 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionMidlands", "description": "Discover a secluded, intimate estate set in the heart of the Forest of Arden with 500 years of fascinating and unexpected stories", "id": "21", "imageDescription": "A lovely time to visit", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806162356-img2374edit.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806162356-img2374edit.jpg", "openingTimeStatus": "Open today", "subTitle": "Baddesley Clinton, Warwickshire", "title": "Baddesley Clinton", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/baddesley-clinton" }, "geometry": { "type": "Point", "coordinates": [ -1.7084634, 52.343832 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Medieval courthouse", "id": "210", "imageDescription": "Exterior of Long Crendon Courthouse, Buckinghamshire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/long-crendon-courthouse-exterior.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/long-crendon-courthouse-exterior.jpg", "openingTimeStatus": "Closed today", "subTitle": "Aylesbury, Buckinghamshire", "title": "Long Crendon Courthouse", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/long-crendon-courthouse" }, "geometry": { "type": "Point", "coordinates": [ -0.98567, 51.775002 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Atmospheric 17th-century thatched Baptist meeting house", "id": "211", "imageDescription": "A view from the graveyard at Loughwood Meeting House", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431748105113-loughwood-meeting-housegraves-and-back-of-house-mike-townsend.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431748105113-loughwood-meeting-housegraves-and-back-of-house-mike-townsend.jpg", "openingTimeStatus": "Open today", "subTitle": "Axminster, Devon", "title": "Loughwood Meeting House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/loughwood-meeting-house" }, "geometry": { "type": "Point", "coordinates": [ -3.061108, 50.788428 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "A tranquil Cotswold estate full of diverse wildlife and England's only surviving 17th century grandstand", "id": "212", "imageDescription": "Lodge Park in spring", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/lodge2april2015.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/lodge2april2015.jpg", "openingTimeStatus": "Partially open today", "subTitle": "near Cheltenham, Gloucestershire", "title": "Lodge Park and Sherborne Estate", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/lodge-park-and-sherborne-estate" }, "geometry": { "type": "Point", "coordinates": [ -1.79225, 51.8069 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Climbing, Cycling, Dog walking, Orienteering, Running, Walking", "cmsRegion": "RegionMidlands", "description": "Excellent walking country with ancient woods and tumbling streams", "id": "213", "imageDescription": "Family by the pond", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431755247920-160618-family-by-pond-tim-riley-jv.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431755247920-160618-family-by-pond-tim-riley-jv.jpg", "openingTimeStatus": "Open today", "subTitle": "near Sheffield, Derbyshire", "title": "Longshaw, Burbage and the Eastern Moors", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/longshaw-burbage-and-the-eastern-moors" }, "geometry": { "type": "Point", "coordinates": [ -1.600686, 53.316263 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Unspoilt island, home to a fascinating array of wildlife amidst dramatic scenery", "id": "214", "imageDescription": "Archaeological Survey on Lundy Island in the Bristol Channel Devon", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/archaeological-survey-on-lundy-island-in-the-bristol-channel-devon54053restrictionsnational-trust-i.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/archaeological-survey-on-lundy-island-in-the-bristol-channel-devon54053restrictionsnational-trust-i.jpg", "openingTimeStatus": "Open today", "subTitle": "Devon", "title": "Lundy", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/lundy" }, "geometry": { "type": "Point", "coordinates": [ -4.67047, 51.1735 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Orienteering, Running, Walking", "cmsRegion": "RegionNorthWest", "description": "Glorious house, surrounded by gardens, moorland and deer park", "id": "215", "imageDescription": "The house at Lyme on a beautiful spring day", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431747576148-lyme-1-4-gl.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431747576148-lyme-1-4-gl.jpg", "openingTimeStatus": "Open today", "subTitle": "Stockport, Cheshire", "title": "Lyme", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/lyme" }, "geometry": { "type": "Point", "coordinates": [ -2.05322, 53.337002 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionMidlands", "description": "Intriguing Elizabethan lodge and moated garden", "id": "216", "imageDescription": "The garden lodge surrounded by a sea of cowslips", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806543548-201804sjohnstoncowslips.jpeg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806543548-201804sjohnstoncowslips.jpeg", "openingTimeStatus": "Open today", "subTitle": "near Oundle, Northamptonshire", "title": "Lyveden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/lyveden" }, "geometry": { "type": "Point", "coordinates": [ -0.5502, 52.458401 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "The deepest river gorge in the South West, with spectacular 30m waterfall", "id": "217", "imageDescription": "Walking along the river path through Lydford Gorge", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431747982119-ntpl-497565-family-river-path-john-millar.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431747982119-ntpl-497565-family-river-path-john-millar.jpg", "openingTimeStatus": "Open today", "subTitle": "near Tavistock, Devon", "title": "Lydford Gorge", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/lydford-gorge" }, "geometry": { "type": "Point", "coordinates": [ -4.11058, 50.639999 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Intimate manor house with Arts and Crafts-style garden", "id": "218", "imageDescription": "View of the house from the Apostle Garden", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806766440-779891viewofthehousenationaltrustimagesjohnmillarweb.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806766440-779891viewofthehousenationaltrustimagesjohnmillarweb.jpg", "openingTimeStatus": "Open today", "subTitle": "near Somerton, Somerset", "title": "Lytes Cary Manor", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/lytes-cary-manor" }, "geometry": { "type": "Point", "coordinates": [ -2.67134, 51.036701 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionYorkshireNorthEast", "description": "18th-century merchant's house", "id": "219", "imageDescription": "The ornate iron staircase in Maister House, Hull", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735782216-maisterhousestaircasefrombelowbangphoto.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735782216-maisterhousestaircasefrombelowbangphoto.jpg", "openingTimeStatus": "Closed today", "subTitle": "Hull, East Yorkshire", "title": "Maister House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/maister-house" }, "geometry": { "type": "Point", "coordinates": [ -0.32944, 53.743301 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "An atmospheric fragment of old Somerset: an empty Tudor manor house, beautifully restored in the 1920s, with farm buildings, abundant flowers and orchards.", "id": "22", "imageDescription": "Barrington Court summer", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431781911360-summer-court-house-rs.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431781911360-summer-court-house-rs.jpg", "openingTimeStatus": "Open today", "subTitle": "near Ilminster, Somerset", "title": "Barrington Court", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/barrington-court" }, "geometry": { "type": "Point", "coordinates": [ -2.85778, 50.960499 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Atmospheric Victorian home designed by Thomas Hardy", "id": "221", "imageDescription": "The front of Max Gate with a conservatory on the right side and trees to the left", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431755451566-maxgatefrontviewwithconservatoryntichrislacey.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431755451566-maxgatefrontviewwithconservatoryntichrislacey.jpg", "openingTimeStatus": "Open today", "subTitle": "Dorchester, Dorset", "title": "Max Gate", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/max-gate" }, "geometry": { "type": "Point", "coordinates": [ -2.419803, 50.707901 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Fishing, Geocaching, Running, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "A popular Dales beauty spot set amid rolling hills and rugged moorland", "id": "222", "imageDescription": "Walker enjoying a spring dawn on the Malham Tarn Estate", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431747371461-malhamtarnyorkshiredales849131springview3.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431747371461-malhamtarnyorkshiredales849131springview3.jpg", "openingTimeStatus": "Open today", "subTitle": "Settle, North Yorkshire", "title": "Malham Tarn Estate", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/malham-tarn-estate" }, "geometry": { "type": "Point", "coordinates": [ -2.169663, 54.089787 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Geocaching, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "Take a walk on the wild side and explore the rugged moorland", "id": "223", "imageDescription": "A group of walkers crossing the moors", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431792050829-walkersacrossmarsdenmoor.jpg.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431792050829-walkersacrossmarsdenmoor.jpg.jpg", "openingTimeStatus": "Open today", "subTitle": "Marsden, West Yorkshire", "title": "Marsden Moor Estate", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/marsden-moor-estate" }, "geometry": { "type": "Point", "coordinates": [ -1.93045, 53.601845 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionEastofEngland", "description": "Discover the stories behind this eclectic home.", "id": "224", "imageDescription": "East Front of Melford Hall", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431784556143-p11702170862cln.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431784556143-p11702170862cln.jpg", "openingTimeStatus": "Closed today", "subTitle": "Sudbury, Suffolk", "title": "Melford Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/melford-hall" }, "geometry": { "type": "Point", "coordinates": [ 0.7281, 52.0844 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionMidlands", "description": "13th-century tithe barn, one of the largest and finest in the country", "id": "225", "imageDescription": "Front elevation of Middle Littleton Tithe Barn", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/frontsummermiddlelittletontithebarn992660.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/frontsummermiddlelittletontithebarn992660.jpg", "openingTimeStatus": "Open today", "subTitle": "Evesham, Worcestershire", "title": "Middle Littleton Tithe Barn", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/middle-littleton-tithe-barn" }, "geometry": { "type": "Point", "coordinates": [ -1.88429, 52.1213 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Homely and welcoming 18th-century townhouse in the heart of Salisbury's Cathedral Close ", "id": "226", "imageDescription": "The front facade of Mompesson House, Salisbury", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431754702669-560721-high-res-facade-website-2.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431754702669-560721-high-res-facade-website-2.jpg", "openingTimeStatus": "Open today", "subTitle": "Salisbury, Wiltshire", "title": "Mompesson House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/mompesson-house" }, "geometry": { "type": "Point", "coordinates": [ -1.79679, 51.0662 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Leonard and Virginia Woolf's 17th-century country retreat", "id": "227", "imageDescription": "The house seen from the garden in the summer at Monk's House, East Sussex.", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431745491618-1049779-cropped.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431745491618-1049779-cropped.jpg", "openingTimeStatus": "Closed today", "subTitle": "Lewes, East Sussex", "title": "Monk's House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/monks-house" }, "geometry": { "type": "Point", "coordinates": [ 0.01917, 50.8396 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "A masterpiece of Elizabethan Renaissance architecture and design. With its towering walls of glass, glow of ham stone and surrounding garden, it is a place of beauty and wonder.", "id": "228", "imageDescription": "Grazing sheep outside of the east front ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806168315-1335356sheepgrazingoutsidetheeastfrontntiljohnmillerweb.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806168315-1335356sheepgrazingoutsidetheeastfrontntiljohnmillerweb.jpg", "openingTimeStatus": "Open today", "subTitle": "Somerset", "title": "Montacute House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/montacute-house" }, "geometry": { "type": "Point", "coordinates": [ -2.71065, 50.952499 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "A park at the heart of the community", "id": "229", "imageDescription": "Morden Hall Park's wetland boardwalk in spring", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431800783957-wetlands.jpg.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431800783957-wetlands.jpg.jpg", "openingTimeStatus": "Open today", "subTitle": "Morden, London", "title": "Morden Hall Park", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/morden-hall-park" }, "geometry": { "type": "Point", "coordinates": [ -0.18404, 51.401901 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionLondonSouthEast", "description": "An estate saved from almost certain demolition and lovingly revived ", "id": "23", "imageDescription": "View of Basildon Park from the parkland", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431799441545-oskarproctor.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431799441545-oskarproctor.jpg", "openingTimeStatus": "Open today", "subTitle": "Reading, Berkshire", "title": "Basildon Park", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/basildon-park" }, "geometry": { "type": "Point", "coordinates": [ -1.11858, 51.4995 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "Stone-built house of Elizabethan origin", "id": "230", "imageDescription": "Morville Hall in early summer", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431783444883-morville-june2-2017.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431783444883-morville-june2-2017.jpg", "openingTimeStatus": "Closed today", "subTitle": "near Bridgnorth, Shropshire", "title": "Morville Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/morville-hall" }, "geometry": { "type": "Point", "coordinates": [ -2.49188, 52.544399 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionMidlands", "description": "An atmospheric Elizabethan farmhouse that saved a King", "id": "231", "imageDescription": "Moseley in Spring", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806363907-p4260198webcrop.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806363907-p4260198webcrop.jpg", "openingTimeStatus": "Open today", "subTitle": "Wolverhampton, Staffordshire", "title": "Moseley Old Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/moseley-old-hall" }, "geometry": { "type": "Point", "coordinates": [ -2.10463, 52.635101 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "A romantic house and gallery set in beautiful riverside gardens", "id": "232", "imageDescription": "The south-facing front of the house at Mottisfont, Hampshire, bathed in summer sun", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431755930615-mottisfonthousesummer.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431755930615-mottisfonthousesummer.jpg", "openingTimeStatus": "Open today", "subTitle": "near Romsey, Hampshire", "title": "Mottisfont", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/mottisfont" }, "geometry": { "type": "Point", "coordinates": [ -1.53573, 51.040901 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Horse riding, Orienteering, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Enchanting garden set in a sheltered valley", "id": "233", "imageDescription": "A path below trees that are starting to blossom in the gardens at Mottistone", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431798055087-mottistone1321462springblossom.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431798055087-mottistone1321462springblossom.jpg", "openingTimeStatus": "Partially open today", "subTitle": "near Brighstone, Isle of Wight", "title": "Mottistone Gardens and Estate", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/mottistone-gardens-and-estate" }, "geometry": { "type": "Point", "coordinates": [ -1.427048, 50.65246 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "17th-century manor house", "id": "234", "imageDescription": "Moulton Hall in the Yorkshire Dales", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736682689-moultonhallyorkshiredales1364externalhouseview.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736682689-moultonhallyorkshiredales1364externalhouseview.jpg", "subTitle": "Richmond, North Yorkshire", "title": "Moulton Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/moulton-hall" }, "geometry": { "type": "Point", "coordinates": [ -1.639, 54.4258 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "Ruin of a 14th-century Carthusian priory", "id": "235", "imageDescription": "Visitors enjoying Mount Grace Priory house and garden on a sunny summer's day", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431782915331-mount-grace-priory-house-summer-english-heritage-web-resized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431782915331-mount-grace-priory-house-summer-english-heritage-web-resized.jpg", "openingTimeStatus": "Open today", "subTitle": "Northallerton, North Yorkshire", "title": "Mount Grace Priory", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/mount-grace-priory" }, "geometry": { "type": "Point", "coordinates": [ -1.30984, 54.380402 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Geocaching, Running, Walking", "cmsRegion": "RegionNorthernIreland", "description": "Neo-classical house and celebrated gardens", "id": "236", "imageDescription": "A view across the Spanish garden towards the nineteenth century house at Mount Stewart", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/169098.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/169098.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Newtownards, County Down", "title": "Mount Stewart", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/mount-stewart" }, "geometry": { "type": "Point", "coordinates": [ -5.60127, 54.551498 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "An intimate Arts and Crafts style family home and complementary gardens", "id": "2361", "imageDescription": "Adults sat on the grass in a garden with a house in the background", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431730428334-1083190.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431730428334-1083190.jpg", "openingTimeStatus": "Closed today", "subTitle": "York, North Yorkshire", "title": "Goddards House and Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/goddards-house-and-garden" }, "geometry": { "type": "Point", "coordinates": [ -1.10261, 53.940102 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Running, Walking", "cmsRegion": "RegionSouthWest", "description": "Spectacular Victorian Gothic Revival house with gardens and parkland", "id": "2362", "imageDescription": "Tyntesfield roof tops", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736838428-roofscape-c-national-trust-imagesandrew-butler.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736838428-roofscape-c-national-trust-imagesandrew-butler.jpg", "openingTimeStatus": "Open today", "subTitle": "Bristol, North Somerset", "title": "Tyntesfield", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/tyntesfield" }, "geometry": { "type": "Point", "coordinates": [ -2.71199, 51.439899 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Geocaching, Surfing, Swimming, Walking", "cmsRegion": "RegionSouthWest", "description": "A vast sandy beach, high cliffs and dramatic coves", "id": "2364", "imageDescription": "The beach at Godrevy with the lighthouse in the distance", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431769124870-godrevy--beach-to-lightouse-g-taylor-1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431769124870-godrevy--beach-to-lightouse-g-taylor-1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "near Hayle, Cornwall", "title": "Godrevy", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/godrevy" }, "geometry": { "type": "Point", "coordinates": [ -5.393736, 50.238321 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "A natural pier with dramatic cliffs and Victorian fort", "id": "2365", "imageDescription": "Walkers on Brean Down", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431746446419-brean-down-walkers.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431746446419-brean-down-walkers.jpg", "openingTimeStatus": "Open today", "subTitle": "Brean, North Somerset", "title": "Brean Down", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/brean-down" }, "geometry": { "type": "Point", "coordinates": [ -3.01443, 51.324402 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "Superb early 17th-century 'black and white' farmhouse with stone-tiled roof and vernacular buildings", "id": "2367", "imageDescription": "The interior of Cwmmau Farmhouse", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737099241-interiorcwmmaufarm139831.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737099241-interiorcwmmaufarm139831.jpg", "openingTimeStatus": "Closed today", "subTitle": "Whitney-on-Wye, Herefordshire", "title": "Cwmmau Farmhouse", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/cwmmau-farmhouse" }, "geometry": { "type": "Point", "coordinates": [ -3.05911, 52.153999 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Victorian coastal defence and secret rocket testing site perched high above the Needles Rocks", "id": "237", "imageDescription": "Looking down on the walls of the Needles Old Battery", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431787511368-needlesbattery191251aerialview.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431787511368-needlesbattery191251aerialview.jpg", "openingTimeStatus": "Open today", "subTitle": "Alum Bay, Isle of Wight", "title": "The Needles Old Battery and New Battery", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/the-needles-old-battery-and-new-battery" }, "geometry": { "type": "Point", "coordinates": [ -1.576905, 50.66209 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionNorthWest", "description": "Concealed under the long sloping roof of this medieval building is a fully restored, working corn mill.", "id": "238", "imageDescription": "The exterior of Nether Alderely Mill", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/netheralderleymillinsunshine.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/netheralderleymillinsunshine.jpg", "openingTimeStatus": "Closed today", "subTitle": "Macclesfield, Cheshire", "title": "Nether Alderley Mill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/nether-alderley-mill" }, "geometry": { "type": "Point", "coordinates": [ -2.23655, 53.281101 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Geocaching, Walking", "cmsRegion": "RegionSouthWest", "description": "Tudor hunting lodge to intriguing historic home, set in a spectacular estate", "id": "239", "imageDescription": "Newark Park, Gloucestershire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431738227936-estate-view-of-house-with-deer.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431738227936-estate-view-of-house-with-deer.jpg", "openingTimeStatus": "Closed today", "subTitle": "Wotton-under-Edge, Gloucestershire", "title": "Newark Park", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/newark-park" }, "geometry": { "type": "Point", "coordinates": [ -2.31369, 51.638802 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Jacobean house, home of Rudyard Kipling", "id": "24", "imageDescription": "Batemans House Spring", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431748271672-house-spring.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431748271672-house-spring.jpg", "openingTimeStatus": "Open today", "subTitle": "Burwash, East Sussex", "title": "Bateman's", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/batemans" }, "geometry": { "type": "Point", "coordinates": [ 0.37695, 50.987701 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Geocaching, Running, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "18th-century architectural masterpiece with landscape park and gardens", "id": "241", "imageDescription": "Visitors walking in the parkland at Nostell, West Yorkshire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431807085306-nostellhouse13307281400x788chrislacey.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431807085306-nostellhouse13307281400x788chrislacey.jpg", "openingTimeStatus": "Partially open today", "subTitle": "near Wakefield, West Yorkshire", "title": "Nostell", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/nostell" }, "geometry": { "type": "Point", "coordinates": [ -1.38881, 53.652599 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "Picturesque Yorkshire manor house with organic garden and exciting exhibitions", "id": "242", "imageDescription": "Spring in the Nunnington garden ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431802508786-nunningtonhall1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431802508786-nunningtonhall1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "near York, North Yorkshire", "title": "Nunnington Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/nunnington-hall" }, "geometry": { "type": "Point", "coordinates": [ -0.97233, 54.204601 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Geocaching, Walking", "cmsRegion": "RegionLondonSouthEast", "description": " A garden lovers' home for all seasons, with an extensive yet intimate garden set around a romantic house and ruins. ", "id": "243", "imageDescription": "Nymans wall garden in spring", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431745135809-picture-012.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431745135809-picture-012.jpg", "openingTimeStatus": "Open today", "subTitle": "near Haywards Heath, West Sussex", "title": "Nymans", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/nymans" }, "geometry": { "type": "Point", "coordinates": [ -0.18995, 51.0485 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "A glimpse into England's rural past", "id": "244", "imageDescription": "The 16th century cottage in Hambledon, Surrey", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736328236-oakhurstcottageblueskies.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736328236-oakhurstcottageblueskies.jpg", "openingTimeStatus": "Closed today", "subTitle": "near Godalming, Surrey", "title": "Oakhurst Cottage", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/oakhurst-cottage" }, "geometry": { "type": "Point", "coordinates": [ -0.62291, 51.132801 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "A Low, stone-built medieval hall, set in the picturesque countryside of Derbyshire. ", "id": "245", "imageDescription": "The Old Manor's garden", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431795962619-852289johnmillerresize.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431795962619-852289johnmillerresize.jpg", "openingTimeStatus": "Closed today", "subTitle": "Ashbourne, Derbyshire", "title": "The Old Manor", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/the-old-manor" }, "geometry": { "type": "Point", "coordinates": [ -1.81594, 52.978401 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Canoeing and kayaking, Dog walking, Fishing, Sailing, Surfing, Swimming, Walking", "cmsRegion": "RegionSouthWest", "description": "A spectacular stretch of coastline boasting dramatic cliffs, diverse wildlife and a beach renowned for rockpooling", "id": "246", "imageDescription": "The Mewstone at Wembury", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431734192123-south-devon-wembury-summer-june-2014-john-parker.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431734192123-south-devon-wembury-summer-june-2014-john-parker.jpg", "openingTimeStatus": "Open today", "subTitle": "Wembury, Devon", "title": "Wembury", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/wembury" }, "geometry": { "type": "Point", "coordinates": [ -4.084386, 50.316836 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Remains of a late 13th-century knight's dwelling", "id": "247", "imageDescription": "The exterior of the remaining 13th century home", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431733746792-old-soar-manor.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431733746792-old-soar-manor.jpg", "openingTimeStatus": "Open today", "subTitle": "Borough Green, Kent", "title": "Old Soar Manor", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/old-soar-manor" }, "geometry": { "type": "Point", "coordinates": [ 0.319018, 51.263059 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionEastofEngland", "description": "Internationally important coastal nature reserve, with a fascinating 20th-century military history", "id": "249", "imageDescription": "Orford Ness hares playing on the shingle", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431730064248-haresonshingleorfordness51.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431730064248-haresonshingleorfordness51.jpg", "openingTimeStatus": "Closed today", "subTitle": "Woodbridge, Suffolk", "title": "Orford Ness National Nature Reserve", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/orford-ness-national-nature-reserve" }, "geometry": { "type": "Point", "coordinates": [ 1.54772, 52.087399 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Elegant public rooms at the heart of fashionable 18th-century Bath life", "id": "25", "imageDescription": "The ballroom at The Bath Assembly Rooms ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/30372.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/30372.jpg", "openingTimeStatus": "Open today", "subTitle": "Bath, Somerset", "title": "Bath Assembly Rooms", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/bath-assembly-rooms" }, "geometry": { "type": "Point", "coordinates": [ -2.36123, 51.385799 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "Family home with beautiful formal gardens, surrounded by sprawling parkland", "id": "250", "imageDescription": "Underneath blue skies with the house basking in the sunshins.", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806197684-3070880515066328427980683385229506867363840o.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806197684-3070880515066328427980683385229506867363840o.jpg", "openingTimeStatus": "Open today", "subTitle": "near Middlesbrough, Redcar & Cleveland", "title": "Ormesby Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/ormesby-hall" }, "geometry": { "type": "Point", "coordinates": [ -1.18021, 54.5438 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Iconic Arts and Crafts home of William and Janey Morris and the centre of the Pre-Raphaelite circle.", "id": "2503", "imageDescription": "Red House- A poem of a house", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431759502445-a-poem-of-a-house-3---cropped.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431759502445-a-poem-of-a-house-3---cropped.jpg", "openingTimeStatus": "Closed today", "subTitle": "Bexleyheath, London", "title": "Red House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/red-house" }, "geometry": { "type": "Point", "coordinates": [ 0.13025478, 51.455623 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionNorthWest", "description": "A combined tour of 'Mendips' and 20 Forthlin Road, Liverpool", "id": "2504", "imageDescription": "Visitors outside 20 Forthlin Road", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431771399657-beatles-20-forthlin-road.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431771399657-beatles-20-forthlin-road.jpg", "openingTimeStatus": "Closed today", "subTitle": "Woolton and Allerton, Liverpool", "title": "The Beatles' Childhood Homes", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/beatles-childhood-homes" }, "geometry": { "type": "Point", "coordinates": [ -2.880458, 53.376751 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionNorthWest", "description": "Step back in time to the 1950s in this fascinating home and photographic studio", "id": "2505", "imageDescription": "The front door at 59 Rodney Street showing the flanking columns with the names of Burrell & Hardman", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431738478979-134845-resize.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431738478979-134845-resize.jpg", "openingTimeStatus": "Closed today", "subTitle": "Liverpool, Merseyside", "title": "The Hardmans' House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hardmans-house" }, "geometry": { "type": "Point", "coordinates": [ -2.9737277, 53.399843 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "Carefully restored, atmospheric 19th-century courtyard of working people's houses", "id": "2506", "imageDescription": "The Courtard by Candlelight", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431791601358-candlelitcourtyard.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431791601358-candlelitcourtyard.jpg", "openingTimeStatus": "Closed today", "subTitle": "Birmingham, West Midlands", "title": "Birmingham Back to Backs", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/birmingham-back-to-backs" }, "geometry": { "type": "Point", "coordinates": [ -1.8963, 52.473999 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "One of the first and finest examples of John Nash's Italianate villa designs", "id": "2507", "imageDescription": "Cronkhill the Italianate villa on the Attingham Estate, Shropshire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431774374846-cronkhill-main-photo-c-nt-phillip-abram.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431774374846-cronkhill-main-photo-c-nt-phillip-abram.jpg", "openingTimeStatus": "Closed today", "subTitle": "Shrewsbury, Shropshire", "title": "Attingham Park Estate: Cronkhill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/attingham-park-estate-cronkhill" }, "geometry": { "type": "Point", "coordinates": [ -2.68733, 52.669399 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Canoeing and kayaking, Cycling, Running, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "A Georgian country estate in west London", "id": "251", "imageDescription": "The West view of Osterley House ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431746013848-1033897-national-trust-imagesjames-dobson-high-res-resized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431746013848-1033897-national-trust-imagesjames-dobson-high-res-resized.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Isleworth, Middlesex", "title": "Osterley Park and House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/osterley-park-and-house" }, "geometry": { "type": "Point", "coordinates": [ -0.35289, 51.489498 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "A hidden paradise of subtropical gardens and quirky collections", "id": "252", "imageDescription": "Overbecks cliff top gardening", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431805861989-web25a7691.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431805861989-web25a7691.jpg", "openingTimeStatus": "Open today", "subTitle": "Salcombe, Devon", "title": "Overbeck's", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/overbecks" }, "geometry": { "type": "Point", "coordinates": [ -3.78489, 50.2202 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Archery", "cmsRegion": "RegionLondonSouthEast", "description": "Family home of the renowned architect Sir Herbert Baker", "id": "253", "imageDescription": "The front of the red brick house at Owletts", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/owlettsfronthouse.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/owlettsfronthouse.jpg", "openingTimeStatus": "Closed today", "subTitle": "Gravesend, Kent", "title": "Owletts", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/owletts" }, "geometry": { "type": "Point", "coordinates": [ 0.391894, 51.39313 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionEastofEngland", "description": "15th-century moated manor house", "id": "254", "imageDescription": "Daffodils at Oxburgh Hall under the Coronation Tree", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431802171295-daffodilsfromcopperbeech.bmp", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431802171295-daffodilsfromcopperbeech.bmp", "openingTimeStatus": "Open today", "subTitle": "near Swaffham, Norfolk", "title": "Oxburgh Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/oxburgh-hall" }, "geometry": { "type": "Point", "coordinates": [ 0.5702691, 52.581215 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionNorthernIreland", "description": "Divis and the Black Mountain offer spectacular views across Northern Ireland", "id": "2546", "imageDescription": "Walkers on Black Mountain", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736607856-divisandblackmountain9h0a2144b.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736607856-divisandblackmountain9h0a2144b.jpg", "openingTimeStatus": "Open today", "subTitle": "near Belfast, County Antrim", "title": "Divis and the Black Mountain", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/divis-and-the-black-mountain" }, "geometry": { "type": "Point", "coordinates": [ -6.041651, 54.60074 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionMidlands", "description": "Much-restored Tudor house, park and garden with notable topiary", "id": "255", "imageDescription": "Balloon exhibition at Packwood", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431803091718-1010568.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431803091718-1010568.jpg", "openingTimeStatus": "Open today", "subTitle": "Lapworth, Warwickshire", "title": "Packwood House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/packwood-house" }, "geometry": { "type": "Point", "coordinates": [ -1.74551, 52.3465 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionNorthernIreland", "description": "The last working water-driven spade mill in daily use in the British Isles", "id": "256", "imageDescription": "Spade Maker at work", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736476044-psm1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736476044-psm1400x788.jpg", "openingTimeStatus": "Closed today", "subTitle": "Templepatrick, County Antrim", "title": "Patterson's Spade Mill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/pattersons-spade-mill" }, "geometry": { "type": "Point", "coordinates": [ -6.043718, 54.700777 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionEastofEngland", "description": "A stunning Tudor merchant's house whose walls have more than a few stories to tell", "id": "257", "imageDescription": "A Tudor timber framed building with cartway on the left", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1017411tudorframedbldgpaycockes.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1017411tudorframedbldgpaycockes.jpg", "openingTimeStatus": "Open today", "subTitle": "Colchester, Essex", "title": "Paycocke's House and Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/paycockes-house-and-garden" }, "geometry": { "type": "Point", "coordinates": [ 0.68338, 51.87075 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Orienteering, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Villages and countryside criss-crossed with trails", "id": "2575", "imageDescription": "Coleshill parkland", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806923563-img8338resized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806923563-img8338resized.jpg", "openingTimeStatus": "Partially open today", "subTitle": "near Swindon, Wiltshire", "title": "The Buscot and Coleshill Estates", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/the-buscot-and-coleshill-estates" }, "geometry": { "type": "Point", "coordinates": [ -1.660634, 51.640444 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Canoeing and kayaking, Dog walking, Walking", "cmsRegion": "RegionEastofEngland", "description": "Elegant Georgian town house with wonderful walled garden", "id": "258", "imageDescription": "Peckover House and Garden", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431779090486-img1496.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431779090486-img1496.jpg", "openingTimeStatus": "Open today", "subTitle": "Wisbech, Cambridgeshire", "title": "Peckover House and Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/peckover-house-and-garden" }, "geometry": { "type": "Point", "coordinates": [ 0.154538, 52.665487 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Central office for the National Trust.", "id": "2580", "imageDescription": "Heelis, the Central Office for the National Trust at Swindon, Wiltshire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431733576616-774710.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431733576616-774710.jpg", "openingTimeStatus": "Open today", "subTitle": "Swindon, Wiltshire", "title": "Heelis", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/heelis" }, "geometry": { "type": "Point", "coordinates": [ -1.79707, 51.563767 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "Mid 19th-century Chartist cottage", "id": "2588", "imageDescription": "Rosedene", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/147984.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/147984.jpg", "openingTimeStatus": "Closed today", "subTitle": "near Bromsgrove, Worcestershire", "title": "Rosedene", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/rosedene" }, "geometry": { "type": "Point", "coordinates": [ -2.10304, 52.354698 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Running, Walking", "cmsRegion": "RegionWales", "description": "19th-century fantasy castle with spectacular surroundings", "id": "259", "imageDescription": "Golygfa o ddim ond rhai o’r cennin Pedr melyn llachar a’r Gorthwr yng Nghastell Penrhyn", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431801238842-daffodilsandkeepweb.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431801238842-daffodilsandkeepweb.jpg", "openingTimeStatus": "Open today", "subTitle": "Bangor, Gwynedd", "title": "Penrhyn Castle and Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/cy_gb\/castell-penrhyn" }, "geometry": { "type": "Point", "coordinates": [ -4.09526, 53.225899 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Restored 18th-century mausoleum, set in peaceful wood pasture", "id": "2593", "imageDescription": "A wide meandering grass path through the woodland ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431733733839-cobhammeanderingpathway.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431733733839-cobhammeanderingpathway.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Kent", "title": "Cobham Wood and Mausoleum", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/cobham-wood-and-mausoleum" }, "geometry": { "type": "Point", "coordinates": [ 0.433238, 51.38846 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionNorthWest", "description": "Beatrix Potter's original artwork on display in a 17th-century house", "id": "26", "imageDescription": "Exterior of the Beatrix Potter Gallery Hawkshead Cumbria ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431776764608-bp-gallery-.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431776764608-bp-gallery-.jpg", "openingTimeStatus": "Open today", "subTitle": "Hawkshead, Cumbria", "title": "Beatrix Potter Gallery and Hawkshead", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/beatrix-potter-gallery-and-hawkshead" }, "geometry": { "type": "Point", "coordinates": [ -2.99525, 54.373798 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "A stately mansion nestled in the South Downs housing the finest art collection in the care of the National Trust. ", "id": "260", "imageDescription": "The West Front of the Petworth mansion from the Pleasure Ground", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431782025792-petworth-west-front.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431782025792-petworth-west-front.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Petworth, West Sussex", "title": "Petworth", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/petworth-house-and-park" }, "geometry": { "type": "Point", "coordinates": [ -0.61281, 50.986099 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Enjoy far-reaching rolling parkland with tranquil views in the grounds of a Neo-Grecian house. Note, there is no access to the house itself.", "id": "261", "imageDescription": "Dinton Park with Philipps House", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431773066422-dintonparkhouseinspringntabbygeorge.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431773066422-dintonparkhouseinspringntabbygeorge.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Salisbury, Wiltshire", "title": "Dinton Park and Philipps House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/dinton-park-and-philipps-house" }, "geometry": { "type": "Point", "coordinates": [ -1.98937, 51.0849 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": " A rare and striking example of an early form of post mill", "id": "262", "imageDescription": "Pitstone Windmill Ashridge Estate Herts", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431741263256-pitstone-windmill-lw--3.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431741263256-pitstone-windmill-lw--3.jpg", "openingTimeStatus": "Closed today", "subTitle": "Ivinghoe, Buckinghamshire", "title": "Pitstone Windmill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/pitstone-windmill" }, "geometry": { "type": "Point", "coordinates": [ -0.62699, 51.831402 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionWales", "description": "Enchanting mansion and gardens, with spectacular views of Snowdonia. A whole day of things to see and do.", "id": "263", "imageDescription": "View of the mansion at Plas Newydd with the Menai Strait in the background", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431744188539-plas-newydd-spring-house-web.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431744188539-plas-newydd-spring-house-web.jpg", "openingTimeStatus": "Open today", "subTitle": "Llanfairpwll, Anglesey", "title": "Plas Newydd House and Gardens", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/plas-newydd-country-house-and-gardens" }, "geometry": { "type": "Point", "coordinates": [ -4.21541, 53.202599 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionWales", "description": "Delightful manor house with ornamental garden and wonderful views", "id": "264", "imageDescription": "Plas yn Rhiw house and gardens, Llŷn Peninsula", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431754120864-re-sized-plas-yn-rhiw-2.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431754120864-re-sized-plas-yn-rhiw-2.jpg", "openingTimeStatus": "Open today", "subTitle": "Pwllheli, Gwynedd", "title": "Plas yn Rhiw", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/plas-yn-rhiw" }, "geometry": { "type": "Point", "coordinates": [ -4.616, 52.823399 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "The perfect setting for an Edwardian country retreat", "id": "265", "imageDescription": "The exterior of the house at Polesden Lacey on a spring day", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431803229838-eddiehyde5forwebhomepageheroimage.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431803229838-eddiehyde5forwebhomepageheroimage.jpg", "openingTimeStatus": "Open today", "subTitle": "near Dorking, Surrey", "title": "Polesden Lacey", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/polesden-lacey" }, "geometry": { "type": "Point", "coordinates": [ -0.36886, 51.261002 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionWales", "description": "Medieval castle rising dramatically above the celebrated garden", "id": "266", "imageDescription": "A Clematis macropetala flowering in front of the castle and yew hedges at National Trust's Powis Castle and Garden, Powys, Wales.", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431777100802-20170405101550.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431777100802-20170405101550.jpg", "openingTimeStatus": "Open today", "subTitle": "Welshpool, Powys", "title": "Powis Castle and Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/powis-castle-and-garden" }, "geometry": { "type": "Point", "coordinates": [ -3.15764, 52.6492 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "Small pre-Reformation stone building", "id": "267", "imageDescription": "A view of the Priest's House. ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431777208786-homepage-image-priests-house.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431777208786-homepage-image-priests-house.jpg", "openingTimeStatus": "Open today", "subTitle": "near Stamford, Northamptonshire", "title": "Priest's House, Easton on the Hill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/priests-house-easton-on-the-hill" }, "geometry": { "type": "Point", "coordinates": [ -0.5095124, 52.629364 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Late medieval hall-house in a picturesque village", "id": "268", "imageDescription": "Medieval priests house at Muchelney", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/priests-house.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/priests-house.jpg", "openingTimeStatus": "Closed today", "subTitle": "Langport, Somerset", "title": "Priest's House, Muchelney", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/priests-house-muchelney" }, "geometry": { "type": "Point", "coordinates": [ -2.80763, 51.0214 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Horse riding, Walking", "cmsRegion": "RegionMidlands", "description": "The perfect English country house?", "id": "27", "imageDescription": "Sitting room setting in Belton's Marble Hall", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431800873670-marblehall2018.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431800873670-marblehall2018.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Grantham, Lincolnshire", "title": "Belton House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/belton-house" }, "geometry": { "type": "Point", "coordinates": [ -0.6137, 52.944901 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "Beautiful and intimate 18th-century landscape garden in Bath", "id": "270", "imageDescription": "Prior Park in spring comes with the scent of wild garlic", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431777541845-prior-parkspringpasturebridgegarlicviewrachel-beaumontweb.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431777541845-prior-parkspringpasturebridgegarlicviewrachel-beaumontweb.jpg", "openingTimeStatus": "Open today", "subTitle": "Bath, Somerset", "title": "Prior Park Landscape Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/prior-park-landscape-garden" }, "geometry": { "type": "Point", "coordinates": [ -2.34352, 51.367298 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Former monastic buildings, now converted into two houses", "id": "271", "imageDescription": "Priory Cottages, Abingdon, Oxfordshire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737398859-priory-cottages-cropped.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737398859-priory-cottages-cropped.jpg", "openingTimeStatus": "Open today", "subTitle": "Abingdon, Oxfordshire", "title": "Priory Cottages", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/priory-cottages" }, "geometry": { "type": "Point", "coordinates": [ -1.32658, 51.620098 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionNorthWest", "description": "One of Britain's greatest industrial heritage sites, home to a complete industrial community", "id": "272", "imageDescription": "View over the gardens to Quarry Bank House and the mill at Quarry Bank", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431775763335-website---spring---1400-x-788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431775763335-website---spring---1400-x-788.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Wilmslow, Cheshire", "title": "Quarry Bank", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/quarry-bank" }, "geometry": { "type": "Point", "coordinates": [ -2.2487, 53.3461 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Childhood home of General James Wolfe, victor of the Battle of Quebec (1759)", "id": "273", "imageDescription": "Conservation work in action at Quebec House, a National Trust property in Kent", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806799794-nickdouganqhscaffiolding18april3quebechouse-websitesize.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806799794-nickdouganqhscaffiolding18april3quebechouse-websitesize.jpg", "openingTimeStatus": "Closed today", "subTitle": "Westerham, Kent", "title": "Quebec House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/quebec-house" }, "geometry": { "type": "Point", "coordinates": [ 0.07833, 51.268002 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionLondonSouthEast", "description": "An historic house with a difference", "id": "274", "imageDescription": "Exterior of Rainham Hall", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431738326561-rainhamhallsophiaschorrkon2015.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431738326561-rainhamhallsophiaschorrkon2015.jpg", "openingTimeStatus": "Closed today", "subTitle": "Havering, London", "title": "Rainham Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/rainham-hall" }, "geometry": { "type": "Point", "coordinates": [ 0.193162, 51.521696 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionEastofEngland", "description": "Remains of a former Benedictine abbey", "id": "275", "imageDescription": "Ramsey Abbey Gatehouse", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431742116460-ramsey-gatehouse-main.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431742116460-ramsey-gatehouse-main.jpg", "openingTimeStatus": "Closed today", "subTitle": "Huntingdon, Cambridgeshire", "title": "Ramsey Abbey Gatehouse", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/ramsey-abbey-gatehouse" }, "geometry": { "type": "Point", "coordinates": [ -0.0997, 52.448502 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionEastofEngland", "description": "Discover a medieval castle, now a green oasis for wildlife but still at the centre of daily life", "id": "276", "imageDescription": "Two young girls wearing wellies holding hands running on the mount with the windmill in the background", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/rayleigh-mount-windmill-girls1400crop.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/rayleigh-mount-windmill-girls1400crop.jpg", "openingTimeStatus": "Open today", "subTitle": "Rayleigh, Essex", "title": "Rayleigh Mount", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/rayleigh-mount" }, "geometry": { "type": "Point", "coordinates": [ 0.60605, 51.587898 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "An easily accessible and wild stretch of coastline", "id": "2778", "imageDescription": "View from the Bolberry Down accessible walk", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735338144-sdbolberryaccessibleericmcdonald.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735338144-sdbolberryaccessibleericmcdonald.jpg", "openingTimeStatus": "Open today", "subTitle": "near Salcombe, Devon", "title": "Bolberry Down", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/bolberry-down" }, "geometry": { "type": "Point", "coordinates": [ -3.827255, 50.223454 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "One of Yorkshire's finest 18th-century landscape gardens, containing two temples", "id": "278", "imageDescription": "Rievaulx Terrace Ionic Temple ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431798992942-1322462andrewbutler1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431798992942-1322462andrewbutler1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Helmsley, North Yorkshire", "title": "Rievaulx Terrace", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/rievaulx-terrace" }, "geometry": { "type": "Point", "coordinates": [ -1.11556, 54.253899 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Boating, Canoeing and kayaking, Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Tranquil waterway running for nearly 20 miles through the heart of Surrey", "id": "279", "imageDescription": "Newark lock on the river Wey on a misty autumn morning", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431792883189-weynewarklockderekmisty.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431792883189-weynewarklockderekmisty.jpg", "openingTimeStatus": "Closed today", "subTitle": "Guildford, Surrey", "title": "River Wey and Godalming Navigations and Dapdune Wharf", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/river-wey-and-godalming-navigations-and-dapdune-wharf" }, "geometry": { "type": "Point", "coordinates": [ -0.57808, 51.2421 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling", "cmsRegion": "RegionLondonSouthEast", "description": "The only surviving windmill on the Isle of Wight", "id": "28", "imageDescription": "Bembridge Windmill from the side, against a blue sky with clouds.", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431775265067-bembridgewindmill1211365.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431775265067-bembridgewindmill1211365.jpg", "openingTimeStatus": "Open today", "subTitle": "Bembridge, Isle of Wight", "title": "Bembridge Windmill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/bembridge-windmill" }, "geometry": { "type": "Point", "coordinates": [ -1.09474, 50.68551 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionNorthernIreland", "description": "Whatever the season there's always something new to see....", "id": "281", "imageDescription": "petals at Rowallane Garden ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806568156-dsc0671.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806568156-dsc0671.jpg", "openingTimeStatus": "Open today", "subTitle": "Saintfield, County Down", "title": "Rowallane Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/rowallane-garden" }, "geometry": { "type": "Point", "coordinates": [ -5.82684, 54.447102 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Climbing, Dog walking, Geocaching, Running, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "Distinctive and iconic landmark with fine views across North Yorkshire and Cleveland", "id": "282", "imageDescription": "A panoramic view of Roseberry Topping under blue skies taken from Little Roseberry.", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431771862742-roseberry-topping-panorama-chris-wood-web-resized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431771862742-roseberry-topping-panorama-chris-wood-web-resized.jpg", "openingTimeStatus": "Open today", "subTitle": "Newton-under-Roseberry, North Yorkshire", "title": "Roseberry Topping", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/roseberry-topping" }, "geometry": { "type": "Point", "coordinates": [ -1.10471, 54.5056 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionNorthWest", "description": "A fine Tudor building, the home for stories of romance, wealth and 500 years of Hesketh family history.", "id": "283", "imageDescription": "Rufford Old Hall, Spring Blossom", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735574582-rufford-old-hall-in-blossom-davidg-ntweb-resized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735574582-rufford-old-hall-in-blossom-davidg-ntweb-resized.jpg", "openingTimeStatus": "Open today", "subTitle": "near Ormskirk, Lancashire", "title": "Rufford Old Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/rufford-old-hall" }, "geometry": { "type": "Point", "coordinates": [ -2.81365, 53.63775 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Riverside site of the sealing of Magna Carta", "id": "284", "imageDescription": "View of the Magna Carta memorial ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431800442688-summermagnacartamemorial-ntijamesdobsonresizedforweb.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431800442688-summermagnacartamemorial-ntijamesdobsonresizedforweb.jpg", "openingTimeStatus": "Open today", "subTitle": "near Old Windsor, Surrey", "title": "Runnymede and Ankerwycke", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/runnymede-and-ankerwycke" }, "geometry": { "type": "Point", "coordinates": [ -0.566896, 51.44799 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Tranquil garden and 13th-century chapel", "id": "287", "imageDescription": "The 13th century chapel at St Johns Jerusalem ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/st-johns-jerusalem-chapel.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/st-johns-jerusalem-chapel.jpg", "openingTimeStatus": "Closed today", "subTitle": "Dartford, Kent", "title": "St John's Jerusalem", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/st-johns-jerusalem" }, "geometry": { "type": "Point", "coordinates": [ 0.24053, 51.4095 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Rocky island crowned by medieval church and castle, home to a living community", "id": "288", "imageDescription": "Pink dawn rising over St Michael's Mount, Cornwall", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431740677584-stmichaelsmount128430davidnoton.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431740677584-stmichaelsmount128430davidnoton.jpg", "openingTimeStatus": "Open today", "subTitle": "Marazion, Cornwall", "title": "St Michael's Mount", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/st-michaels-mount" }, "geometry": { "type": "Point", "coordinates": [ -5.47565, 50.118099 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Orienteering, Running, Walking", "cmsRegion": "RegionSouthWest", "description": "A house full of treasures, stories & intrigue. A secret garden to lose yourself in, plus a park that cyclists, walkers, & our four legged friends love.", "id": "289", "imageDescription": "The view of the West side of Saltram house", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431803457435-1294338.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431803457435-1294338.jpg", "openingTimeStatus": "Open today", "subTitle": "Plymouth, Devon", "title": "Saltram", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/saltram" }, "geometry": { "type": "Point", "coordinates": [ -4.08548, 50.3815 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "A place of reinvention; evolving gardens, changing art exhibitions and a country house story spanning over 300 years", "id": "29", "imageDescription": "Tulips in Beningbrough's West Formal Garden", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431805820992-tulipsjoepriestley.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431805820992-tulipsjoepriestley.jpg", "openingTimeStatus": "Open today", "subTitle": "York, North Yorkshire", "title": "Beningbrough Hall, Gallery and Gardens", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/beningbrough-hall-gallery-and-gardens" }, "geometry": { "type": "Point", "coordinates": [ -1.21315, 54.022099 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "World famous chapel containing Stanley Spencer's visionary paintings", "id": "290", "imageDescription": "sandham first world war bedmaking", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431743457659-bedmaking-for-website-.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431743457659-bedmaking-for-website-.jpg", "openingTimeStatus": "Closed today", "subTitle": "near Newbury, Hampshire", "title": "Sandham Memorial Chapel", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/sandham-memorial-chapel" }, "geometry": { "type": "Point", "coordinates": [ -1.33691, 51.344799 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Country house, romantic garden, 14th century moated castle - all in a beautiful wooded estate", "id": "291", "imageDescription": "The main house at Scotney Castle ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431746180811-162591web.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431746180811-162591web.jpg", "openingTimeStatus": "Open today", "subTitle": "Tunbridge Wells, Kent", "title": "Scotney Castle", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/scotney-castle" }, "geometry": { "type": "Point", "coordinates": [ 0.408198, 51.092783 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionWales", "description": "Remains of a Roman fort", "id": "292", "imageDescription": "A roman battle at Segontium", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737692938-img3963-segontium-r.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737692938-img3963-segontium-r.jpg", "subTitle": "Caernarfon, Gwynedd", "title": "Segontium", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/segontium" }, "geometry": { "type": "Point", "coordinates": [ -4.266173, 53.137196 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "18th-century watermill with well-preserved machinery", "id": "293", "imageDescription": "The exterior of the mill sitting astride the Tillingbourne river", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/162610.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/162610.jpg", "openingTimeStatus": "Closed today", "subTitle": "near Guildford, Surrey", "title": "Shalford Mill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/shalford-mill" }, "geometry": { "type": "Point", "coordinates": [ -0.56645, 51.2192 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionEastofEngland", "description": "Country home of playwright Bernard Shaw for 44 years", "id": "294", "imageDescription": "A view of Shaw's Corner from the bottom of the garden looking up from the flower beds to the house", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735082947-shaw-camera-download-22-wb.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735082947-shaw-camera-download-22-wb.jpg", "openingTimeStatus": "Closed today", "subTitle": "near Welwyn, Hertfordshire", "title": "Shaw's Corner", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/shaws-corner" }, "geometry": { "type": "Point", "coordinates": [ -0.26844, 51.836215 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Acres of landscape garden bordered by historic parkland and woodland", "id": "295", "imageDescription": "Spring reflections at Sheffield Park, East Sussex", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431744259503-sheffieldparklake130april2014nen.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431744259503-sheffieldparklake130april2014nen.jpg", "openingTimeStatus": "Open today", "subTitle": "Uckfield, East Sussex", "title": "Sheffield Park and Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/sheffield-park-and-garden" }, "geometry": { "type": "Point", "coordinates": [ 0.0094, 51.0 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Running, Walking", "cmsRegion": "RegionEastofEngland", "description": "Landscape park and woodland garden with miles of stunning coastal views", "id": "296", "imageDescription": "Rhododendrons in flower at Sheringham Park", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431751935783-dsc05965.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431751935783-dsc05965.jpg", "openingTimeStatus": "Open today", "subTitle": "Upper Sheringham, Norfolk", "title": "Sheringham Park", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/sheringham-park" }, "geometry": { "type": "Point", "coordinates": [ 1.17234, 52.932899 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Sailing, Walking", "cmsRegion": "RegionMidlands", "description": "Rare survival of a complete estate, with all major buildings including mansion house, servants' quarters, working farm and walled garden", "id": "297", "imageDescription": "Picture of Shugborough Mansion and fountain", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431771049585-mansion-pic-resize.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431771049585-mansion-pic-resize.jpg", "openingTimeStatus": "Open today", "subTitle": "near Stafford, Staffordshire", "title": "Shugborough Estate", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/shugborough-estate" }, "geometry": { "type": "Point", "coordinates": [ -2.00697, 52.798401 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Medieval house with later architectural features", "id": "298", "imageDescription": "The gardens at Shute come alive with colour during spring and summer", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431748205412-shutebartonreardaffodilsericmcdonald.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431748205412-shutebartonreardaffodilsericmcdonald.jpg", "openingTimeStatus": "Closed today", "subTitle": "near Axminster, Devon", "title": "Shute Barton", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/shute-barton" }, "geometry": { "type": "Point", "coordinates": [ -3.05677, 50.7714 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Historic, poetic, iconic; a refuge dedicated to beauty. Vita Sackville-West and Harold Nicolson fell in love with Sissinghurst Castle and created a world renowned garden. ", "id": "299", "imageDescription": "Visit Sissinghurst Castle Garden and enjoy the views from the tower", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431730335865-sissinghurstgroupvisits.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431730335865-sissinghurstgroupvisits.jpg", "openingTimeStatus": "Open today", "subTitle": "near Cranbrook, Kent", "title": "Sissinghurst Castle Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/sissinghurst-castle-garden" }, "geometry": { "type": "Point", "coordinates": [ 0.58511, 51.113899 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionWales", "description": "An Industrial Revolution, powered by water since 1584!", "id": "3", "imageDescription": "A Woman's Work at Aberdulais", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431802732475-awomanswork.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431802732475-awomanswork.jpg", "openingTimeStatus": "Open today", "subTitle": "Neath, Neath Port Talbot", "title": "Aberdulais Tin Works and Waterfall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/aberdulais-tin-works-and-waterfall" }, "geometry": { "type": "Point", "coordinates": [ -3.77791, 51.680698 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionMidlands", "description": "A family home for 500 years", "id": "30", "imageDescription": "benthall great chamber", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431802671206-benthallwebresize.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431802671206-benthallwebresize.jpg", "openingTimeStatus": "Open today", "subTitle": "Broseley, Shropshire", "title": "Benthall Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/benthall-hall" }, "geometry": { "type": "Point", "coordinates": [ -2.50303, 52.6208 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Running, Walking", "cmsRegion": "RegionNorthWest", "description": "Beautiful medieval house, with rich gardens and estate", "id": "300", "imageDescription": "Tulips at Sizergh", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431749178429-img0481-susan-rowley.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431749178429-img0481-susan-rowley.jpg", "openingTimeStatus": "Open today", "subTitle": "near Kendal, Cumbria", "title": "Sizergh", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/sizergh" }, "geometry": { "type": "Point", "coordinates": [ -2.7716124, 54.284168 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionWales", "description": "Remains of an early 13th-century fortress", "id": "301", "imageDescription": "Remains of where the north-west tower at Skenfrith, Monmouthshire, Wales once stood", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737184886-skenfrith-corner-tower-north-west.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737184886-skenfrith-corner-tower-north-west.jpg", "openingTimeStatus": "Open today", "subTitle": "near Abergavenny, Monmouthshire", "title": "Skenfrith Castle", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/skenfrith-castle" }, "geometry": { "type": "Point", "coordinates": [ -2.78942, 51.8778 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Ellen Terry's early 16th-century house and cottage gardens", "id": "302", "imageDescription": "Roses climbing the house at Smallhythe Place", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/171804c.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/171804c.jpg", "openingTimeStatus": "Closed today", "subTitle": "Tenterden, Kent", "title": "Smallhythe Place", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/smallhythe-place" }, "geometry": { "type": "Point", "coordinates": [ 0.70182, 51.0383 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Snowshill Manor is a Cotswold manor house packed with extraordinary treasures collected over a life time by Charles Wade", "id": "303", "imageDescription": "Snowshill Manor viewed from Well Court in spring", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431802128027-snowshillmanorviewedfromwellcourt.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431802128027-snowshillmanorviewedfromwellcourt.jpg", "openingTimeStatus": "Open today", "subTitle": "near Broadway, Gloucestershire", "title": "Snowshill Manor and Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/snowshill-manor-and-garden" }, "geometry": { "type": "Point", "coordinates": [ -1.86037, 52.003101 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Running, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "A marvel of its age", "id": "304", "imageDescription": "Evening sun on Souter Lighthouse, Tyne and Wear", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735772833-souterlighthouseandtheleas977725lighthouseatduskjohnmillar.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735772833-souterlighthouseandtheleas977725lighthouseatduskjohnmillar.jpg", "openingTimeStatus": "Open today", "subTitle": "Sunderland, Tyne & Wear", "title": "Souter Lighthouse and The Leas", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/souter-lighthouse-and-the-leas" }, "geometry": { "type": "Point", "coordinates": [ -1.36124, 54.967999 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "The first lighthouse to use an electric light", "id": "305", "imageDescription": "Family flying kites at South Foreland Lighthouse", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431733896998-familyflyingkitesatthelighthouse.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431733896998-familyflyingkitesatthelighthouse.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Dover, Kent", "title": "South Foreland Lighthouse", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/south-foreland-lighthouse" }, "geometry": { "type": "Point", "coordinates": [ 1.3345979, 51.1320901 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Archery, Cycling, Dog walking, Orienteering, Running, Walking", "cmsRegion": "RegionNorthWest", "description": "Beyond the black & white is a Tudor house with a Victorian personality", "id": "306", "imageDescription": "Daffodils on the main drive at Speke Hall", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431743566938-speke-hall-daffodils.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431743566938-speke-hall-daffodils.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Speke, Liverpool", "title": "Speke Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/speke-hall-garden-and-estate" }, "geometry": { "type": "Point", "coordinates": [ -2.87353, 53.336498 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionNorthernIreland", "description": "Pretty 17th-century 'Plantation' home with a significant costume collection", "id": "307", "imageDescription": "Spring has sprung at Springhill ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431771564674-springhill---daffodils.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431771564674-springhill---daffodils.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Magherafelt, County Londonderry", "title": "Springhill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/springhill" }, "geometry": { "type": "Point", "coordinates": [ -6.65569, 54.685699 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Orienteering, Walking", "cmsRegion": "RegionMidlands", "description": "Neo-classical mansion with fine interiors, set in landscape grounds", "id": "31", "imageDescription": "Berrington Hall from a distance with sheep grazing in the landscape", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431770339327-1188148---sheep-grazing.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431770339327-1188148---sheep-grazing.jpg", "openingTimeStatus": "Open today", "subTitle": "near Leominster, Herefordshire", "title": "Berrington Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/berrington-hall" }, "geometry": { "type": "Point", "coordinates": [ -2.71427, 52.269501 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionMidlands", "description": "A wonderful world of wheels and water", "id": "310", "imageDescription": "Stainsby Mill on the Hardwick Estate, Derbyshire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/156231.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/156231.jpg", "openingTimeStatus": "Closed today", "subTitle": "Chesterfield, Derbyshire", "title": "Hardwick Estate: Stainsby Mill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hardwick-estate-stainsby-mill" }, "geometry": { "type": "Point", "coordinates": [ -1.31952, 53.183275 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Arts and Crafts family home with Morris & Co. interiors, set in a beautiful hillside garden", "id": "311", "imageDescription": "Standen from the sloping lawn", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431800609779-homepage.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431800609779-homepage.jpg", "openingTimeStatus": "Open today", "subTitle": "East Grinstead, West Sussex", "title": "Standen House and Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/standen-house-and-garden" }, "geometry": { "type": "Point", "coordinates": [ -0.01664, 51.103506 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "Imposing church built in 1653, with fine panelled interior", "id": "312", "imageDescription": "Exterior view of Staunton Harold Church", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736876102-exteriorautumnstauntonharoldchurch4105.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736876102-exteriorautumnstauntonharoldchurch4105.jpg", "openingTimeStatus": "Closed today", "subTitle": "Ashby-de-la-Zouch, Leicestershire", "title": "Staunton Harold Church", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/staunton-harold-church" }, "geometry": { "type": "Point", "coordinates": [ -1.43658, 52.783401 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "14th\/15th-century farm buildings, formerly a priest's residence", "id": "314", "imageDescription": "Stoke-sub-Hamdon Priory ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/stoke-priory.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/stoke-priory.jpg", "openingTimeStatus": "Closed today", "subTitle": "Stoke-sub-Hamdon, Somerset", "title": "Stoke-sub-Hamdon Priory", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/stoke-sub-hamdon-priory" }, "geometry": { "type": "Point", "coordinates": [ -2.75451, 50.952 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Medieval yeoman's house and garden", "id": "315", "imageDescription": "A view from the front of Stoneacre", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/stoneacre.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/stoneacre.jpg", "openingTimeStatus": "Closed today", "subTitle": "Maidstone, Kent", "title": "Stoneacre", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/stoneacre" }, "geometry": { "type": "Point", "coordinates": [ 0.58178, 51.2533 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Geocaching, Walking", "cmsRegion": "RegionSouthWest", "description": "A World Heritage Site for its ancient ceremonial landscape of great archaeological interest.", "id": "316", "imageDescription": "Man and barrow in Stonehenge landscape", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431795140747-stonehengedawnntjohnmiller.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431795140747-stonehengedawnntjohnmiller.jpg", "openingTimeStatus": "Open today", "subTitle": "near Amesbury, Wiltshire", "title": "Stonehenge Landscape", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/stonehenge-landscape" }, "geometry": { "type": "Point", "coordinates": [ -1.82776, 51.177601 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Running, Swimming, Walking", "cmsRegion": "RegionSouthWest", "description": "Palladian house and world-famous landscape garden", "id": "317", "imageDescription": "A view across the lake towards the Pantheon in early spring", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431800543320-nti-emmaweston.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431800543320-nti-emmaweston.jpg", "openingTimeStatus": "Partially open today", "subTitle": "near Mere, Wiltshire", "title": "Stourhead", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/stourhead" }, "geometry": { "type": "Point", "coordinates": [ -2.31469, 51.108601 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Gardening on the grandest scale ", "id": "318", "imageDescription": "A view of the Temple of Ancient Virtue at Stowe Landscape Gardens, Buckinghamshire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/stowe70449templeofancientvirtue.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/stowe70449templeofancientvirtue.jpg", "openingTimeStatus": "Open today", "subTitle": "Buckingham, Buckinghamshire", "title": "Stowe", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/stowe" }, "geometry": { "type": "Point", "coordinates": [ -1.00785, 52.022154 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionMidlands", "description": "Ordinary house, extraordinary home", "id": "319", "imageDescription": "Straw Family coats in the hall", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431742140231-68448coats.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431742140231-68448coats.jpg", "openingTimeStatus": "Open today", "subTitle": "Worksop, Nottinghamshire", "title": "Mr Straw's House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/mr-straws-house" }, "geometry": { "type": "Point", "coordinates": [ -1.11243, 53.3148 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "A masterpiece of Victorian garden design - a quirky, playful paradise", "id": "32", "imageDescription": "Rhododendron closeup", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431744467433-rhodedendron-close-up.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431744467433-rhodedendron-close-up.jpg", "openingTimeStatus": "Open today", "subTitle": "Biddulph, Staffordshire", "title": "Biddulph Grange Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/biddulph-grange-garden" }, "geometry": { "type": "Point", "coordinates": [ -2.15629, 53.129601 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Boating, Canoeing and kayaking, Dog walking, Horse riding, Running, Sailing, Swimming, Walking", "cmsRegion": "RegionSouthWest", "description": "Vast area of sandy beaches and heathland", "id": "320", "imageDescription": "Dune heath at Studland Bay", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431799067288-duneheath1studlandbay.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431799067288-duneheath1studlandbay.jpg", "openingTimeStatus": "Open today", "subTitle": "near Swanage, Dorset", "title": "Studland Bay", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/studland-bay" }, "geometry": { "type": "Point", "coordinates": [ -1.953806, 50.651732 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionMidlands", "description": "Late 17th-century house with lavish interiors and the Museum of Childhood ", "id": "321", "imageDescription": "spring flowers at Sudbury Hall", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431799345826-springcrocus.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431799345826-springcrocus.jpg", "openingTimeStatus": "Open today", "subTitle": "Ashbourne, Derbyshire", "title": "Sudbury Hall and the National Trust Museum of Childhood", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/sudbury-hall-and-the-national-trust-museum-of-childhood" }, "geometry": { "type": "Point", "coordinates": [ -1.76674, 52.886299 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionEastofEngland", "description": "Awe-inspiring Anglo-Saxon royal burial site", "id": "323", "imageDescription": "Hand-crafted replica of the Sutton Hoo helmet", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431734788265-helmet.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431734788265-helmet.jpg", "openingTimeStatus": "Open today", "subTitle": "Woodbridge, Suffolk", "title": "Sutton Hoo", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/sutton-hoo" }, "geometry": { "type": "Point", "coordinates": [ 1.34032, 52.088299 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Tudor house surviving in the heart of a thriving East London community", "id": "324", "imageDescription": "Little Chamber", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/771158sutton-house-little-chamber.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/771158sutton-house-little-chamber.jpg", "openingTimeStatus": "Closed today", "subTitle": "Hackney, London", "title": "Sutton House and Breaker's Yard", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/sutton-house-and-breakers-yard" }, "geometry": { "type": "Point", "coordinates": [ -0.04921, 51.548 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "A comfortable home telling the story of a brewer, a widow and three generations of the Lander family", "id": "325", "imageDescription": "Sunnycroft in the sun", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431803902452-blueskysunny.jpeg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431803902452-blueskysunny.jpeg", "openingTimeStatus": "Closed today", "subTitle": "Telford, Shropshire", "title": "Sunnycroft", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/sunnycroft" }, "geometry": { "type": "Point", "coordinates": [ -2.5167, 52.6955 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "Magnificent 15th century red brick castle - what wealth and power looks like", "id": "326", "imageDescription": "Tattershall Castle in sping time", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431798932710-dsc0959.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431798932710-dsc0959.jpg", "openingTimeStatus": "Open today", "subTitle": "Tattershall, Lincolnshire", "title": "Tattershall Castle", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/tattershall-castle" }, "geometry": { "type": "Point", "coordinates": [ -0.19063, 53.101002 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Fishing, Horse riding, Running, Sailing, Walking", "cmsRegion": "RegionNorthWest", "description": "An historical estate with a neo-classical mansion, 50 acres of landscaped Gardens, 1000 acres of deer Park, a rare breed farm and medieval Old Hall.", "id": "327", "imageDescription": "View of the mansion at Tatton Park", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431733635584-86602.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431733635584-86602.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Knutsford, Cheshire", "title": "Tatton Park", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/tatton-park" }, "geometry": { "type": "Point", "coordinates": [ -2.37039, 53.327599 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionEastofEngland", "description": "The only surviving Regency playhouse in Britain", "id": "328", "imageDescription": "The auditorium of the Theatre Royal Bury St Edmunds", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806988515-theatreroyal11aaronweight-webresize.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806988515-theatreroyal11aaronweight-webresize.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Bury St Edmunds, Suffolk", "title": "Theatre Royal Bury St Edmunds", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/theatre-royal-bury-st-edmunds" }, "geometry": { "type": "Point", "coordinates": [ 0.716911, 52.24063 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionEastofEngland", "description": "Holiday Accommodation - Rambling Suffolk farmhouse built around 1600", "id": "329", "imageDescription": "Exterior of Thorington Hall", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735279350-thorington-hall---exterior---2.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735279350-thorington-hall---exterior---2.jpg", "subTitle": "Suffolk", "title": "Thorington Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/thorington-hall" }, "geometry": { "type": "Point", "coordinates": [ 0.93061, 51.9809 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionEastofEngland", "description": "Spectacular wildlife and uninterrupted views of beautiful coastline", "id": "33", "imageDescription": "a white seal pup sits on shingle with the blue sky behind", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431791670201-4h8a7018adobe.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431791670201-4h8a7018adobe.jpg", "openingTimeStatus": "Open today", "subTitle": "Morston, Norfolk", "title": "Blakeney National Nature Reserve", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/blakeney-national-nature-reserve" }, "geometry": { "type": "Point", "coordinates": [ 0.985829, 52.957752 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "One of the Trust's most delightful medieval buildings, enhanced by a cottage garden", "id": "330", "imageDescription": "An aerial view of Tintagel Old Post Office", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431745258795-rhodri-davies-9---web-rdy.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431745258795-rhodri-davies-9---web-rdy.jpg", "openingTimeStatus": "Open today", "subTitle": "Tintagel, Cornwall", "title": "Tintagel Old Post Office", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/tintagel-old-post-office" }, "geometry": { "type": "Point", "coordinates": [ -4.7502, 50.664101 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "A place of floral beauty, tranquillity and innovation - a gardeners' garden paradise.", "id": "331", "imageDescription": "Tintinhull House in the Autumn Colour", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431789318636-1247313andrewbutler.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431789318636-1247313andrewbutler.jpg", "openingTimeStatus": "Open today", "subTitle": "Yeovil, Somerset", "title": "Tintinhull Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/tintinhull-garden" }, "geometry": { "type": "Point", "coordinates": [ -2.709428, 50.975237 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "Shrewsbury's last remaining watchtower", "id": "332", "imageDescription": "The view of Town Walls Tower, looking east along Town Walls", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/town-walls-tower.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/town-walls-tower.jpg", "openingTimeStatus": "Closed today", "subTitle": "Shrewsbury, Shropshire", "title": "Attingham Park Estate: Town Walls Tower", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/attingham-park-estate-town-walls-tower" }, "geometry": { "type": "Point", "coordinates": [ -2.75512, 52.705002 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionNorthWest", "description": "Atmospheric farmhouse full of quirky objects and fascinating stories", "id": "333", "imageDescription": "A bright and beautiful Townend on a summer's day", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431802665530-townendsummer.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431802665530-townendsummer.jpg", "openingTimeStatus": "Closed today", "subTitle": "Windermere, Cumbria", "title": "Townend", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/townend" }, "geometry": { "type": "Point", "coordinates": [ -2.91477, 54.412498 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Small medieval house", "id": "334", "imageDescription": "Treasurers House Martock", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/treasurers-house-chris-spracklen.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/treasurers-house-chris-spracklen.jpg", "openingTimeStatus": "Closed today", "subTitle": "Martock, Somerset", "title": "Treasurer's House, Martock", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/treasurers-house-martock" }, "geometry": { "type": "Point", "coordinates": [ -2.76586, 50.965801 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionYorkshireNorthEast", "description": "A house of contradictions, café and garden in the centre of York", "id": "335", "imageDescription": "Stone house with green lawn and statues in front", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431743938412-529a7981-chris-lacey.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431743938412-529a7981-chris-lacey.jpg", "openingTimeStatus": "Open today", "subTitle": "York, North Yorkshire", "title": "Treasurer's House, York", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/treasurers-house-york" }, "geometry": { "type": "Point", "coordinates": [ -1.080973, 53.962764 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Running, Walking", "cmsRegion": "RegionSouthWest", "description": "A welcoming country house and garden set in an estate with stunning maritime views and lovely woodland walks", "id": "336", "imageDescription": "View from the tennis lawn in the garden out to the river Fal", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431776590072-dsc0193.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431776590072-dsc0193.jpg", "openingTimeStatus": "Open today", "subTitle": "near Truro, Cornwall", "title": "Trelissick", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/trelissick" }, "geometry": { "type": "Point", "coordinates": [ -5.0337821, 50.217241 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Sheltered garden bursting with exotic trees and shrubs", "id": "337", "imageDescription": "Stream border at Trengwainton garden in Cornwall", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806639027-streammay2018cmsresized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806639027-streammay2018cmsresized.jpg", "openingTimeStatus": "Open today", "subTitle": "near Penzance, Cornwall", "title": "Trengwainton Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/trengwainton-garden" }, "geometry": { "type": "Point", "coordinates": [ -5.5695, 50.127899 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Elizabethan manor house with fine interiors and delightful garden", "id": "338", "imageDescription": "Bluebells in front of the house", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431805595857-bluebellshouse.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431805595857-bluebellshouse.jpg", "openingTimeStatus": "Open today", "subTitle": "near Newquay, Cornwall", "title": "Trerice", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/trerice" }, "geometry": { "type": "Point", "coordinates": [ -5.03814, 50.384998 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Caving, Dog walking, Walking", "cmsRegion": "RegionWales", "description": "Time travel to Tudor Tenby and discover what life was like at our 15th century merchant's house.", "id": "339", "imageDescription": "Little boy dressed up in traditional Tudor costume", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1066583---national-trust-images-chris-lacey.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1066583---national-trust-images-chris-lacey.jpg", "openingTimeStatus": "Open today", "subTitle": "Tenby, Pembrokeshire", "title": "Tudor Merchant's House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/tudor-merchants-house" }, "geometry": { "type": "Point", "coordinates": [ -4.69714, 51.671299 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionWales", "description": "Traditional stone-built upland 16th-century farmhouse", "id": "341", "imageDescription": "The 16th-century farmhouse Ty Mawr Wybrnant, Conwy, Wales", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/exteriortymawrwybrnant692157.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/exteriortymawrwybrnant692157.jpg", "openingTimeStatus": "Closed today", "subTitle": "Betws-y-Coed, Conwy", "title": "Tŷ Mawr Wybrnant", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/ty-mawr-wybrnant" }, "geometry": { "type": "Point", "coordinates": [ -3.83218, 53.052502 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Canoeing and kayaking, Dog walking, Walking", "cmsRegion": "RegionNorthWest", "description": "Aira Force is a showcase for the power and beauty of nature; it’s a place to escape the ordinary.", "id": "343", "imageDescription": "Aira Force waterfall", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/airaforce102042gowbarrowtrailwaterfall.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/airaforce102042gowbarrowtrailwaterfall.jpg", "openingTimeStatus": "Open today", "subTitle": "Penrith, Cumbria", "title": "Aira Force and Ullswater", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/aira-force-and-ullswater" }, "geometry": { "type": "Point", "coordinates": [ -2.92949, 54.5751 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "Reserve in the care of the Leicestershire and Rutland Wildlife Trust", "id": "344", "imageDescription": "Wet grass at Ulverscroft Nature Reserve", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/countrysidegrass.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/countrysidegrass.jpg", "subTitle": "near Loughborough, Leicestershire", "title": "Ulverscroft Nature Reserve", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/ulverscroft-nature-reserve" }, "geometry": { "type": "Point", "coordinates": [ -1.27259, 52.701401 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Uppark: a tranquil and intimate 18th-century house", "id": "345", "imageDescription": "A brown hare at Uppark, National trust", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431774950528-hare-north-drive-uppark-image.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431774950528-hare-north-drive-uppark-image.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Petersfield, West Sussex", "title": "Uppark House and Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/uppark-house-and-garden" }, "geometry": { "type": "Point", "coordinates": [ -0.88896, 50.952702 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionMidlands", "description": "In 1927 Lord and Lady Bearsted viewed Upton House with ‘the eye of imagination’ and soon set about creating their made-to-measure country home. ", "id": "346", "imageDescription": "The restored mirror pool in spring Sunshine", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806230801-saralanemirrorpool1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806230801-saralanemirrorpool1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "near Banbury, Warwickshire", "title": "Upton House and Gardens", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/upton-house-and-gardens" }, "geometry": { "type": "Point", "coordinates": [ -1.45769, 52.1068 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Geocaching, Running, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "Area of classic Yorkshire Dales countryside", "id": "347", "imageDescription": "Spring view in Upper Wharfedale", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431747364859-upperwharfedaleyorkshiredales133049springview2.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431747364859-upperwharfedaleyorkshiredales133049springview2.jpg", "openingTimeStatus": "Open today", "subTitle": "near Buckden, North Yorkshire", "title": "Upper Wharfedale", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/upper-wharfedale" }, "geometry": { "type": "Point", "coordinates": [ -2.05593, 54.148399 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Geocaching, Orienteering, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Relax in the grounds and watch as 41 miles of scaffolding comes down from around this former Tudor palace. ", "id": "348", "imageDescription": "The Vyne at the end of a £5.4m roof project.", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806859184-p2200110edited1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806859184-p2200110edited1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Basingstoke, Hampshire", "title": "The Vyne", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/the-vyne" }, "geometry": { "type": "Point", "coordinates": [ -1.08401, 51.313783 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Orienteering, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Magnificent house and grounds in the style of a 16th-century French château. ", "id": "349", "imageDescription": "The South Front of Waddesdon Manor, Buckinghamshire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431774370124-internship-photos-mar-2017-006.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431774370124-internship-photos-mar-2017-006.jpg", "openingTimeStatus": "Closed today", "subTitle": "near Aylesbury, Buckinghamshire", "title": "Waddesdon Manor", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/waddesdon-manor" }, "geometry": { "type": "Point", "coordinates": [ -0.92629, 51.840801 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Fishing, Geocaching, Running, Walking", "cmsRegion": "RegionEastofEngland", "description": "One day is never enough. Discover a complete Norfolk estate with something for everyone.", "id": "35", "imageDescription": "The twisted branches of the oriental plane tree and bluebells at Blickling.", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431805417833-aprilmayhomepageimage.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431805417833-aprilmayhomepageimage.jpg", "openingTimeStatus": "Open today", "subTitle": "Aylsham, Norfolk", "title": "Blickling Estate", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/blickling-estate" }, "geometry": { "type": "Point", "coordinates": [ 1.23139, 52.812 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Botanical garden with the world's largest seed conservation project", "id": "350", "imageDescription": "Spring blooms in by the water at Wakehurst", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806431861-wakehurst1.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806431861-wakehurst1.jpg", "openingTimeStatus": "Open today", "subTitle": "Haywards Heath, West Sussex", "title": "Wakehurst", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/wakehurst" }, "geometry": { "type": "Point", "coordinates": [ -0.08934, 51.064999 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "Excavated Roman bathhouse, other remains and museum", "id": "351", "imageDescription": "Exterior shot of the Letocetum Roman Baths and Museum", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431738086252-letocetumromanbathsandmuseumexterior.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431738086252-letocetumromanbathsandmuseumexterior.jpg", "openingTimeStatus": "Partially open today", "subTitle": "near Lichfield, Staffordshire", "title": "Letocetum Roman Baths and Museum", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/letocetum-roman-baths-and-museum" }, "geometry": { "type": "Point", "coordinates": [ -1.85605, 52.657001 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "Discover Wallington, much-loved home to generations of the unconventional Trevelyan family.", "id": "352", "imageDescription": "Girls running through daffodils", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431804016000-girlsrunningdaffodilschrislacey.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431804016000-girlsrunningdaffodilschrislacey.jpg", "openingTimeStatus": "Open today", "subTitle": "near Morpeth, Northumberland", "title": "Wallington", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/wallington" }, "geometry": { "type": "Point", "coordinates": [ -1.95144, 55.1507 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Climbing, Dog walking, Walking", "cmsRegion": "RegionNorthWest", "description": "Towering mountains and the deepest lake in England", "id": "353", "imageDescription": "Gentle stream flowing through the Lake District - Wastwater in Wasdale, Cumbria", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431748159725-1194044-wastwater-in-wasdale-cumbria-by-john-malley.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431748159725-1194044-wastwater-in-wasdale-cumbria-by-john-malley.jpg", "openingTimeStatus": "Open today", "subTitle": "near Seascale, Cumbria", "title": "Wasdale", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/wasdale" }, "geometry": { "type": "Point", "coordinates": [ -3.31474, 54.431099 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "Manor house associated with the family of George Washington, first president of the USA", "id": "354", "imageDescription": "View of Washington Old Hall from the Parterre formal garden in late Spring", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431743355617-woh-steven.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431743355617-woh-steven.jpg", "openingTimeStatus": "Open today", "subTitle": "Washington, Tyne & Wear", "title": "Washington Old Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/washington-old-hall" }, "geometry": { "type": "Point", "coordinates": [ -1.5146, 54.901901 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Canoeing and kayaking, Dog walking, Fishing, Walking", "cmsRegion": "RegionSouthWest", "description": "Dramatic river gorge, ancient woodlands, tea garden and shop in stunning surroundings", "id": "355", "imageDescription": "Looking towards Watersmeet House tea garden, river in forground trees in background", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431756727323-watersmeet-house-891539-john-millar.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431756727323-watersmeet-house-891539-john-millar.jpg", "openingTimeStatus": "Open today", "subTitle": "Lynmouth, Devon", "title": "Watersmeet", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/watersmeet" }, "geometry": { "type": "Point", "coordinates": [ -3.79444, 51.2211 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionMidlands", "description": "Escape to this spectacular riverside garden and be absorbed by natural beauty. ", "id": "356", "imageDescription": "a slope of daffodils", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431769460978-daffs-and-hut.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431769460978-daffs-and-hut.jpg", "openingTimeStatus": "Open today", "subTitle": "Hereford, Herefordshire", "title": "The Weir Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/the-weir-garden" }, "geometry": { "type": "Point", "coordinates": [ -2.82203, 52.072899 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionNorthernIreland", "description": "Working water-powered mill used in the manufacture of linen", "id": "357", "imageDescription": "Explore Northern Ireland's last working water-powered linen beetling mill", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431797381729-websiteresizedpic1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431797381729-websiteresizedpic1400x788.jpg", "openingTimeStatus": "Closed today", "subTitle": "Cookstown, County Tyrone", "title": "Wellbrook Beetling Mill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/wellbrook-beetling-mill" }, "geometry": { "type": "Point", "coordinates": [ -6.83957, 54.6553 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Celebrated garden with an intriguing collection of follies", "id": "358", "imageDescription": "View within the walled garden at West Green House Garden", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/westgreenhousewalledgardenresized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/westgreenhousewalledgardenresized.jpg", "openingTimeStatus": "Closed today", "subTitle": "Hartley Wintney, Hampshire", "title": "West Green House Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/west-green-house-garden" }, "geometry": { "type": "Point", "coordinates": [ -0.9343, 51.3027 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Nine rustic cottages around a green", "id": "36", "imageDescription": "A round thatched cottage at Blaise Hamlet", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/blaise-hamlet-1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/blaise-hamlet-1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Henbury, Bristol", "title": "Blaise Hamlet", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/blaise-hamlet" }, "geometry": { "type": "Point", "coordinates": [ -2.63912, 51.5061 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionLondonSouthEast", "description": "The elegant Palladian home of the Dashwood family and historic village", "id": "360", "imageDescription": "Temple of Music, West Wycombe Park", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431778455319-img2434.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431778455319-img2434.jpg", "openingTimeStatus": "Partially open today", "subTitle": "West Wycombe, Buckinghamshire", "title": "West Wycombe Park, Village and Hill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/west-wycombe-park-village-and-hill" }, "geometry": { "type": "Point", "coordinates": [ -0.80065, 51.641701 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Dutch water garden - a rare and beautiful survival", "id": "363", "imageDescription": "View to the Pavillion ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431789184734-westburyviewtothepavillion.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431789184734-westburyviewtothepavillion.jpg", "openingTimeStatus": "Closed today", "subTitle": "Westbury-on-Severn, Gloucestershire", "title": "Westbury Court Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/westbury-court-garden" }, "geometry": { "type": "Point", "coordinates": [ -2.410684, 51.822172 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Fifteenth century stone manor house", "id": "364", "imageDescription": "A view of Westwood Manor and grounds from above", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735904395-1013613.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735904395-1013613.jpg", "openingTimeStatus": "Open today", "subTitle": "near Bradford-on-Avon, Wiltshire", "title": "Westwood Manor", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/westwood-manor" }, "geometry": { "type": "Point", "coordinates": [ -2.27024, 51.329399 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionEastofEngland", "description": "Trees, hedges and shrubs planted in the form of a medieval cathedral", "id": "365", "imageDescription": "a view from within the Tree Cathedral", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736683218-tc-top-photo-web-ready.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736683218-tc-top-photo-web-ready.jpg", "openingTimeStatus": "Open today", "subTitle": "Dunstable, Bedfordshire", "title": "Whipsnade Tree Cathedral", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/whipsnade-tree-cathedral" }, "geometry": { "type": "Point", "coordinates": [ -0.5358892, 51.851636 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Corn mill with original wooden machinery in a peaceful riverside setting", "id": "366", "imageDescription": "White Mill on the Kingston Lacy estate", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431755534264-dee-maddamswhite-mill.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431755534264-dee-maddamswhite-mill.jpg", "openingTimeStatus": "Closed today", "subTitle": "near Wimborne Minster, Dorset", "title": "White Mill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/white-mill" }, "geometry": { "type": "Point", "coordinates": [ -2.05923, 50.804501 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Magnificent coastal site overlooking the English Channel", "id": "367", "imageDescription": "A view of the cliffs looking towards the Port of Dover", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431733755283-crackincliffportinbackground.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431733755283-crackincliffportinbackground.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Dover, Kent", "title": "The White Cliffs of Dover", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/the-white-cliffs-of-dover" }, "geometry": { "type": "Point", "coordinates": [ 1.339026, 51.132205 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "17th-century half-timbered dovecote", "id": "369", "imageDescription": "Front View of Wichenford Dovecote", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/summerwichenforddovecote984935.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/summerwichenforddovecote984935.jpg", "openingTimeStatus": "Open today", "subTitle": "Wichenford, Worcestershire", "title": "Wichenford Dovecote", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/wichenford-dovecote" }, "geometry": { "type": "Point", "coordinates": [ -2.31302, 52.236801 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionWales", "description": "A world-famous garden home to National Collections and Champion Trees", "id": "37", "imageDescription": "Blossom time at Bodnant Garden National Trust", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806060750-dsc1233.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806060750-dsc1233.jpg", "openingTimeStatus": "Open today", "subTitle": "near Colwyn Bay, Conwy", "title": "Bodnant Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/bodnant-garden" }, "geometry": { "type": "Point", "coordinates": [ -3.79996, 53.236099 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Boating, Cycling, Dog walking, Geocaching, Walking", "cmsRegion": "RegionEastofEngland", "description": "The National Trust's oldest nature reserve, and England's most famous fen", "id": "370", "imageDescription": "Wicken Fen - Bittern", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735965382-wicken-fen-bittern-by-richard-nicoll-web-ready-1400-x-788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735965382-wicken-fen-bittern-by-richard-nicoll-web-ready-1400-x-788.jpg", "openingTimeStatus": "Open today", "subTitle": "Ely, Cambridgeshire", "title": "Wicken Fen National Nature Reserve", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/wicken-fen-nature-reserve" }, "geometry": { "type": "Point", "coordinates": [ 0.29291, 52.3101 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Orienteering, Walking", "cmsRegion": "RegionMidlands", "description": "The legacy of a family's passion for Victorian art and design", "id": "371", "imageDescription": "Looking through the balustrades on the south terrace lawn towards Wightwick Manor in the sun", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431799566820-wightwickmanorgardensspringlindseybucknor10of39.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431799566820-wightwickmanorgardensspringlindseybucknor10of39.jpg", "openingTimeStatus": "Open today", "subTitle": "Wolverhampton, West Midlands", "title": "Wightwick Manor and Gardens", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/wightwick-manor-and-gardens" }, "geometry": { "type": "Point", "coordinates": [ -2.196453, 52.582765 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "Elizabethan gabled manor house", "id": "372", "imageDescription": "Wilderhope Manor and the surrounding farmland", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735685303-wilderhope-cropped1.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735685303-wilderhope-cropped1.jpg", "openingTimeStatus": "Closed today", "subTitle": "Much Wenlock, Shropshire", "title": "Wilderhope Manor", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/wilderhope-manor" }, "geometry": { "type": "Point", "coordinates": [ -2.6725, 52.529301 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionEastofEngland", "description": "Outstanding 16th-century stone dovecote and stable building", "id": "373", "imageDescription": "Willington Dovecot", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431760269034-wp20160913009.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431760269034-wp20160913009.jpg", "openingTimeStatus": "Closed today", "subTitle": "near Bedford, Bedfordshire", "title": "Willington Dovecote and Stables", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/willington-dovecote-and-stables" }, "geometry": { "type": "Point", "coordinates": [ -0.3808, 52.137501 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Innovative and influential Modernist home from 1939", "id": "374", "imageDescription": "Street front view of 1 to 3 Willow Road", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736471419-new-website-2wr-front.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736471419-new-website-2wr-front.jpg", "openingTimeStatus": "Closed today", "subTitle": "Hampstead, London", "title": "2 Willow Road", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/2-willow-road" }, "geometry": { "type": "Point", "coordinates": [ -0.16861, 51.557499 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Horse riding, Running, Walking", "cmsRegion": "RegionEastofEngland", "description": "A working estate still guided by the seasons, with an impressive mansion and Home Farm", "id": "375", "imageDescription": "Sheep and lamb at Wimpole Home Farm", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431740390361-lambswimpole971735robertmorris.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431740390361-lambswimpole971735robertmorris.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Royston, Cambridgeshire", "title": "Wimpole Estate", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/wimpole-estate" }, "geometry": { "type": "Point", "coordinates": [ -0.04878, 52.138 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Working watermill in the heart of Winchester", "id": "377", "imageDescription": "Welcome to Winchester City Mill, Hampshire, gateway to the South Downs", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736243612-welcometocitymill.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736243612-welcometocitymill.jpg", "openingTimeStatus": "Open today", "subTitle": "Winchester, Hampshire", "title": "Winchester City Mill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/winchester-city-mill" }, "geometry": { "type": "Point", "coordinates": [ -1.30771, 51.062 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "An unfinished masterpiece", "id": "378", "imageDescription": "Bluebells at Winkworth", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431805320540-20170418-winkworthbluebells2-carolsheppard-82resizedforweb.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431805320540-20170418-winkworthbluebells2-carolsheppard-82resizedforweb.jpg", "openingTimeStatus": "Open today", "subTitle": "Godalming, Surrey", "title": "Winkworth Arboretum", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/winkworth-arboretum" }, "geometry": { "type": "Point", "coordinates": [ -0.58113, 51.1614 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Canoeing and kayaking, Climbing, Cycling, Dog walking, Swimming, Walking", "cmsRegion": "RegionNorthWest", "description": "Spectacular and varied lakeland landscape around Derwent Water", "id": "38", "imageDescription": "Herdwick and her lamb", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431779191104-img1048-cropped.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431779191104-img1048-cropped.jpg", "openingTimeStatus": "Open today", "subTitle": "near Keswick, Cumbria", "title": "Borrowdale and Derwent Water", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/borrowdale-and-derwent-water" }, "geometry": { "type": "Point", "coordinates": [ -3.148592, 54.523286 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "The world changed here", "id": "381", "imageDescription": "The house at Woolsthorpe Manor on a sunny spring day", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431748680834-wools5colinn.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431748680834-wools5colinn.jpg", "openingTimeStatus": "Partially open today", "subTitle": "near Grantham, Lincolnshire", "title": "Woolsthorpe Manor", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/woolsthorpe-manor" }, "geometry": { "type": "Point", "coordinates": [ -0.62633, 52.807598 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking", "cmsRegion": "RegionNorthWest", "description": "Step back to the 1770s at William Wordsworth’s childhood home", "id": "382", "imageDescription": "Apple blossom in Wordsworth House garden", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431749199515-wordsworth-house-may-morning.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431749199515-wordsworth-house-may-morning.jpg", "openingTimeStatus": "Open today", "subTitle": "Cockermouth, Cumbria", "title": "Wordsworth House and Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/wordsworth-house" }, "geometry": { "type": "Point", "coordinates": [ -3.36678, 54.663601 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "Beautiful secluded wooded valley", "id": "383", "imageDescription": "Wild garlic carpets the woodland floor", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431803853183-wildgarlic1530171400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431803853183-wildgarlic1530171400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "near Stonehouse, Gloucestershire", "title": "Woodchester Park", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/woodchester-park" }, "geometry": { "type": "Point", "coordinates": [ -2.28751, 51.710999 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "Varied coastal area with natural history and industrial archaeology interest", "id": "384", "imageDescription": "View across Robin Hood's Bay from Ravenscar at low tide", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431745570675-robin-hoods-bay-from-ravenscar-joe-cornish-112299-resized-for-web.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431745570675-robin-hoods-bay-from-ravenscar-joe-cornish-112299-resized-for-web.jpg", "openingTimeStatus": "Open today", "subTitle": "near Ravenscar, North Yorkshire", "title": "Yorkshire Coast", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/yorkshire-coast" }, "geometry": { "type": "Point", "coordinates": [ -0.48725, 54.400398 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Fishing, Walking", "cmsRegion": "RegionEastofEngland", "description": "Picturesque watermill with working waterwheel", "id": "39", "imageDescription": "Bourne Mill", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431785086248-bourne-mill-1.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431785086248-bourne-mill-1.jpg", "openingTimeStatus": "Closed today", "subTitle": "Colchester, Essex", "title": "Bourne Mill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/bourne-mill" }, "geometry": { "type": "Point", "coordinates": [ 0.91378, 51.875999 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking", "cmsRegion": "RegionLondonSouthEast", "description": "A rare survival of a seventeenth-century duck decoy ", "id": "40", "imageDescription": "Boarstall Duck Decoy Home Pipe ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431745077062-home-pipe.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431745077062-home-pipe.jpg", "openingTimeStatus": "Closed today", "subTitle": "near Bicester, Buckinghamshire", "title": "Boarstall Duck Decoy", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/boarstall-duck-decoy" }, "geometry": { "type": "Point", "coordinates": [ -1.09014, 51.828999 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "A place of great theatre and drama", "id": "4032", "imageDescription": "The Central Hall", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431774413571-sdh-main-john-hammond.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431774413571-sdh-main-john-hammond.jpg", "openingTimeStatus": "Open today", "subTitle": "Seaton Sluice, Northumberland", "title": "Seaton Delaval Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/seaton-delaval-hall" }, "geometry": { "type": "Point", "coordinates": [ -1.496508, 55.082846 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionNorthernIreland", "description": "Carrick-a-Rede Rope Bridge was first erected by salmon fishermen in 1755", "id": "407", "imageDescription": "Picture shows children crossing the bridge at Carrick-a-Rede", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431756802279-carchildrencrossbridgeresize.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431756802279-carchildrencrossbridgeresize.jpg", "openingTimeStatus": "Open today", "subTitle": "Ballintoy, County Antrim", "title": "Carrick-a-Rede", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/carrick-a-rede" }, "geometry": { "type": "Point", "coordinates": [ -6.3328, 55.236698 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Fourteenth-century moated gatehouse and beautiful gardens", "id": "41", "imageDescription": "Looking through trees of leafly green to a grey stoned Boarstall Tower rising above the water ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431745158357-boarstall-for-web.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431745158357-boarstall-for-web.jpg", "openingTimeStatus": "Closed today", "subTitle": "near Bicester, Buckinghamshire", "title": "Boarstall Tower", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/boarstall-tower" }, "geometry": { "type": "Point", "coordinates": [ -1.09333, 51.821301 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Archery", "cmsRegion": "RegionLondonSouthEast", "description": "Archetypal 14th century moated castle with ruined interior - a glimpse of medieval splendour", "id": "42", "imageDescription": "Postern view of Bodiam Castle in East Sussex with the May blossom in flower", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431753766343-bodiamcastleposternmay1400x788lindahauff.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431753766343-bodiamcastleposternmay1400x788lindahauff.jpg", "openingTimeStatus": "Open today", "subTitle": "near Robertsbridge, East Sussex", "title": "Bodiam Castle", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/bodiam-castle" }, "geometry": { "type": "Point", "coordinates": [ 0.54741, 51.000099 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "A sheltered natural inlet with an unspoilt harbour village", "id": "43", "imageDescription": "Boscastle harbour in the spring", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431745776550-boscastle-lp.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431745776550-boscastle-lp.jpg", "openingTimeStatus": "Open today", "subTitle": "Cornwall", "title": "Boscastle", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/boscastle" }, "geometry": { "type": "Point", "coordinates": [ -4.695761, 50.690974 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Box Hill - so much to explore", "id": "44", "imageDescription": "The view from Donkey Green on Box Hill looking south, Surrey", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/happyvalleycircularwalkboxhill957402.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/happyvalleycircularwalkboxhill957402.jpg", "openingTimeStatus": "Open today", "subTitle": "Tadworth, Surrey", "title": "Box Hill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/box-hill" }, "geometry": { "type": "Point", "coordinates": [ -0.3101, 51.248901 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionYorkshireNorthEast", "description": "17th-century farmhouse in beautiful Coverdale", "id": "45", "imageDescription": "Braithwaite Hall in the Yorkshire Dales", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736696626-braithwaitehallyorkshiredales1381externalhouseinwinter.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736696626-braithwaitehallyorkshiredales1381externalhouseinwinter.jpg", "subTitle": "Leyburn, North Yorkshire", "title": "Braithwaite Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/braithwaite-hall" }, "geometry": { "type": "Point", "coordinates": [ -1.81933, 54.2668 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionEastofEngland", "description": "A remote island in the Norfolk Broads", "id": "4503", "imageDescription": "Several cows looking at the camera standing in a grassy field", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/heigham-cowsweb.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/heigham-cowsweb.jpg", "subTitle": "Martham, Norfolk", "title": "Heigham Holmes", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/heigham-holmes" }, "geometry": { "type": "Point", "coordinates": [ 1.6069, 52.7241 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "An extraordinary home and an intriguing work of art", "id": "4504", "imageDescription": "The front sitting room mantelpiece at 575 Wandsworth Road, London", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431733754332-575wandsworthroadkd010sittingroommantelpiecedonotuse.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431733754332-575wandsworthroadkd010sittingroommantelpiecedonotuse.jpg", "openingTimeStatus": "Closed today", "subTitle": "London, London", "title": "575 Wandsworth Road", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/575-wandsworth-road" }, "geometry": { "type": "Point", "coordinates": [ -0.140628, 51.46979 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionEastofEngland", "description": "The National Trust outdoor activity and learning Centre on the Norfolk Coast", "id": "4505", "imageDescription": "Brick and flint built cottage that comprises of Brancaster Activity Centre", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431734109025-4h8a2359newweb.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431734109025-4h8a2359newweb.jpg", "subTitle": "Brancaster Staithe, Norfolk", "title": "Brancaster Activity Centre", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/brancaster-activity-centre" }, "geometry": { "type": "Point", "coordinates": [ 0.666567, 52.966641 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionEastofEngland", "description": "The Studio aims to provide a complete conservation service for historic textiles", "id": "4507", "imageDescription": "Interior of the National Trust Textile Conservation Studio", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/166316.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/166316.jpg", "openingTimeStatus": "Open today", "subTitle": "Norfolk", "title": "The Textile Conservation Studio", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/the-textile-conservation-studio" }, "geometry": { "type": "Point", "coordinates": [ 1.191523, 52.80089 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "The remains of one of England's largest 13th-century castles", "id": "4508", "imageDescription": "View Overlooking Remains Duffield Castle", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/viewoverlookingremainduffield-castle897194.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/viewoverlookingremainduffield-castle897194.jpg", "openingTimeStatus": "Open today", "subTitle": "Duffield, Derbyshire", "title": "Duffield Castle", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/duffield-castle" }, "geometry": { "type": "Point", "coordinates": [ -1.4892, 52.9925 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Running, Walking", "cmsRegion": "RegionMidlands", "description": "Heather-clad moors of Kinder to the gritstone tors of Derwent Edge", "id": "4509", "imageDescription": "mother smiling and baby on her back on Mam Tor, hills in background", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431775168439-mam-tor-mother-and-baby-nti1268515.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431775168439-mam-tor-mother-and-baby-nti1268515.jpg", "subTitle": "Derbyshire", "title": "Kinder, Edale and the Dark Peak", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/kinder-edale-and-the-dark-peak" }, "geometry": { "type": "Point", "coordinates": [ -1.8156, 53.3458 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionMidlands", "description": "White Peak Estate, including Ilam Park, Dovedale and Hamps and Manifold Valleys", "id": "4510", "imageDescription": "Lambs in Ilam Park", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431777397520-lambs-in-ilam-park-by-hannah-colligan.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431777397520-lambs-in-ilam-park-by-hannah-colligan.jpg", "openingTimeStatus": "Open today", "subTitle": "Ashbourne, Derbyshire", "title": "Ilam Park, Dovedale and the White Peak", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/ilam-park-dovedale-and-the-white-peak" }, "geometry": { "type": "Point", "coordinates": [ -1.805627, 53.052624 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Caving, Climbing, Cycling, Dog walking, Running, Walking", "cmsRegion": "RegionSouthWest", "description": "Discover the heights of Somerset's famous Cheddar Gorge", "id": "4512", "imageDescription": "The view from the gorge walk ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431803261686-cheddarwalk-johnmiller-resize.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431803261686-cheddarwalk-johnmiller-resize.jpg", "openingTimeStatus": "Open today", "subTitle": "Cheddar, Somerset", "title": "Cheddar Gorge", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/cheddar-gorge" }, "geometry": { "type": "Point", "coordinates": [ -2.764218, 51.28534 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "Cotswold countryside within an Area of Outstanding Natural Beauty", "id": "4515", "imageDescription": "Take time to enjoy the view", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431786173602-crickleyhillviewbb1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431786173602-crickleyhillviewbb1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Birdlip, Gloucestershire", "title": "Crickley Hill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/crickley-hill" }, "geometry": { "type": "Point", "coordinates": [ -2.103022, 51.847053 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "A Victorian fort gradually being restored and dramatic chalk cliffs, open downland and coastal views", "id": "4517", "imageDescription": "The entrance to Bembridge Fort, Isle of Wight", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737530264-entrancebembridgefort.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737530264-entrancebembridgefort.jpg", "openingTimeStatus": "Open today", "subTitle": "near Bembridge, Isle of Wight", "title": "Bembridge Fort and Downs", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/bembridge-fort-and-downs" }, "geometry": { "type": "Point", "coordinates": [ -1.11801, 50.671156 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionLondonSouthEast", "description": "The home of one of the most remarkable men of the 20th century", "id": "4521", "imageDescription": "Nuffield Place house with spring flowers blooming in front of it", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431772447448-np-spring-house-alexprain.jpg.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431772447448-np-spring-house-alexprain.jpg.jpg", "openingTimeStatus": "Partially open today", "subTitle": "near Henley-on-Thames, Oxfordshire", "title": "Nuffield Place", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/nuffield-place" }, "geometry": { "type": "Point", "coordinates": [ -1.02099, 51.585772 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Canoeing and kayaking, Dog walking, Walking", "cmsRegion": "RegionWales", "description": "A place shaped by the local community, Tredegar House and its surrounding gardens and parkland stand proudly at the heart of Newport’s heritage.", "id": "4524", "imageDescription": "A bunch of daffodils in the Cedar Garden with the house in the background", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431804028527-img5386webedit.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431804028527-img5386webedit.jpg", "openingTimeStatus": "Open today", "subTitle": "Newport", "title": "Tredegar House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/tredegar-house" }, "geometry": { "type": "Point", "coordinates": [ -3.028106, 51.561601 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Walking", "cmsRegion": "RegionSouthWest", "description": "The impressive headland at Croyde with crashing waves and dramatic cliffs", "id": "4528", "imageDescription": "View over Croyde Bay from Baggy Point", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431783588430-img6502resized1400788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431783588430-img6502resized1400788.jpg", "openingTimeStatus": "Open today", "subTitle": "Croyde, Devon", "title": "Baggy Point", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/baggy-point" }, "geometry": { "type": "Point", "coordinates": [ -4.245381, 51.136017 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "Preserved derelict mill on the Dowles Brook in the Wyre Forest", "id": "4529", "imageDescription": "Knowles Mill behind the trees in summer", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/knowles-mill-summer.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/knowles-mill-summer.jpg", "openingTimeStatus": "Open today", "subTitle": "Bewdley, Worcestershire", "title": "Knowles Mill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/knowles-mill" }, "geometry": { "type": "Point", "coordinates": [ -2.351114, 52.386007 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Outstanding 400-year-old Cotswold market hall", "id": "4550", "imageDescription": "The Market Hall in Chipping Campden", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/10919-market-hall-chipping-campden.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/10919-market-hall-chipping-campden.jpg", "openingTimeStatus": "Open today", "subTitle": "Chipping Campden, Gloucestershire", "title": "Market Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/market-hall" }, "geometry": { "type": "Point", "coordinates": [ -1.780686, 52.050686 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionWales", "description": "Award-winning centre for educational and corporate needs as well as family holidays ", "id": "4552", "imageDescription": "Exterior view of Stackpole Outdoor Learning Centre", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736253740-973080---national-trust-images-john-millar.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736253740-973080---national-trust-images-john-millar.jpg", "openingTimeStatus": "Open today", "subTitle": "near Pembroke, Pembrokeshire", "title": "Stackpole Outdoor Learning Centre", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/stackpole-outdoor-learning-centre" }, "geometry": { "type": "Point", "coordinates": [ -4.92739, 51.622639 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Orienteering, Walking", "cmsRegion": "RegionNorthWest", "description": "Majestic views and peaceful walks in beautiful countryside", "id": "4554", "imageDescription": "early morning view of Tarn Hows looking north west", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431762721792-tarn-hows-paul-harris-.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431762721792-tarn-hows-paul-harris-.jpg", "openingTimeStatus": "Open today", "subTitle": "near Coniston, Cumbria", "title": "Tarn Hows and Coniston", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/tarn-hows-and-coniston" }, "geometry": { "type": "Point", "coordinates": [ -3.038192, 54.387268 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Surfing, Walking", "cmsRegion": "RegionEastofEngland", "description": "Iconic North Norfolk coastline famous for wildlife and sandy beaches", "id": "46", "imageDescription": "Brancaster Staithe Harbour", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431738132168-brancaster-staithe-harbour-5.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431738132168-brancaster-staithe-harbour-5.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Brancaster, Norfolk", "title": "Brancaster Estate", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/brancaster-estate" }, "geometry": { "type": "Point", "coordinates": [ 0.66877, 52.9669 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Large medieval threshing barn", "id": "47", "imageDescription": "Entrance to Bredon barn", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736486203-20151021-bredon-barn.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736486203-20151021-bredon-barn.jpg", "openingTimeStatus": "Open today", "subTitle": "near Tewkesbury, Worcestershire", "title": "Bredon Barn", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/bredon-barn" }, "geometry": { "type": "Point", "coordinates": [ -2.11954, 52.030201 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Orienteering, Walking", "cmsRegion": "RegionNorthWest", "description": "Dramatic red sandstone escarpment, with impressive views", "id": "473", "imageDescription": "View from the edge of the escarpment at Alderley Edge towards the Cheshire Plain", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431776476946-116380-alderley-edge-david-noton-web-crop.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431776476946-116380-alderley-edge-david-noton-web-crop.jpg", "openingTimeStatus": "Open today", "subTitle": "Macclesfield, Cheshire", "title": "Alderley Edge and Cheshire Countryside", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/alderley-edge-and-cheshire-countryside" }, "geometry": { "type": "Point", "coordinates": [ -2.21235, 53.296501 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Delightful medieval manor house, set in woodland and meadows", "id": "48", "imageDescription": "The Buttery with a wooden table and dresser, and the original rough limeash concrete floor at Bradley Manor, a medieval house at Newton Abbot, Devon", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736688209-bradleymanor153484.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736688209-bradleymanor153484.jpg", "openingTimeStatus": "Open today", "subTitle": "Newton Abbot, Devon", "title": "Bradley", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/bradley" }, "geometry": { "type": "Point", "coordinates": [ -3.62486, 50.5256 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Swimming, Walking", "cmsRegion": "RegionSouthWest", "description": "Tucked away in a valley that runs down to a beach on the famous Jurassic Coast, there is a timeless magic about this old village", "id": "49", "imageDescription": "Unspoilt pebble beach at Branscombe", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431801106171-ericmcdonaldwhiteboatonbeachedevonbranscombe.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431801106171-ericmcdonaldwhiteboatonbeachedevonbranscombe.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Seaton, Devon", "title": "Branscombe", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/branscombe" }, "geometry": { "type": "Point", "coordinates": [ -3.13646, 50.6922 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionNorthWest", "description": "Delightful garden renowned for its herbs and fruit orchards", "id": "5", "imageDescription": "View of Acorn Bank house.", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/acornbankviewedfromgrasslevel.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/acornbankviewedfromgrasslevel.jpg", "openingTimeStatus": "Open today", "subTitle": "near Penrith, Cumbria", "title": "Acorn Bank", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/acorn-bank" }, "geometry": { "type": "Point", "coordinates": [ -2.59228, 54.646301 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Iron Age hill fort and downland with views across the Marshwood Vale to the coast", "id": "5015", "imageDescription": " a far reaching view across green countryside from the ramparts of Eggardon Hill", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431739363523-eggardonviewfromrampartsnt.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431739363523-eggardonviewfromrampartsnt.jpg", "openingTimeStatus": "Open today", "subTitle": "Bridport, Dorset", "title": "Eggardon Hill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/eggardon-hill" }, "geometry": { "type": "Point", "coordinates": [ -2.644877, 50.748316 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionNorthernIreland", "description": "A haven on the east coast of County Antrim", "id": "5029", "imageDescription": "Coastline at Islandmagee, County Antrim", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/islandmageecoast1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/islandmageecoast1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Larne, County Antrim", "title": "Islandmagee", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/islandmagee" }, "geometry": { "type": "Point", "coordinates": [ -5.700066, 54.816005 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionNorthernIreland", "description": "Close to the city, in the heart of the country", "id": "5036", "imageDescription": "Spring at Minnowburn Bridge, County Down", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431746386057-minnowburnbridgespring1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431746386057-minnowburnbridgespring1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Belfast, County Down", "title": "Minnowburn", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/minnowburn" }, "geometry": { "type": "Point", "coordinates": [ -5.9526157, 54.548434 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionNorthernIreland", "description": "The most famous of the mountains in the country", "id": "5037", "imageDescription": "The Mournes, Glen River, National Trust", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431738386848-mournes---brian-canning.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431738386848-mournes---brian-canning.jpg", "openingTimeStatus": "Open today", "subTitle": "near Newcastle, County Down", "title": "The Mournes", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/the-mournes" }, "geometry": { "type": "Point", "coordinates": [ -6.083736, 54.171137 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Canoeing and kayaking, Fishing, Walking", "cmsRegion": "RegionNorthernIreland", "description": "A most beautiful landscape of international importance", "id": "5045", "imageDescription": "Disused clay pits at Glastry ponds, County Down", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431756304013-disusedclaypitsatglastryponds.1055100cnationaltrustimages.davidarmstrongresized1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431756304013-disusedclaypitsatglastryponds.1055100cnationaltrustimages.davidarmstrongresized1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Strangford, County Down", "title": "Strangford Lough", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/strangford-lough" }, "geometry": { "type": "Point", "coordinates": [ -5.579002, 54.373741 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionNorthernIreland", "description": "Beautiful stretch of golden sand on the North Antrim coast", "id": "5048", "imageDescription": "White Park Bay, County Antrim in Northern Ireland", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431734383647-seaweed-on-the-rocks-at-white-park-bay.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431734383647-seaweed-on-the-rocks-at-white-park-bay.jpg", "openingTimeStatus": "Open today", "subTitle": "County Antrim", "title": "White Park Bay", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/white-park-bay" }, "geometry": { "type": "Point", "coordinates": [ -6.4028506, 55.230638 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Walking", "cmsRegion": "RegionWales", "description": "A wild and ancient landscape with far-reaching views", "id": "5051", "imageDescription": "A view along a stream running through Abergwesyn Commons, Powys", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737397216-abergwesyn-commons-stream-into-valley.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737397216-abergwesyn-commons-stream-into-valley.jpg", "openingTimeStatus": "Open today", "subTitle": "Powys", "title": "Abergwesyn Common", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/abergwesyn-common" }, "geometry": { "type": "Point", "coordinates": [ -3.676753, 52.160639 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Caving, Surfing, Walking", "cmsRegion": "RegionSouthWest", "description": "A classic north Cornish beach with a sweep of golden sand and a towering dune system", "id": "5053", "imageDescription": "Holywell Beach", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/holywell-beach-mike-simmondsc.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/holywell-beach-mike-simmondsc.jpg", "openingTimeStatus": "Open today", "subTitle": "near Newquay, Cornwall", "title": "Holywell", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/holywell" }, "geometry": { "type": "Point", "coordinates": [ -5.1424974, 50.385996 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Geocaching, Walking", "cmsRegion": "RegionSouthWest", "description": "Wide open space overlooking the World Heritage City of Bath", "id": "5055", "imageDescription": "View of Bath from the Skyline on Bathwick Fields", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431777107067-bath-skylinespringcity-viewchris-lacey1147383web.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431777107067-bath-skylinespringcity-viewchris-lacey1147383web.jpg", "openingTimeStatus": "Open today", "subTitle": "South East of the city of Bath, Bath and NE Somerset", "title": "Bath Skyline", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/bath-skyline" }, "geometry": { "type": "Point", "coordinates": [ -2.345693, 51.3808819 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Seventeenth-century weavers' cottages and water meadow set in the Cotswold village of Bibury", "id": "5059", "imageDescription": "Arlington Row, Bibury", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431747012765-arlington-row----mike-henton---resized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431747012765-arlington-row----mike-henton---resized.jpg", "openingTimeStatus": "Open today", "subTitle": "Gloucestershire", "title": "Bibury", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/bibury" }, "geometry": { "type": "Point", "coordinates": [ -1.833845, 51.759018 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Horse riding, Running, Walking", "cmsRegion": "RegionSouthWest", "description": "Miles of unspoilt coastline that inspired Rudyard Kipling", "id": "5060", "imageDescription": "Part of the beach at Bideford Bay looking west towards Hartland Point, Devon", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/bideford-bay-and-hartland-12198-rocky-beach-header-image-1.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/bideford-bay-and-hartland-12198-rocky-beach-header-image-1.jpg", "openingTimeStatus": "Open today", "subTitle": "Hartland nr Bideford, Devon", "title": "Bideford Bay and Hartland", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/bideford-bay-and-hartland" }, "geometry": { "type": "Point", "coordinates": [ -4.443378, 51.013201 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Unspoilt beach, farmland and cliffs on the Jurassic Coast", "id": "5062", "imageDescription": "Cliff views across Ringstead Bay from the beach", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431774184596-viewofcliffsfromeastringsteadbayntijohnmiller.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431774184596-viewofcliffsfromeastringsteadbayntijohnmiller.jpg", "openingTimeStatus": "Open today", "subTitle": "near Weymouth, Dorset", "title": "Ringstead Bay", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/ringstead-bay" }, "geometry": { "type": "Point", "coordinates": [ -2.35342, 50.630861 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Paths wind through ancient oak woodland with sunny glades", "id": "5063", "imageDescription": "The arrival of spring in Borthwood Copse brings new growth to a coppiced area", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431768491351-borthwoodcopsespring2017.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431768491351-borthwoodcopsespring2017.jpg", "openingTimeStatus": "Open today", "subTitle": "near Winford, Isle of Wight", "title": "Borthwood Copse", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/borthwood-copse" }, "geometry": { "type": "Point", "coordinates": [ -1.199403, 50.656464 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionWales", "description": "Featuring the iconic skyline of Pen y Fan, Corn Du and Cribyn", "id": "5067", "imageDescription": "Footpath from Storey Arms to Corn Du in the central Brecon Beacons, Powys", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806749290-smj5603.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806749290-smj5603.jpg", "openingTimeStatus": "Open today", "subTitle": "Libanus, Powys", "title": "Brecon Beacons", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/brecon-beacons" }, "geometry": { "type": "Point", "coordinates": [ -3.473123, 51.869149 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Iron Age hill fort on the ridge above the village of Tickenham in North Somerset", "id": "5070", "imageDescription": "Early Purple Orchids and Bluebells growing under an Ash tree", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431777093140-orchids.jamesaustrums.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431777093140-orchids.jamesaustrums.jpg", "openingTimeStatus": "Open today", "subTitle": "Nr Clevedon, North Somerset", "title": "Cadbury Camp", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/cadbury-camp" }, "geometry": { "type": "Point", "coordinates": [ -2.78711, 51.4479 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Ancient naked figure sculpted into the chalk hillside above Cerne Abbas", "id": "5072", "imageDescription": "Looking down on the naked chalk figure of the Cerne Giant on the grassy hill", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431755490397-cernegiantbirdseyeonentiraygaffney.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431755490397-cernegiantbirdseyeonentiraygaffney.jpg", "openingTimeStatus": "Open today", "subTitle": "Cerne Abbas, Dorset", "title": "Cerne Giant", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/cerne-giant" }, "geometry": { "type": "Point", "coordinates": [ -2.475441, 50.812979 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "An impressive flank of open downland", "id": "5073", "imageDescription": "The flank of Chillerton Down lit up by spring sunshine", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431798044992-chillertondown009.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431798044992-chillertondown009.jpg", "openingTimeStatus": "Open today", "subTitle": "Isle of Wight", "title": "Chillerton Down", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/chillerton-down" }, "geometry": { "type": "Point", "coordinates": [ -1.321445, 50.647742 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Surfing, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "One of the island's favourite beaches and biggest expanses of open downland", "id": "5078", "imageDescription": "Purple heads of viper's bugloss line a path up Compton Down", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431798045285-comptonbayanddownsbrook010.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431798045285-comptonbayanddownsbrook010.jpg", "openingTimeStatus": "Open today", "subTitle": "Isle of Wight", "title": "Compton Bay and Downs", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/compton-bay-and-downs" }, "geometry": { "type": "Point", "coordinates": [ -1.463784, 50.655885 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "A grand Parkland abundant in wildlife and with over 900 years of history", "id": "5082", "imageDescription": "An ancient tree in Dunsland park", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431780065702-dunsland-tree-resized-1400-788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431780065702-dunsland-tree-resized-1400-788.jpg", "openingTimeStatus": "Open today", "subTitle": "Holemoor, Nr Holsworthy, Devon", "title": "Dunsland", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/dunsland" }, "geometry": { "type": "Point", "coordinates": [ -4.258894, 50.825348 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Orienteering, Walking", "cmsRegion": "RegionSouthWest", "description": "Stunning coastline and England's only natural World Heritage Site", "id": "5090", "imageDescription": "Golden Cap seen from the sea on a sunny evening in August", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431758711636-goldencapfromseantzs.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431758711636-goldencapfromseantzs.jpg", "openingTimeStatus": "Open today", "subTitle": "Bridport, Dorset", "title": "Golden Cap", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/golden-cap" }, "geometry": { "type": "Point", "coordinates": [ -2.874292, 50.73693 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "A superb Cotswold landscape of mixed woodland and open grassland with extensive views", "id": "5091", "imageDescription": "The view is always worth the walk", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431786173826-haresfieldbeaconbb21400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431786173826-haresfieldbeaconbb21400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Stroud, Gloucestershire", "title": "Haresfield Beacon and Standish Wood", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/haresfield-beacon-and-standish-wood" }, "geometry": { "type": "Point", "coordinates": [ -2.26233, 51.7784 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "A natural amphitheatre on a spur of the Cotswolds, with views over the Vale of Evesham", "id": "5095", "imageDescription": "The views from the top stretch for miles", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431788559533-dovershillview21400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431788559533-dovershillview21400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Gloucestershire", "title": "Dover's Hill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/dovers-hill" }, "geometry": { "type": "Point", "coordinates": [ -1.803076, 52.053722 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionWales", "description": "A landscape untouched by a generation of progress", "id": "5098", "imageDescription": "The meadow at Lanlay, Vale of Glamorgan, Wales", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737730473-lanlay-meadowscape.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737730473-lanlay-meadowscape.jpg", "openingTimeStatus": "Open today", "subTitle": "Peterston-super-Ely, Vale of Glamorgan", "title": "Lanlay", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/lanlay" }, "geometry": { "type": "Point", "coordinates": [ -3.32754, 51.47518 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionYorkshireNorthEast", "description": "Moorland nature reserve with unusual and unique rock formations", "id": "51", "imageDescription": "The Pepperpot in the foreground with views across moorland", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431746554158-bridestones-pepperpot-wide-zoe-frank-web-resized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431746554158-bridestones-pepperpot-wide-zoe-frank-web-resized.jpg", "openingTimeStatus": "Open today", "subTitle": "Pickering, North Yorkshire", "title": "Bridestones, Crosscliff and Blakey Topping", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/bridestones-crosscliff-and-blakey-topping" }, "geometry": { "type": "Point", "coordinates": [ -0.66015, 54.302502 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Walking", "cmsRegion": "RegionSouthWest", "description": "A wilderness of tranquility set against Brunel's famous suspension bridge", "id": "5100", "imageDescription": "A view of Clifton Suspension bridge from Leigh Woods in Winter", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431734524587-bridge-dec-1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431734524587-bridge-dec-1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "near Bristol, Bristol", "title": "Leigh Woods", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/leigh-woods" }, "geometry": { "type": "Point", "coordinates": [ -2.641826, 51.454221 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Walk in the footsteps of previous generations along these ancient hill forts", "id": "5103", "imageDescription": "The view from Lambert's Castle on a sunny day with leafy green trees in the foreground", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431756686743-viewfromlambertscastlentidavidsellman.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431756686743-viewfromlambertscastlentidavidsellman.jpg", "openingTimeStatus": "Open today", "subTitle": "Bridport, Dorset", "title": "Lambert's and Coney's Castle", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/lamberts-and-coneys-castle" }, "geometry": { "type": "Point", "coordinates": [ -2.902129, 50.78438 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionWales", "description": "Escape to the Marloes Peninsula, a hidden gem nestled on the very western edge of Pembrokeshire. Stunning seascapes and a wealth of wildlife are waiting to greet you.", "id": "5105", "imageDescription": "Clifftop view of the Marloes Peninsula", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736538223-svw-c80-1112-0121---crown-copyright-2015-visit-wales.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736538223-svw-c80-1112-0121---crown-copyright-2015-visit-wales.jpg", "openingTimeStatus": "Open today", "subTitle": "Pembrokeshire", "title": "Marloes Sands and Mere", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/marloes-sands-and-mere" }, "geometry": { "type": "Point", "coordinates": [ -5.218818, 51.726572 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "Wild and open landmark crowned with a distinctive row of pine trees", "id": "5106", "imageDescription": "The views are always worth the walk to the summit", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431794165198-mayhillsummit1nov1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431794165198-mayhillsummit1nov1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Near Huntley, Gloucestershire", "title": "May Hill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/may-hill" }, "geometry": { "type": "Point", "coordinates": [ -2.4431175, 51.888107 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "Rolling hills and open spaces above the Stroud Valleys and Severn estuary", "id": "5107", "imageDescription": "One of the best ways to enjoy the countryside is on foot", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431785497902-20151125-walkers-.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431785497902-20151125-walkers-.jpg", "openingTimeStatus": "Open today", "subTitle": "Gloucestershire", "title": "Minchinhampton and Rodborough Commons", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/minchinhampton-and-rodborough-commons" }, "geometry": { "type": "Point", "coordinates": [ -2.211243, 51.707547 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Running, Surfing, Walking", "cmsRegion": "RegionSouthWest", "description": "Spectacular coastline of cliff, coves, beaches, dunes and headlands", "id": "5109", "imageDescription": "Cows walking in Woolacombe dunes", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431787265065-picture11400788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431787265065-picture11400788.jpg", "openingTimeStatus": "Open today", "subTitle": "Woolacombe, Devon", "title": "Woolacombe", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/woolacombe" }, "geometry": { "type": "Point", "coordinates": [ -4.167389, 51.178733 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Orienteering, Running, Walking", "cmsRegion": "RegionSouthWest", "description": "A peaceful retreat set within the beautiful Devon countryside", "id": "5116", "imageDescription": "View down over parkland, Parke, Devon", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431778056601-viewoverparklandmikeboddy.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431778056601-viewoverparklandmikeboddy.jpg", "openingTimeStatus": "Open today", "subTitle": "near Bovey Tracey, Devon", "title": "Parke", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/parke" }, "geometry": { "type": "Point", "coordinates": [ -3.689714, 50.594858 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Surfing, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Walk, go rockpooling or simply relax in the sun with views of the Seven Sisters cliffs", "id": "5125", "imageDescription": "Yellow and golden sunset views over the Seven Sisters cliffs", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735563872-1159722nti-arnhel-de-serraseven-sisters-clifss-from-birling-gap-at-sunset.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735563872-1159722nti-arnhel-de-serraseven-sisters-clifss-from-birling-gap-at-sunset.jpg", "openingTimeStatus": "Open today", "subTitle": "near Eastbourne, East Sussex", "title": "Birling Gap and the Seven Sisters", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/birling-gap-and-the-seven-sisters" }, "geometry": { "type": "Point", "coordinates": [ 0.201166, 50.742905 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Running, Walking", "cmsRegion": "RegionWales", "description": "Beautiful and breathtaking views on the Gower peninsula", "id": "5131", "imageDescription": "Stunning views of the beach from the top of Rhossili Down, Gower", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431784208869-nti-1261730-copyright-johnmillar-1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431784208869-nti-1261730-copyright-johnmillar-1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Rhossili, Swansea", "title": "Rhossili and South Gower Coast", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/rhossili-and-south-gower-coast" }, "geometry": { "type": "Point", "coordinates": [ -4.286882, 51.568525 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "A wild rocky coast with jutting cliffs, a windswept down and sheltered wooded valley", "id": "5132", "imageDescription": "Seen from St Catherine's hill, the ridge leading to the Hoy Monument stretches out in front", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431745856831-stcatherineshoyridge.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431745856831-stcatherineshoyridge.jpg", "openingTimeStatus": "Open today", "subTitle": "Blackgang, Isle of Wight", "title": "St Catherine's Down and Knowles Farm", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/st-catherines-down-and-knowles-farm" }, "geometry": { "type": "Point", "coordinates": [ -1.309354, 50.587715 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionWales", "description": "A colourful coastline with heaps of history, this pretty peninsula’s been a cultural hotspot for thousands of years. Discover the area’s ancestry, from Celtic life to Wales’ patron saint.", "id": "5133", "imageDescription": "Coastal view towards Carn Llidi on St David's Head, from Pen Beri rock", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736586997-40418---national-trust-images-joe-cornish.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736586997-40418---national-trust-images-joe-cornish.jpg", "openingTimeStatus": "Open today", "subTitle": "St David's Peninsula, Pembrokeshire", "title": "St David's Peninsula", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/st-davids-peninsula" }, "geometry": { "type": "Point", "coordinates": [ -5.26617, 51.880868 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Beautiful open downland,sheer chalk cliffs and dramatic sea views", "id": "5141", "imageDescription": "A bright spring morning with mist over the Solent and bright yellow gorse on Tennyson Down", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431768496433-needlestennysondownspring2017.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431768496433-needlestennysondownspring2017.jpg", "openingTimeStatus": "Open today", "subTitle": "Isle of Wight", "title": "The Needles Headland and Tennyson Down", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/the-needles-headland-and-tennyson-down" }, "geometry": { "type": "Point", "coordinates": [ -1.582573, 50.662126 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Climbing, Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Ancient rolling downland, home to an enigmatic chalk hill figure", "id": "5147", "imageDescription": "The countryside around White Horse Hill in spring", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431801455270-img7216resized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431801455270-img7216resized.jpg", "openingTimeStatus": "Open today", "subTitle": "Uffington, Oxfordshire", "title": "White Horse Hill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/white-horse-hill" }, "geometry": { "type": "Point", "coordinates": [ -1.567032, 51.577465 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Dramatic views from the highest point on the Island", "id": "5148", "imageDescription": "Three goats wander along the edge of Ventnor Downs,looking for things to eat", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431798046948-ventnordownsconservationgrazing001.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431798046948-ventnordownsconservationgrazing001.jpg", "openingTimeStatus": "Open today", "subTitle": "Wroxall, Isle of Wight", "title": "Ventnor Downs", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/ventnor-downs" }, "geometry": { "type": "Point", "coordinates": [ -1.197933, 50.603989 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionNorthWest", "description": "A national and internationally important wildlife area", "id": "5159", "imageDescription": "Scotts pines overlooking wildflowers in meadows & the River Kent's estuarial zone at Arnside Knott, Cumbria", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/124307.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/124307.jpg", "openingTimeStatus": "Open today", "subTitle": "near Arnside, Cumbria", "title": "Arnside and Silverdale", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/arnside-and-silverdale" }, "geometry": { "type": "Point", "coordinates": [ -2.844373, 54.189403 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionNorthWest", "description": "Beautiful sandstone headland renowned for its eighth-century chapel and rock hewn graves; a wonderful urban green space", "id": "5160", "imageDescription": "View of St Patrick's chapel", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736118413-124336.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736118413-124336.jpg", "openingTimeStatus": "Open today", "subTitle": "Lancashire", "title": "Heysham Coast", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/heysham-coast" }, "geometry": { "type": "Point", "coordinates": [ -2.902574, 54.046973 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionNorthWest", "description": "Outstanding dune habitat supporting a wealth of wildlife and with magnificent views", "id": "5162", "imageDescription": "Sandscale Haws dunes", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735642391-1132835.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735642391-1132835.jpg", "openingTimeStatus": "Open today", "subTitle": "near Barrow-in-Furness, Cumbria", "title": "Sandscale Haws National Nature Reserve", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/sandscale-haws-national-nature-reserve" }, "geometry": { "type": "Point", "coordinates": [ -3.225736, 54.170756 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking", "cmsRegion": "RegionSouthWest", "description": "Dramatic gorges and ancient woodland rising above the Somerset Levels", "id": "5177", "imageDescription": "The view from the Gorge walk ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431792030610-cheddargorge-johnmillar.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431792030610-cheddargorge-johnmillar.jpg", "openingTimeStatus": "Open today", "subTitle": "", "title": "Mendip Hills", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/mendip-hills" }, "geometry": { "type": "Point", "coordinates": [ -2.721176, 51.296276 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Geocaching, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "Explore dramatic moorland rock formations", "id": "52", "imageDescription": "Springtime at Brimham Rocks", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431802464026-web1332908.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431802464026-web1332908.jpg", "openingTimeStatus": "Open today", "subTitle": "Harrogate, North Yorkshire", "title": "Brimham Rocks", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/brimham-rocks" }, "geometry": { "type": "Point", "coordinates": [ -1.67613, 54.081699 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionWales", "description": "An old fishing village perched on the end of a thin ribbon of land stretching into the Irish Sea", "id": "5201", "imageDescription": "View of Porthdinllaen fishing village", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737243995-porthdinllaen-33688-joe-cornish-cropped.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737243995-porthdinllaen-33688-joe-cornish-cropped.jpg", "openingTimeStatus": "Open today", "subTitle": "Gwynedd", "title": "Porthdinllaen", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/porthdinllaen" }, "geometry": { "type": "Point", "coordinates": [ -4.567633, 52.942939 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionWales", "description": "Famous for its ‘whistling sands’ and glistening waters. ", "id": "5202", "imageDescription": "View across the beach at Porthor, Llŷn Peninsula", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431777190083-porthoe-resized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431777190083-porthoe-resized.jpg", "openingTimeStatus": "Open today", "subTitle": "Gwynedd", "title": "Porthor", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/porthor" }, "geometry": { "type": "Point", "coordinates": [ -4.7235739, 52.832284 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Rugged and captivating stretch of coast", "id": "5203", "imageDescription": "The Daymark as seen from the coast path", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431743200074-daymarkfromfrowardpointphilhemsley.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431743200074-daymarkfromfrowardpointphilhemsley.jpg", "openingTimeStatus": "Open today", "subTitle": "Devon", "title": "Brownstone and Coleton Camp", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/brownstone-and-coleton-camp" }, "geometry": { "type": "Point", "coordinates": [ -3.547343, 50.338755 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "A legendary beauty spot on the South Downs", "id": "5204", "imageDescription": "Sunset looking north from Devil's Dyke, South Downs, West Sussex ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/sunset-devils-dyke-181878.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/sunset-devils-dyke-181878.jpg", "openingTimeStatus": "Open today", "subTitle": "Nr Brighton, West Sussex", "title": "Devil's Dyke", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/devils-dyke" }, "geometry": { "type": "Point", "coordinates": [ -0.2123548, 50.8845954 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Rolling countryside with small fields and woodlands divided by hedges and sunken lanes", "id": "5205", "imageDescription": "The rollong fields and hedges of Failand", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431734549393-lower-failand-1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431734549393-lower-failand-1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Nr Bristol, Somerset", "title": "Failand", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/failand" }, "geometry": { "type": "Point", "coordinates": [ -2.695153, 51.459312 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Running, Walking", "cmsRegion": "RegionNorthWest", "description": "The loveliest spot that man hath ever found", "id": "5215", "imageDescription": "Allan Bank in Grasmere Cumbria", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431742321783-allan-bank-winter-c.cshaw.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431742321783-allan-bank-winter-c.cshaw.jpg", "openingTimeStatus": "Open today", "subTitle": "Ambleside, Cumbria", "title": "Allan Bank and Grasmere", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/allan-bank-and-grasmere" }, "geometry": { "type": "Point", "coordinates": [ -3.029754, 54.460536 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Climbing, Cycling, Dog walking, Running, Walking", "cmsRegion": "RegionNorthWest", "description": "An adventure playground of rugged slopes, craggy summits and a cracking pint ", "id": "5216", "imageDescription": "Sticklebarn ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431802759540-sticklebarn-02-webready.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431802759540-sticklebarn-02-webready.jpg", "openingTimeStatus": "Open today", "subTitle": "near Ambleside, Cumbria", "title": "Sticklebarn and The Langdales", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/sticklebarn-and-the-langdales" }, "geometry": { "type": "Point", "coordinates": [ -3.0902951, 54.44897 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionNorthWest", "description": "Remote medieval chapel", "id": "5220", "imageDescription": "The outside of Keld Chapel", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/keld-joan-bryden.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/keld-joan-bryden.jpg", "openingTimeStatus": "Open today", "subTitle": "Shap, Cumbria", "title": "Keld Chapel", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/keld-chapel" }, "geometry": { "type": "Point", "coordinates": [ -2.691178, 54.523859 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionNorthWest", "description": "Family fun and adventure in the heart of the English Lake District", "id": "5231", "imageDescription": "A woman sitting at Orrest Head during the sunset", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431733531755-ambleside-orrest-head-sunset-view.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431733531755-ambleside-orrest-head-sunset-view.jpg", "openingTimeStatus": "Open today", "subTitle": "near Windermere, Cumbria", "title": "Ambleside", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/ambleside" }, "geometry": { "type": "Point", "coordinates": [ -2.956934, 54.417745 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Geocaching, Horse riding, Walking", "cmsRegion": "RegionMidlands", "description": "A stunning countryside haven in the heart of the busy Midlands", "id": "5233", "imageDescription": "bluebells carpeting the floor in woodland", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431744441219-resized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431744441219-resized.jpg", "openingTimeStatus": "Open today", "subTitle": "near Romsley, Worcestershire", "title": "Clent Hills", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/clent-hills" }, "geometry": { "type": "Point", "coordinates": [ -2.089071, 52.424253 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionMidlands", "description": "A little wilderness of woodlands and heath in the heart of the Midlands", "id": "5234", "imageDescription": "The heath at Downs Banks", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431802668599-downsbanksheath.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431802668599-downsbanksheath.jpg", "openingTimeStatus": "Open today", "subTitle": "Near Stone, Staffordshire", "title": "Downs Banks", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/downs-banks" }, "geometry": { "type": "Point", "coordinates": [ -2.150201, 52.927613 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Running, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "A hidden hamlet nestled in the downs", "id": "5253", "imageDescription": "A misty morning at Saddlescombe Farm, seen from Newtimber Hill", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737796440-misty-morning-at-saddlescombe-farm-from-newtimber-hill-dsc3825-deirdre-huston.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737796440-misty-morning-at-saddlescombe-farm-from-newtimber-hill-dsc3825-deirdre-huston.jpg", "openingTimeStatus": "Open today", "subTitle": "near Brighton, West Sussex", "title": "Saddlescombe Farm and Newtimber Hill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/saddlescombe-farm-and-newtimber-hill" }, "geometry": { "type": "Point", "coordinates": [ -0.1943217, 50.888979 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Lichen-clad, ancient oak woodland valleys following the River Dart", "id": "5283", "imageDescription": "Wild daffodils at Hembury Woods, Devon", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431773604514-hemburywilddaffodilsnt.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431773604514-hemburywilddaffodilsnt.jpg", "openingTimeStatus": "Open today", "subTitle": "Hembury: SX730 680 \/ Holne: SX712 710", "title": "Hembury and Holne Woods", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hembury-and-holne-woods" }, "geometry": { "type": "Point", "coordinates": [ -3.795526, 50.499378 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionWales", "description": "Magnificent Edwardian gardens flowing from grand vistas to intimate spaces overlooked by a large mansion", "id": "5284", "imageDescription": "The panel garden at Dyffryn Gardens", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431747059479-dgg038.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431747059479-dgg038.jpg", "openingTimeStatus": "Open today", "subTitle": "St Nicholas, Vale of Glamorgan", "title": "Dyffryn Gardens", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/dyffryn-gardens" }, "geometry": { "type": "Point", "coordinates": [ -3.304228, 51.437563 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Towering sea cliffs and grasslands rich in wild flowers", "id": "5287", "imageDescription": "The swimming pool at Dancing Ledge in Purbeck", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431738232562-dancingledgepool01purbeckcountryside.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431738232562-dancingledgepool01purbeckcountryside.jpg", "openingTimeStatus": "Open today", "subTitle": "near Swanage, Dorset", "title": "Spyway", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/spyway" }, "geometry": { "type": "Point", "coordinates": [ -2.005599, 50.6065 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "The highest point in Dorset with views between the trees over Devon, Somerset and out to sea", "id": "5289", "imageDescription": "A clearing in the woodland at Lewesdon Hill ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431739391400-lewesdonhillwoodlandnt.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431739391400-lewesdonhillwoodlandnt.jpg", "openingTimeStatus": "Open today", "subTitle": "Beaminster, Dorset", "title": "Lewesdon Hill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/lewesdon-hill" }, "geometry": { "type": "Point", "coordinates": [ -2.799555, 50.807833 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "One of Dorset's prominent landmarks, dominated by an Iron Age hill fort", "id": "5290", "imageDescription": "A path on the grassy ramparts of Pilsdon Pen", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431739381740-pilsdonpenpathnt.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431739381740-pilsdonpenpathnt.jpg", "openingTimeStatus": "Open today", "subTitle": "Beaminster, Dorset", "title": "Pilsdon Pen", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/pilsdon-pen" }, "geometry": { "type": "Point", "coordinates": [ -2.833333, 50.8 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "Open expanses of flowery downland and far-reaching views", "id": "5292", "imageDescription": "Stormy skies over the Blackmore Vale from Melbury Hill, Melbury Down", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431739352746-stormyskiesmelburyhillntidavidnoton.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431739352746-stormyskiesmelburyhillntidavidnoton.jpg", "openingTimeStatus": "Open today", "subTitle": "Near Shaftesbury, Dorset", "title": "Fontmell and Melbury Downs", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/fontmell-and-melbury-downs" }, "geometry": { "type": "Point", "coordinates": [ -2.163719, 50.967604 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionEastofEngland", "description": "Ancient woodland and chalk escarpment with fantastic views", "id": "5306", "imageDescription": "Bare trees with orange leaves on the ground", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/770000.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/770000.jpg", "openingTimeStatus": "Open today", "subTitle": "Streatley, Bedfordshire", "title": "Sharpenhoe", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/sharpenhoe" }, "geometry": { "type": "Point", "coordinates": [ -0.450765, 51.95354 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Canoeing and kayaking, Dog walking, Fishing, Geocaching, Sailing, Walking", "cmsRegion": "RegionSouthWest", "description": "Spectacular walks, secluded beaches and exceptional views", "id": "5322", "imageDescription": "Looking down to Fowey from Station Woods", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431764774143-fowey-station-woods-view-over-harbour-george-taylor-1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431764774143-fowey-station-woods-view-over-harbour-george-taylor-1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Fowey, Cornwall", "title": "Fowey Estuary", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/fowey-estuary" }, "geometry": { "type": "Point", "coordinates": [ -4.642749, 50.328865 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Geocaching, Walking", "cmsRegion": "RegionEastofEngland", "description": "Explore Essex's second largest area of common land after Epping Forest, a survivor of a lost way of life", "id": "5326", "imageDescription": "A view across Danbury common in autumn sunshine", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431787879944-danburyautumn1croppedforcolin.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431787879944-danburyautumn1croppedforcolin.jpg", "openingTimeStatus": "Open today", "subTitle": "Danbury, Essex", "title": "Danbury Commons and Blakes Wood", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/danbury-commons-and-blakes-wood" }, "geometry": { "type": "Point", "coordinates": [ 0.576404, 51.710061 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionEastofEngland", "description": "Get the wildlife 'wow' on the Essex Coast", "id": "5327", "imageDescription": "Sea Club Rushes at Copt Hall Marshes", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431756785372-sea-club-rush-at-copt-hall-marshes-cr-annette-sewell-cropped-for-colin.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431756785372-sea-club-rush-at-copt-hall-marshes-cr-annette-sewell-cropped-for-colin.jpg", "openingTimeStatus": "Open today", "subTitle": "Little Wigborough, Essex", "title": "Copt Hall Marshes", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/copt-hall-marshes" }, "geometry": { "type": "Point", "coordinates": [ 0.869801, 51.795619 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionEastofEngland", "description": "The closest you'll get to true wilderness in Essex", "id": "5330", "imageDescription": "View over the Blackwater Estuary at Northey Island in Essex", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431782505268-northey-island-1206856.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431782505268-northey-island-1206856.jpg", "openingTimeStatus": "Open today", "subTitle": "Maldon, Essex", "title": "Northey Island", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/northey-island" }, "geometry": { "type": "Point", "coordinates": [ 0.702822, 51.718012 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Horse riding, Running, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "A rich and varied landscape buzzing with wildlife", "id": "5351", "imageDescription": "Boy in the countryside", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737724078-161900.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737724078-161900.jpg", "subTitle": "Witley, Surrey", "title": "Witley and Milford Commons", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/witley-and-milford-commons" }, "geometry": { "type": "Point", "coordinates": [ -0.66853, 51.155602 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "One of the most beautiful and oldest villages in Kent", "id": "5361", "imageDescription": "Chiddingstone Village, a National Trust area in Kent", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431805893915-2018418jonaschiddingstoneimg2820-2websitesize.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431805893915-2018418jonaschiddingstoneimg2820-2websitesize.jpg", "openingTimeStatus": "Open today", "subTitle": "near Edenbridge, Kent", "title": "Chiddingstone Village", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/chiddingstone-village" }, "geometry": { "type": "Point", "coordinates": [ 0.1464504, 51.185947 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Dramatic and stunning chalk escarpment with panoramic views", "id": "5371", "imageDescription": "Cowslips on Denbies Hillside Surrey", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431755527895-img7049.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431755527895-img7049.jpg", "openingTimeStatus": "Open today", "subTitle": "near Dorking, Surrey", "title": "Denbies Hillside", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/denbies-hillside" }, "geometry": { "type": "Point", "coordinates": [ -0.361131, 51.240398 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Nestled in a quiet corner of West Sussex lies a true horticultural haven bursting with colourful planting, sensational views and a whole host of surprises. ", "id": "5389", "imageDescription": "Explore the views from the Tulip Folly ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431743111945-woolbeding-gardens.-view-from-long-walk-to-house.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431743111945-woolbeding-gardens.-view-from-long-walk-to-house.jpg", "openingTimeStatus": "Closed today", "subTitle": "Midhurst, West Sussex", "title": "Woolbeding Gardens", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/woolbeding-gardens" }, "geometry": { "type": "Point", "coordinates": [ -0.7579017, 50.9973848 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Orienteering, Walking", "cmsRegion": "RegionSouthWest", "description": "Famous for red squirrels, wildlife and Scouting", "id": "54", "imageDescription": "Aerial View Brownsea Island Dorset", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431794727432-nationaltrustimageschrislacey2croppedforweb.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431794727432-nationaltrustimageschrislacey2croppedforweb.jpg", "openingTimeStatus": "Open today", "subTitle": "Poole, Dorset", "title": "Brownsea Island", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/brownsea-island" }, "geometry": { "type": "Point", "coordinates": [ -1.95622, 50.6884 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "Breathtaking stretch of silver sands surrounded by wildlife-rich dunes", "id": "5402", "imageDescription": "Visitors walking into Low Newton with Dunstanburgh Castle in the distance", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737340494-lownewtonanddunstanburgh.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737340494-lownewtonanddunstanburgh.jpg", "openingTimeStatus": "Open today", "subTitle": "Alnwick, Northumberland", "title": "Embleton and Newton Links", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/embleton-and-newton-links" }, "geometry": { "type": "Point", "coordinates": [ -1.618353, 55.512768 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "Dorset's largest hill fort renowned for its downland wildlife", "id": "5404", "imageDescription": "A view across the ancient ramparts", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431789872223-hodhillrampartsntkaterobinson.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431789872223-hodhillrampartsntkaterobinson.jpg", "openingTimeStatus": "Open today", "subTitle": "Nr Blandford Forum, Dorset", "title": "Hod Hill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hod-hill" }, "geometry": { "type": "Point", "coordinates": [ -2.203193, 50.875819 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Coasteering, Walking", "cmsRegion": "RegionWales", "description": "Blue Lagoon, beaches, rocks and ruins; this wild stretch of coastline is where industry and adventure combine. Dive right into the past and see how stone quarries have paved the way for thrill-seekers.", "id": "5409", "imageDescription": "Overlooking Abereiddi's Blue Lagoon from the clifftop", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431734378187-abereiddi-blue-lagoon-nt-andrew-tuddenham.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431734378187-abereiddi-blue-lagoon-nt-andrew-tuddenham.jpg", "openingTimeStatus": "Open today", "subTitle": "Pembrokeshire", "title": "Abereiddi to Abermawr", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/abereiddi-to-abermawr" }, "geometry": { "type": "Point", "coordinates": [ -5.207767, 51.93824 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionWales", "description": "Solva’s jutting headlands, gentle valleys and sweeping shores all have a tale to tell. From Iron Age settlements and industry to chilling coastal chronicles, there’s lots to uncover.", "id": "5410", "imageDescription": "View of St Bride's Bay from Upper Solva ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/42389---national-trust-images-joe-cornish.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/42389---national-trust-images-joe-cornish.jpg", "openingTimeStatus": "Open today", "subTitle": "Caerfi to Newgale, Pembrokeshire", "title": "Solva Coast", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/solva-coast" }, "geometry": { "type": "Point", "coordinates": [ -5.188659, 51.874002 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Surfing, Walking", "cmsRegion": "RegionSouthWest", "description": "A popular but unspoilt beach of pebbles and sand backed by incredible twisted cliffs.", "id": "5414", "imageDescription": "Sandymouth beach at low tide", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431730306398-sandymouth-beach-for-car-park-article-george-taylo-c.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431730306398-sandymouth-beach-for-car-park-article-george-taylo-c.jpg", "openingTimeStatus": "Open today", "subTitle": "Cornwall", "title": "Sandymouth", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/sandymouth" }, "geometry": { "type": "Point", "coordinates": [ -4.553875, 50.861586 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "A wooded valley opening up to the moors of Dartmoor with a rich and varied industrious past", "id": "5423", "imageDescription": "Cyclists cycling through Plymbridge", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431790972757-692761.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431790972757-692761.jpg", "openingTimeStatus": "Open today", "subTitle": "Plympton, Devon", "title": "Plymbridge Woods", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/plymbridge-woods" }, "geometry": { "type": "Point", "coordinates": [ -4.08179, 50.4167 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Coasteering, Horse riding, Sailing, Surfing, Swimming, Walking", "cmsRegion": "RegionSouthWest", "description": "A peaceful sheltered inlet on an outstanding stretch of unspoilt coast", "id": "5425", "imageDescription": "Doyden Cottage at Doyden Point, Port Quin, overlooking Padstow Bay", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431731402793-polzeath-to-port-quin-132908-doyden-point-1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431731402793-polzeath-to-port-quin-132908-doyden-point-1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "near Polzeath, Cornwall", "title": "Port Quin", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/port-quin" }, "geometry": { "type": "Point", "coordinates": [ -4.866948, 50.588931 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionNorthernIreland", "description": "An extraordinarily beautiful dune landscape", "id": "543", "imageDescription": "Murlough sand dunes", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735770947-yes--annabel-sharpe.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735770947-yes--annabel-sharpe.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Dundrum, County Down", "title": "Murlough National Nature Reserve", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/murlough-national-nature-reserve" }, "geometry": { "type": "Point", "coordinates": [ -5.88365, 54.224645 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Flower-rich chalk grassland with stunning views of the Cuckmere River", "id": "5432", "imageDescription": "Sunset lends stunning colours to the winding Cuckmere meanders", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1038422aheavenlyhavenatchyngtonnickdautlich.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1038422aheavenlyhavenatchyngtonnickdautlich.jpg", "openingTimeStatus": "Open today", "subTitle": "East Sussex", "title": "Cuckmere Valley", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/cuckmere-valley" }, "geometry": { "type": "Point", "coordinates": [ 0.139652, 50.78974 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "Spectacular coastline with cliffs and miles of unspoilt beaches", "id": "5444", "imageDescription": "The sun rising over the sea at Burton Bradstock ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737488058-burtonbradstocksunsetrowanthompson.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737488058-burtonbradstocksunsetrowanthompson.jpg", "openingTimeStatus": "Open today", "subTitle": "near Bridport, Dorset", "title": "Burton Bradstock", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/burton-bradstock" }, "geometry": { "type": "Point", "coordinates": [ -2.722042, 50.696606 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "A spectacular escarpment with sweeping views across the Weald", "id": "5445", "imageDescription": "View from Reigate Hill on North Downs", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431753412153-162574john-miller1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431753412153-162574john-miller1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Reigate, Surrey", "title": "Reigate Hill and Gatton Park", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/reigate-hill-and-gatton-park" }, "geometry": { "type": "Point", "coordinates": [ -0.200137, 51.25422 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionMidlands", "description": "Traditionally farmed estate and medieval manor house", "id": "55", "imageDescription": "Brockhampton manor house in the spring", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431775148711-mothers-day-011.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431775148711-mothers-day-011.jpg", "openingTimeStatus": "Partially open today", "subTitle": "near Bromyard, Herefordshire", "title": "Brockhampton Estate", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/brockhampton-estate" }, "geometry": { "type": "Point", "coordinates": [ -2.4569, 52.1991 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Surfing, Swimming, Walking", "cmsRegion": "RegionNorthernIreland", "description": "Miles of golden sand", "id": "559", "imageDescription": "Portstewart Strand Beach and Town", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431790475241-portstewartstrandtown.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431790475241-portstewartstrandtown.jpg", "openingTimeStatus": "Open today", "subTitle": "Portstewart, County Londonderry", "title": "Portstewart Strand", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/portstewart-strand" }, "geometry": { "type": "Point", "coordinates": [ -6.724648, 55.172117 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Fifteenth-century chapel, restored by Gilbert Scott in 1875", "id": "56", "imageDescription": "A black and white archive image of Chantry Chapel, Buckingham", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431730146264-blackandwhitechantrychapel197656.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431730146264-blackandwhitechantrychapel197656.jpg", "openingTimeStatus": "Open today", "subTitle": "Buckingham, Buckinghamshire", "title": "Buckingham Chantry Chapel", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/buckingham-chantry-chapel" }, "geometry": { "type": "Point", "coordinates": [ -0.98665, 52.000999 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Discovery, tranquillity and history – an ancient gem in the Tavy Valley landscape", "id": "57", "imageDescription": "Buckland Abbey", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431758988973-bucklandabbeyalanh.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431758988973-bucklandabbeyalanh.jpg", "openingTimeStatus": "Open today", "subTitle": "Yelverton, Devon", "title": "Buckland Abbey", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/buckland-abbey" }, "geometry": { "type": "Point", "coordinates": [ -4.13074, 50.481098 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Early 18th-century riverside house with small garden", "id": "58", "imageDescription": "Buscot Old Parsonage Oxfordshire ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/buscot-old-parsonage-877215-john-miller-.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/buscot-old-parsonage-877215-john-miller-.jpg", "openingTimeStatus": "Closed today", "subTitle": "Faringdon, Oxfordshire", "title": "Buscot Old Parsonage", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/buscot-old-parsonage" }, "geometry": { "type": "Point", "coordinates": [ -1.66544, 51.679798 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Late 18th-century house, set in enchanting landscaped grounds", "id": "59", "imageDescription": "A view of Buscot Park, Oxfordshire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431762580280-buscot-park-1.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431762580280-buscot-park-1.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Faringdon, Oxfordshire", "title": "Buscot Park", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/buscot-park" }, "geometry": { "type": "Point", "coordinates": [ -1.64498, 51.6703 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Medieval thatched Wealden hall-house and picturesque garden", "id": "6", "imageDescription": "Pot of Tulips on terrace at Alfriston Clergy House", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431743601515-tulips-by-door.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431743601515-tulips-by-door.jpg", "openingTimeStatus": "Open today", "subTitle": "Polegate, East Sussex", "title": "Alfriston Clergy House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/alfriston-clergy-house" }, "geometry": { "type": "Point", "coordinates": [ 0.16206, 50.803299 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Boating, Dog walking, Fishing, Swimming, Walking", "cmsRegion": "RegionNorthWest", "description": "Tranquil area of dramatic fells, farms and woodland, encompassing three lakes", "id": "60", "imageDescription": "Man and child stone skimming on the shores of Buttermere, Lake District", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431803528477-buttermeremanandboystoneskimmingrobgrange788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431803528477-buttermeremanandboystoneskimmingrobgrange788.jpg", "openingTimeStatus": "Open today", "subTitle": "near Cockermouth, Cumbria", "title": "Buttermere Valley", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/buttermere-valley" }, "geometry": { "type": "Point", "coordinates": [ -3.268423, 54.523625 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Canoeing and kayaking, Cycling, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "A quiet backwater with a busy Medieval past, now bursting with wildlife and a town hall with no town...", "id": "6004", "imageDescription": "The exterior of Newtown Old Town Hall on a sunny day.", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431731431852-newtown-old-town-hall.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431731431852-newtown-old-town-hall.jpg", "openingTimeStatus": "Open today", "subTitle": "Newtown, Isle of Wight", "title": "Newtown National Nature Reserve and Old Town Hall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/newtown-national-nature-reserve-and-old-town-hall" }, "geometry": { "type": "Point", "coordinates": [ -1.403159, 50.714457 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Sand dunes with a royal history and great coastal views", "id": "6006", "imageDescription": "Spring wildflowers bloom by St Helens lagoon, besides the Duver", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431798069777-sthelensduver051.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431798069777-sthelensduver051.jpg", "openingTimeStatus": "Open today", "subTitle": "St Helens, Isle of Wight", "title": "St Helens Duver", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/st-helens-duver" }, "geometry": { "type": "Point", "coordinates": [ -1.099755, 50.7072 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionWales", "description": "Iconic mountains, rich countryside and a sweeping 18th century landscaped park ", "id": "6010", "imageDescription": "Bluebells and campion at Coed y Bwnydd, Monmouthshire, Wales", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735659554-coed-y-bwnydd-bluebells-and-campion.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735659554-coed-y-bwnydd-bluebells-and-campion.jpg", "openingTimeStatus": "Open today", "subTitle": "Abergavenny, Monmouthshire", "title": "Sugarloaf and Usk Valley", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/sugarloaf-and-usk-valley" }, "geometry": { "type": "Point", "coordinates": [ -3.062519, 51.844095 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Climbing, Dog walking, Swimming, Walking", "cmsRegion": "RegionWales", "description": "Experience the wildest scenery that Snowdonia has to offer", "id": "6011", "imageDescription": "Llyn Idwal, with Y Garn capped with snow", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431768005462-543571.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431768005462-543571.jpg", "openingTimeStatus": "Open today", "subTitle": "Bethesda, Gwynedd", "title": "Carneddau and Glyderau", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/carneddau-and-glyderau" }, "geometry": { "type": "Point", "coordinates": [ -4.020383, 53.123603 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionWales", "description": "An agricultural estate, rich in wildlife and history", "id": "6012", "imageDescription": "Overlooking Ysbyty Ifan, near Betws y Coed, Conwy", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431734197677-ysbytyifanwalk.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431734197677-ysbytyifanwalk.jpg", "openingTimeStatus": "Open today", "subTitle": "Betws y Coed, Conwy", "title": "Ysbyty Ifan", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/ysbyty-ifan" }, "geometry": { "type": "Point", "coordinates": [ -3.726415, 53.023045 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Orienteering, Walking", "cmsRegion": "RegionWales", "description": "Remote unspoilt mountains steeped in history, deep wooded valleys and spectacular estuaries", "id": "6014", "imageDescription": "Looking over Harlech beach from Allt y Môr", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431748850592-alltymor.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431748850592-alltymor.jpg", "openingTimeStatus": "Open today", "subTitle": "Dolgellau, Gwynedd", "title": "South Snowdonia", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/south-snowdonia" }, "geometry": { "type": "Point", "coordinates": [ -3.88969, 52.80119 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Canoeing and kayaking, Climbing, Cycling, Dog walking, Running, Walking", "cmsRegion": "RegionWales", "description": "Unwind amongst the wooded foothills of Snowdon", "id": "6015", "imageDescription": "View of Dinas Emrys in Snowdonia", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431734182677-dinas-emrys.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431734182677-dinas-emrys.jpg", "openingTimeStatus": "Open today", "subTitle": "near Beddgelert, Gwynedd", "title": "Craflwyn and Beddgelert", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/craflwyn-and-beddgelert" }, "geometry": { "type": "Point", "coordinates": [ -4.088592, 53.019931 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionWales", "description": "Pick up the pace in Pembrokeshire’s walking country; this rugged and remote expanse of towering cliffs and rocky outcrops is punctuated with coastal paths and soaring sea views.", "id": "6017", "imageDescription": "Pen Anglas on the Strumble Head coast", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736720643-135165---national-trust-images-joe-cornish.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736720643-135165---national-trust-images-joe-cornish.jpg", "openingTimeStatus": "Open today", "subTitle": "Strumble Head, Pencaer to Cardigan, Pembrokeshire", "title": "Strumble Head to Cardigan", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/strumble-head-to-cardigan" }, "geometry": { "type": "Point", "coordinates": [ -5.064023, 52.006828 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionWales", "description": "Follow the Cleddau waterway through tranquil, ancient woodland, expansive salt marsh and heritage-rich tidal creeks. Its journey from river to estuary is as peaceful and picturesque as they come.", "id": "6018", "imageDescription": "Little Milford woods overlooking the River Cleddau", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735049338-littlemilford-2012-feb-11.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735049338-littlemilford-2012-feb-11.jpg", "openingTimeStatus": "Open today", "subTitle": "Pembrokeshire", "title": "Cleddau Woodlands", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/cleddau-woodlands" }, "geometry": { "type": "Point", "coordinates": [ -4.878005, 51.719232 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Geocaching, Sailing, Walking", "cmsRegion": "RegionNorthWest", "description": "Gothic revival castle sitting on the shores of Lake Windermere with turrets, towers and informal grounds", "id": "6049", "imageDescription": "View of Wray Castle with snow capped hills, Ambleside, Cumbria ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431745477640-wraycastlespringview.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431745477640-wraycastlespringview.jpg", "openingTimeStatus": "Open today", "subTitle": "Ambleside, Cumbria", "title": "Wray Castle", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/wray-castle" }, "geometry": { "type": "Point", "coordinates": [ -2.964237, 54.400611 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "A classic downland experience with secret woodland glades", "id": "6054", "imageDescription": "Views north over the Weald from Blackcap South Downs", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/blackcap-view-north-coming-back-down-track-oct-2010-glen-redman-resized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/blackcap-view-north-coming-back-down-track-oct-2010-glen-redman-resized.jpg", "openingTimeStatus": "Open today", "subTitle": "Lewes, East Sussex", "title": "Blackcap", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/blackcap" }, "geometry": { "type": "Point", "coordinates": [ -0.04667, 50.895237 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Horse riding, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "The highest point in the South Downs National Park", "id": "6055", "imageDescription": "Heather on Black Down", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431740210008-blackdown-south-downs181862johnmiller.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431740210008-blackdown-south-downs181862johnmiller.jpg", "openingTimeStatus": "Open today", "subTitle": "Haslemere, Surrey", "title": "Black Down", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/black-down" }, "geometry": { "type": "Point", "coordinates": [ -0.6873412, 51.0700074 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "The most historic hill on the South Downs", "id": "6056", "imageDescription": "Aerial view of Cissbury Ring on the South Downs", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/cissbury-paid-for-internet-use-25-resized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/cissbury-paid-for-internet-use-25-resized.jpg", "openingTimeStatus": "Open today", "subTitle": "Near Findon, West Sussex", "title": "Cissbury Ring", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/cissbury-ring" }, "geometry": { "type": "Point", "coordinates": [ -0.37932, 50.86014 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Nestled in undulating hills, step back to a timeless rural life", "id": "6057", "imageDescription": "Standing on Hat Hill looking along the course of the abandoned railway", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736852777-drovers-estate-hat-hill-1440-x-788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736852777-drovers-estate-hat-hill-1440-x-788.jpg", "openingTimeStatus": "Open today", "subTitle": "Singleton, West Sussex", "title": "Drovers Estate", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/drovers-estate" }, "geometry": { "type": "Point", "coordinates": [ -0.7571577, 50.9111971 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Canoeing and kayaking, Dog walking, Surfing, Swimming, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Shifting sand dunes, salt marsh and flowing tides ", "id": "6058", "imageDescription": "Sand whispering along East Head, as the weather builds", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737028623-east-head-home-page01-1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737028623-east-head-home-page01-1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Chichester, West Sussex", "title": "East Head", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/east-head" }, "geometry": { "type": "Point", "coordinates": [ -0.903841, 50.78114 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Horse riding, Running, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Dramatic hill-top views and secluded valleys, with abundant wild flowers", "id": "6059", "imageDescription": "A view of the Vandalian tower from Harting Hill", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431769121978-view-of-the-valdanian-tower-folly-from-harting-hill-resized-for-website.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431769121978-view-of-the-valdanian-tower-folly-from-harting-hill-resized-for-website.jpg", "openingTimeStatus": "Open today", "subTitle": "Nr South Harting, West Sussex", "title": "Harting Down", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/harting-down" }, "geometry": { "type": "Point", "coordinates": [ -0.875635, 50.9565598 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionLondonSouthEast", "description": "A rare pocket of open heath amongst plantation woodland", "id": "6060", "imageDescription": "Heather putting on a purple display in August on Lavington Common, with pine trees scattered across the landscape", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431730564133-lavington-common-outdoors-1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431730564133-lavington-common-outdoors-1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Duncton, West Sussex", "title": "Lavington Common", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/lavington-common" }, "geometry": { "type": "Point", "coordinates": [ -0.6503195, 50.9601325 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Coconut-scents, purple heather and intimate woodland walks", "id": "6061", "imageDescription": "A landscape view of the heather in bloom over Marley Common", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/marley-common-heath-and-trees-1440x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/marley-common-heath-and-trees-1440x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Haslemere, Surrey", "title": "Marley Common", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/marley-common" }, "geometry": { "type": "Point", "coordinates": [ -0.7356069, 51.073106 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Geocaching, Horse riding, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "A great and ancient downland estate", "id": "6062", "imageDescription": "Slindon Wood anemones", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431747577417-wood-anemones-ka.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431747577417-wood-anemones-ka.jpg", "openingTimeStatus": "Open today", "subTitle": "near Arundel, West Sussex", "title": "Slindon Estate", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/slindon-estate" }, "geometry": { "type": "Point", "coordinates": [ -0.6364376, 50.8608835 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "A quiet retreat of woodland and pasture only 30 seconds from Haslemere High Street", "id": "6063", "imageDescription": "Belted galloway cows with calves in field", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431766007446-cows-in-field-by-hedge-1440-de.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431766007446-cows-in-field-by-hedge-1440-de.jpg", "openingTimeStatus": "Open today", "subTitle": "Haslemere, Surrey", "title": "Swan Barn Farm", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/swan-barn-farm" }, "geometry": { "type": "Point", "coordinates": [ -0.703522, 51.087323 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Experience a landscape shaped by traditional rural life", "id": "6064", "imageDescription": "Sunrise over Older Hill", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431792929858-woolbedingwebpagefrontnov2017sunsetolderhill.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431792929858-woolbedingwebpagefrontnov2017sunsetolderhill.jpg", "openingTimeStatus": "Open today", "subTitle": "Woolbeding, West Sussex", "title": "Woolbeding Countryside", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/woolbeding-countryside" }, "geometry": { "type": "Point", "coordinates": [ -0.7559299, 50.9890827 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Panoramic views from the top of world", "id": "6065", "imageDescription": "Ditchling Beacon in Sussex dew pond at dusk", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737824488-1044678-nick-dautlich-view-over-dewpond-at-twilight-ditchling-beacon-resized-for-new-website.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737824488-1044678-nick-dautlich-view-over-dewpond-at-twilight-ditchling-beacon-resized-for-new-website.jpg", "openingTimeStatus": "Open today", "subTitle": "East Sussex", "title": "Ditchling Beacon", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/ditchling-beacon" }, "geometry": { "type": "Point", "coordinates": [ -0.105186, 50.90084 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Stunning views from the top of the barrow", "id": "6067", "imageDescription": "A sunset at Coldrum Long Barrow in Kent", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735563769-coldrum-stones012-john-millar-cropped.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735563769-coldrum-stones012-john-millar-cropped.jpg", "openingTimeStatus": "Open today", "subTitle": "West Malling, Kent", "title": "Coldrum Long Barrow", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/coldrum-long-barrow" }, "geometry": { "type": "Point", "coordinates": [ 0.3665, 51.3214 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Discover the remains of an Iron Age hill fort", "id": "6071", "imageDescription": "The south western ramparts with a blanket of autumn leaves", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/southwesternrampartspath.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/southwesternrampartspath.jpg", "openingTimeStatus": "Open today", "subTitle": "Ightham, Kent", "title": "Oldbury Hill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/oldbury-hill" }, "geometry": { "type": "Point", "coordinates": [ 0.262127, 51.278589 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionLondonSouthEast", "description": "A beautiful slice of Kent countryside", "id": "6072", "imageDescription": "View from the top of One Tree Hill looking across the Kent Countryside", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/img1560.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/img1560.jpg", "openingTimeStatus": "Open today", "subTitle": "Sevenoaks, Kent", "title": "One Tree Hill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/one-tree-hill" }, "geometry": { "type": "Point", "coordinates": [ 0.23421297, 51.256627 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Running, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "An oasis of peace and tranquillity only 13 miles south-east from the centre of London", "id": "6074", "imageDescription": "A blanket of leaves covers the ground between the trees", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431768512658-petts-wood---sam-pettman.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431768512658-petts-wood---sam-pettman.jpg", "openingTimeStatus": "Open today", "subTitle": "Chislehurst, Kent", "title": "Petts Wood and Hawkwood", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/petts-wood-and-hawkwood" }, "geometry": { "type": "Point", "coordinates": [ 0.082993, 51.398808 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Geocaching, Horse riding, Running, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Discover the place that inspired Octavia Hill to found the National Trust", "id": "6075", "imageDescription": "Bluebells in the woodland around Emmetts Garden and Toys Hill, National Trust places in Kent", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431798409966-1321411websitesize.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431798409966-1321411websitesize.jpg", "openingTimeStatus": "Open today", "subTitle": "Kent", "title": "Toys Hill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/toys-hill" }, "geometry": { "type": "Point", "coordinates": [ 0.101976, 51.248285 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "A gentle coastal landscape west of Dartmouth with wonderful views, wild flowers and the ruins of a Civil War encampment", "id": "6080", "imageDescription": "Cows with their calves on the coastline around Little Dartmouth", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431746416999-little-dartmouth-calf-and-cows-phil-hemsley.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431746416999-little-dartmouth-calf-and-cows-phil-hemsley.jpg", "openingTimeStatus": "Open today", "subTitle": "Dartmouth, Devon", "title": "Little Dartmouth", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/little-dartmouth" }, "geometry": { "type": "Point", "coordinates": [ -3.57502, 50.333683 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "Discover dramatic cliffs and the tranquil Yealm Estuary", "id": "6081", "imageDescription": "Take a seat, relax and take in the view out to sea from Warren Point", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431748500126-noss-mayo-warren-point-eric-mcdonald.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431748500126-noss-mayo-warren-point-eric-mcdonald.jpg", "openingTimeStatus": "Open today", "subTitle": "Plymouth, Devon", "title": "Noss Mayo", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/noss-mayo" }, "geometry": { "type": "Point", "coordinates": [ -4.036142, 50.3071 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Unspoilt, wild coastline with turquoise waters and golden beaches", "id": "6083", "imageDescription": "Standing on a rock outcrop the coastguard lookout at Gara Point has fantastic views out to sea.", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431746444617-gara-rock-lookout-phil-hemsley.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431746444617-gara-rock-lookout-phil-hemsley.jpg", "openingTimeStatus": "Open today", "subTitle": "East Portlemouth, Devon", "title": "Mill Bay", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/mill-bay" }, "geometry": { "type": "Point", "coordinates": [ -3.7666917, 50.229439 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Surfing, Walking", "cmsRegion": "RegionSouthWest", "description": "The western gateway to the Jurassic Coast, a World Heritage Site", "id": "6090", "imageDescription": "Wildflowers blooming in front of the Geoneedle, Exmouth", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431772550295-tim-bowdengeoneedle-orcombe-point-through-wildflowers-vieweast-devonexmouthweb.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431772550295-tim-bowdengeoneedle-orcombe-point-through-wildflowers-vieweast-devonexmouthweb.jpg", "openingTimeStatus": "Open today", "subTitle": "Exmouth, Devon", "title": "Exmouth", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/exmouth" }, "geometry": { "type": "Point", "coordinates": [ -3.383188, 50.609062 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Running, Walking", "cmsRegion": "RegionSouthWest", "description": "Gentle countryside walks and coastal hikes", "id": "6091", "imageDescription": "There are stunning views across to Sidmouth from many sections of this accessible walk", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431746597260-salcombe-hillview-across-to-sidmouth-george-taylor.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431746597260-salcombe-hillview-across-to-sidmouth-george-taylor.jpg", "openingTimeStatus": "Open today", "subTitle": "Sidmouth, Devon", "title": "Sidmouth countryside", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/sidmouth-countryside" }, "geometry": { "type": "Point", "coordinates": [ -3.2076165, 50.693485 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionWales", "description": "The quiet north Gower coast with its extensive saltmarsh and dunes", "id": "6094", "imageDescription": "Scurvy-grass at Cwm Ivy marsh, Gower ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431798373596-whiteford-header-discover-1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431798373596-whiteford-header-discover-1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Swansea", "title": "Whiteford and North Gower", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/whiteford-and-north-gower" }, "geometry": { "type": "Point", "coordinates": [ -4.2503, 51.63 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionWales", "description": "Archaeology, lichen rich dunes and the award winning Three Cliffs Bay", "id": "6095", "imageDescription": "View over Three Cliffs Bay", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/three-cliffs-bay-resized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/three-cliffs-bay-resized.jpg", "openingTimeStatus": "Open today", "subTitle": "Swansea", "title": "Penmaen and Nicholaston Burrows", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/penmaen-and-nicholaston-burrows" }, "geometry": { "type": "Point", "coordinates": [ -4.1204, 51.5718 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionWales", "description": "Rich in industrial heritage, caves, ancient woodland and rare species", "id": "6096", "imageDescription": "View of the shingle cove at Pwll Du, Gower", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736282501-pwll-du-bay-r.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736282501-pwll-du-bay-r.jpg", "openingTimeStatus": "Open today", "subTitle": "Swansea", "title": "Pennard, Pwll Du and Bishopston Valley", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/pennard-pwll-du-and-bishopston-valley" }, "geometry": { "type": "Point", "coordinates": [ -4.0878, 51.5669 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Fishing, Geocaching, Walking", "cmsRegion": "RegionSouthWest", "description": "Stretch your legs in a living Cornish landscape", "id": "6097", "imageDescription": "Lansallos path to beach", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735816863-lansallos-path-down-to-the-beach-1400x788-george-taylor.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735816863-lansallos-path-down-to-the-beach-1400x788-george-taylor.jpg", "openingTimeStatus": "Open today", "subTitle": "Looe, Cornwall", "title": "Lansallos", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/lansallos" }, "geometry": { "type": "Point", "coordinates": [ -4.5681627, 50.33766 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Boating, Caving, Dog walking, Fishing, Geocaching, Surfing, Swimming, Walking", "cmsRegion": "RegionSouthWest", "description": "Exploring South East Cornwall's history and culture", "id": "6098", "imageDescription": "Looking down to Sharrow beach at Whitsand", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735821132-whitsand-beachsharrow-1400x788-george-taylor.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735821132-whitsand-beachsharrow-1400x788-george-taylor.jpg", "openingTimeStatus": "Open today", "subTitle": "Polperro, Cornwall", "title": "Polperro, Looe and Whitsand Bay", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/polperro-looe-and-whitsand-bay" }, "geometry": { "type": "Point", "coordinates": [ -4.43098783, 50.36160123 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "A wild but cosy beach, rich in heritage and legend", "id": "6099", "imageDescription": "Chapel Porth beach", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431766535490-20161019-chapel-porth-beach-g-taylor-1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431766535490-20161019-chapel-porth-beach-g-taylor-1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "St Agnes, Cornwall", "title": "Chapel Porth", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/chapel-porth" }, "geometry": { "type": "Point", "coordinates": [ -5.234277, 50.300003 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Climbing, Cycling, Dog walking, Walking", "cmsRegion": "RegionMidlands", "description": "The un-stately home and country estate", "id": "61", "imageDescription": "Visitors walking to the house at Calke Abbey in Derbyshire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431785795698-529a01181chrislacey.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431785795698-529a01181chrislacey.jpg", "openingTimeStatus": "Open today", "subTitle": "Derby, Derbyshire", "title": "Calke Abbey", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/calke-abbey" }, "geometry": { "type": "Point", "coordinates": [ -1.472834, 52.808253 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "The distinctive headland juts out into the ocean where two great bodies of water meet. Part of the Tin Coast and Cornish Mining World Heritage Site.", "id": "6100", "imageDescription": "Cape Cornwall Sentinel Chimney", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431768658177-cape-cornwall-chimney-website.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431768658177-cape-cornwall-chimney-website.jpg", "openingTimeStatus": "Open today", "subTitle": "Cornwall", "title": "Cape Cornwall", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/cape-cornwall" }, "geometry": { "type": "Point", "coordinates": [ -5.703191, 50.122658 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "The south coast of Penwith vividly expresses the changes in man’s use of the land over time. From towering cliffs keeping watch over the western approaches, to gentle, lush valley slopes, and sun kissed beaches – all is here.", "id": "6101", "imageDescription": "Cattle and rare arable weeds at Boscregan Farm", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431783355611-cows-and-arables---simon.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431783355611-cows-and-arables---simon.jpg", "openingTimeStatus": "Open today", "subTitle": "Cornwall", "title": "Sennen to Penberth", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/sennen-to-penberth" }, "geometry": { "type": "Point", "coordinates": [ -5.630339, 50.047585 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Look through the opaque cloak of today’s apparent wilderness, to see the marks left by the farmers, miners, worshippers and fishermen who worked and walked this coast.", "id": "6102", "imageDescription": "Ponies at Cudden Point", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431795838857-cuddenpointwebedit.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431795838857-cuddenpointwebedit.jpg", "openingTimeStatus": "Open today", "subTitle": "Cornwall", "title": "Mount's Bay", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/mounts-bay" }, "geometry": { "type": "Point", "coordinates": [ -5.4521, 50.11421 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "Far-reaching views of rolling valleys and hills", "id": "6103", "imageDescription": "Scabious flowers on Cherhill Down", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737031438-cherhilldownandscabiousanationaltrustbencooke.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737031438-cherhilldownandscabiousanationaltrustbencooke.jpg", "openingTimeStatus": "Open today", "subTitle": "Wiltshire", "title": "Calstone and Cherhill Downs", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/calstone-and-cherhill-downs" }, "geometry": { "type": "Point", "coordinates": [ -1.935232, 51.42359 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "Discover Staffordshire's secret woodlands", "id": "6104", "imageDescription": "Hawksmoor", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1056234.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1056234.jpg", "openingTimeStatus": "Open today", "subTitle": "Cheadle, Staffordshire", "title": "Hawksmoor", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hawksmoor" }, "geometry": { "type": "Point", "coordinates": [ -1.943121, 52.995079 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "The 14-mile stretch of coast that runs westwards from the holiday resort of St Ives to the mining village of Pendeen, can lay proud claim to being the most startlingly beautiful in south-west England.", "id": "6105", "imageDescription": "Looking out across Gurnard's Head", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431783376470-gurnards-head---shaun.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431783376470-gurnards-head---shaun.jpg", "openingTimeStatus": "Open today", "subTitle": "Land's End Peninsula, Cornwall", "title": "St Ives to Pendeen", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/st-ives-to-pendeen" }, "geometry": { "type": "Point", "coordinates": [ -5.569793, 50.191615 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Streams of lichen-rich sarsen stones", "id": "6106", "imageDescription": "White Park Cattle in Lockeridge Dene", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431738050019-lockeridgewhiteparkcattle1mikerobinson.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431738050019-lockeridgewhiteparkcattle1mikerobinson.jpg", "openingTimeStatus": "Open today", "subTitle": "Near Marlborough, Wiltshire", "title": "Lockeridge Dene and Piggledene", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/lockeridge-dene-and-piggledene" }, "geometry": { "type": "Point", "coordinates": [ -1.795089, 51.404998 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Chalk ridge landmark with far-reaching views and rich natural heritage", "id": "6107", "imageDescription": "Flower meadow", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431738338393-pepperboxhillwildflowersnationaltrustimages.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431738338393-pepperboxhillwildflowersnationaltrustimages.jpg", "openingTimeStatus": "Open today", "subTitle": "Salisbury, Wiltshire", "title": "Pepperbox Hill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/pepperbox-hill" }, "geometry": { "type": "Point", "coordinates": [ -1.698016, 51.022227 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Traditional hay meadows rich in wild flowers", "id": "6108", "imageDescription": "Orange butterflies", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431738615585-suttonlanemeadowssmallcoppersntkeithsteggall.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431738615585-suttonlanemeadowssmallcoppersntkeithsteggall.jpg", "openingTimeStatus": "Open today", "subTitle": "Chippenham, Wiltshire", "title": "Sutton Lane Meadows", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/sutton-lane-meadows" }, "geometry": { "type": "Point", "coordinates": [ -2.078461, 51.497764 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Distinctive landmark rich in wildlife and archaeology with a tremendous panorama", "id": "6109", "imageDescription": "Cley Hill and sky", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431773065618-87572cleyhillnationaltrustdavidsellman.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431773065618-87572cleyhillnationaltrustdavidsellman.jpg", "openingTimeStatus": "Open today", "subTitle": "Warminster, Wiltshire", "title": "Cley Hill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/cley-hill" }, "geometry": { "type": "Point", "coordinates": [ -2.232584, 51.20299 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Coasteering, Dog walking, Running, Walking", "cmsRegion": "RegionWales", "description": "Discover Stackpole’s beautiful stretch of coastline for yourself. With award-winning sandy beaches, tranquil wooded valleys, wildlife-rich lily ponds, walking trails and watersports, there’s lots to see and do.", "id": "611", "imageDescription": "Footprints in the sand", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431766778973-1181040---national-trust-images-john-miller-resized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431766778973-1181040---national-trust-images-john-miller-resized.jpg", "openingTimeStatus": "Open today", "subTitle": "near Pembroke, Pembrokeshire", "title": "Stackpole", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/stackpole" }, "geometry": { "type": "Point", "coordinates": [ -4.926159, 51.612813 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "Rare wildflowers and a myriad of butterflies", "id": "6110", "imageDescription": "View over the Coombes", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/thecoombeshintonparva.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/thecoombeshintonparva.jpg", "openingTimeStatus": "Open today", "subTitle": "Wiltshire", "title": "The Coombes, Hinton Parva", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/the-coombes-hinton-parva" }, "geometry": { "type": "Point", "coordinates": [ -1.672638, 51.540943 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Neolithic and Iron Age site rich in wildlife, offering sweeping views of surrounding countryside", "id": "6111", "imageDescription": "Figsbury Ring in sunshine", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431738475462-figsburyring1nationaltrustrobertmorris.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431738475462-figsburyring1nationaltrustrobertmorris.jpg", "openingTimeStatus": "Open today", "subTitle": "North-east of Salisbury, Wiltshire", "title": "Figsbury Ring", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/figsbury-ring" }, "geometry": { "type": "Point", "coordinates": [ -1.732867, 51.103196 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Well preserved Neolithic long barrow", "id": "6112", "imageDescription": "Blossom and barrow", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431738512886-whitebarrow2nationaltrustabbygeorgex.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431738512886-whitebarrow2nationaltrustabbygeorgex.jpg", "openingTimeStatus": "Open today", "subTitle": "Tilshead, Wiltshire", "title": "White Barrow", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/white-barrow" }, "geometry": { "type": "Point", "coordinates": [ -1.9543, 51.220798 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Prominent landmark with fine views", "id": "6113", "imageDescription": "Looking west towards Cranborne Chase from Win Green", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431739760829-wingreenlookingwesttowardscranbornechasentcw.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431739760829-wingreenlookingwesttowardscranbornechasentcw.jpg", "openingTimeStatus": "Open today", "subTitle": "Near Ludwell, Wiltshire", "title": "Win Green", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/win-green" }, "geometry": { "type": "Point", "coordinates": [ -2.108106, 50.985132 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionNorthernIreland", "description": "A beautiful waterfall nestling in the glens of Antrim", "id": "6114", "imageDescription": "Autumn at Glenoe waterfall, County Antrim", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/waterfallglenoe1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/waterfallglenoe1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Gleno, County Antrim", "title": "Glenoe", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/glenoe" }, "geometry": { "type": "Point", "coordinates": [ -5.832079, 54.799617 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionNorthernIreland", "description": "A picturesque walk from wooded glen to hilltop rath", "id": "6115", "imageDescription": "Rath at Lisnabreeny, County Down", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431748289535-1153935lisnabreenyrath1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431748289535-1153935lisnabreenyrath1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Belfast, County Down", "title": "Lisnabreeny", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/lisnabreeny" }, "geometry": { "type": "Point", "coordinates": [ -5.8889723, 54.561886 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionNorthernIreland", "description": "The finest example in Ireland of Robert Adam's neoclassical architecture", "id": "6117", "imageDescription": "Templetown Mausoleum", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/templetown-mousoleum-1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/templetown-mousoleum-1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Templepatrick, County Antrim", "title": "Templetown Mausoleum", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/templetown-mausoleum" }, "geometry": { "type": "Point", "coordinates": [ -6.095, 54.706 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionEastofEngland", "description": "Woods, heaths and the best coastal views", "id": "6118", "imageDescription": "Looking towards the sea through bare branched trees", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431767076181-westrunton-web-156.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431767076181-westrunton-web-156.jpg", "openingTimeStatus": "Open today", "subTitle": "West Runton, Norfolk", "title": "West Runton and Beeston Regis Heath", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/west-runton-and-beeston-regis-heath" }, "geometry": { "type": "Point", "coordinates": [ 1.247689, 52.92557 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "An historic landscape full of natural beauty", "id": "6119", "imageDescription": "Flood meadows at Cock Marsh, Cookham", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431747547251-cock-marsh-ponds-hm.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431747547251-cock-marsh-ponds-hm.jpg", "subTitle": "Maidenhead, Berkshire", "title": "Maidenhead and Cookham Commons", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/maidenhead-and-cookham-commons" }, "geometry": { "type": "Point", "coordinates": [ -0.714663, 51.559538 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Hidden woods with ancient trees and flower-sprinkled grasslands, just off the North Downs and Pilgrims Ways", "id": "6120", "imageDescription": "Shady footpath on Abinger Roughs ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/abinger-roughs-shady-path.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/abinger-roughs-shady-path.jpg", "openingTimeStatus": "Open today", "subTitle": "Abinger Hammer, Surrey", "title": "Abinger Roughs and Netley Park", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/abinger-roughs-and-netley-park" }, "geometry": { "type": "Point", "coordinates": [ -0.43698789, 51.22138228 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Hidden woodlands, lush green meadows, tranquil ponds and an ancient common", "id": "6121", "imageDescription": "Primroses on the Harewoods Estate", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431746640408-outwood-april-2014-001-1.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431746640408-outwood-april-2014-001-1.jpg", "openingTimeStatus": "Open today", "subTitle": "Redhill, Surrey", "title": "Harewoods", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/harewoods" }, "geometry": { "type": "Point", "coordinates": [ -0.09928361, 51.20469344 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Horse riding, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "A wonderful mix of open heathland, woodland and chalk downland", "id": "6122", "imageDescription": "Spring on Headley Heath Surrey", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431774273687-dsc00143.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431774273687-dsc00143.jpg", "openingTimeStatus": "Open today", "subTitle": "Headley Heath, Surrey", "title": "Headley Heath", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/headley-heath" }, "geometry": { "type": "Point", "coordinates": [ -0.28147465, 51.26353606 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Horse riding, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Ancient commons, mentioned in the Domesday Book, with grassland plains, mighty oak woods and serene ponds", "id": "6123", "imageDescription": "Goslings at Bookham Commons Surrey", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431774848203-goslings-by-colin-kemp.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431774848203-goslings-by-colin-kemp.jpg", "openingTimeStatus": "Open today", "subTitle": "Great Bookham, Surrey", "title": "Bookham Commons", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/bookham-commons" }, "geometry": { "type": "Point", "coordinates": [ -0.38811845, 51.29498931 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Running, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Medieval bishops' fish pond in tranquil wildlife haven amidst precious heathland", "id": "6124", "imageDescription": "A pair of mute swans", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431799424200-swansatfrensham.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431799424200-swansatfrensham.jpg", "openingTimeStatus": "Open today", "subTitle": "Frensham, Surrey", "title": "Frensham Little Pond", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/frensham-little-pond" }, "geometry": { "type": "Point", "coordinates": [ -0.77272665, 51.16990143 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Horse riding, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Ancient common once owned by King Harold and William the Conqueror", "id": "6125", "imageDescription": "Spring day at Holmwood Commmon", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431799328439-springbluebellsholmwoodcommoncropped", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431799328439-springbluebellsholmwoodcommoncropped", "openingTimeStatus": "Open today", "subTitle": "Holmwood, Surrey", "title": "Holmwood Common", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/holmwood-common" }, "geometry": { "type": "Point", "coordinates": [ -0.32673614, 51.20124286 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Memorial to Octavia Hill overlooking the Surrey Hills Area of Outstanding Natural Beauty", "id": "6126", "imageDescription": "Bluebells at Blakes Wood, Essex, in spring", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431744394389-193261bluebellsblakeswooddanburycommon.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431744394389-193261bluebellsblakeswooddanburycommon.jpg", "openingTimeStatus": "Open today", "subTitle": "Godalming, Surrey", "title": "Hydon's Ball and Heath", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hydons-ball-and-heath" }, "geometry": { "type": "Point", "coordinates": [ -0.60319275, 51.1473173 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Ancient common on the Greensand Ridge where time comes home to sleep", "id": "6127", "imageDescription": "View from the Scearn Bank", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/limpsfield-common---ttsd.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/limpsfield-common---ttsd.jpg", "openingTimeStatus": "Open today", "subTitle": "Oxted, Surrey", "title": "Limpsfield Common", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/limpsfield-common" }, "geometry": { "type": "Point", "coordinates": [ 0.042615, 51.250685 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Geocaching, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "Stunning views from this 70-foot high folly", "id": "6130", "imageDescription": "People making their way around Penshaw Monument", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431730534082-help-to-assist-visitors-at-penshaw-monument.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431730534082-help-to-assist-visitors-at-penshaw-monument.jpg", "subTitle": "Penshaw, Tyne & Wear", "title": "Penshaw Monument", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/penshaw-monument" }, "geometry": { "type": "Point", "coordinates": [ -1.48092, 54.883243 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Running, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Rolling hills, distant views, chalk grassland, and acres of woodland to explore", "id": "6131", "imageDescription": "Bradenham bluebells", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431771771282-img1556.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431771771282-img1556.jpg", "openingTimeStatus": "Open today", "subTitle": "Aylesbury, Buckinghamshire", "title": "Chilterns Countryside", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/chilterns-countryside" }, "geometry": { "type": "Point", "coordinates": [ -0.771511, 51.751671 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Running, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "A colourful mosaic of blooming heather and gorse, braided wetlands and ancient woodland pasture", "id": "6132", "imageDescription": "New Forest ponies drink at Dockens Water in the New Forest, Hampshire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431760357373-webedit3.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431760357373-webedit3.jpg", "openingTimeStatus": "Open today", "subTitle": "Hampshire", "title": "New Forest Northern Commons", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/new-forest-northern-commons" }, "geometry": { "type": "Point", "coordinates": [ -1.7679058, 50.873754 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionSouthWest", "description": "Discover secluded bays, magical creeks - a quieter pace of life", "id": "6133", "imageDescription": "Winter view of Towan beach", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431740299317-roseland-towan-beach-harrydavies-1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431740299317-roseland-towan-beach-harrydavies-1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Truro, Cornwall", "title": "Roseland", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/roseland" }, "geometry": { "type": "Point", "coordinates": [ -4.9680841, 50.185857 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Towering above the sea, this historic headland offers dramatic, panoramic views", "id": "6134", "imageDescription": "Aerial view of the Dodman", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431764441360-dodman-aerial-view-nti-1267309-john-millar-1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431764441360-dodman-aerial-view-nti-1267309-john-millar-1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "St Austell, Cornwall", "title": "The Dodman", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/the-dodman" }, "geometry": { "type": "Point", "coordinates": [ -4.803553, 50.21985 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Walk over a jewel-like carpet of heather and gorse", "id": "6137", "imageDescription": "The coastal path at St Agnes Head", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431759048448-orst-agnes-head-g-taylor-2.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431759048448-orst-agnes-head-g-taylor-2.jpg", "openingTimeStatus": "Open today", "subTitle": "St Agnes, Cornwall", "title": "St Agnes Head", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/st-agnes-head" }, "geometry": { "type": "Point", "coordinates": [ -5.2322227, 50.31736 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionMidlands", "description": "The home of a family who lived and loved the Arts and Crafts ", "id": "6140", "imageDescription": "The cottage stands beyond the rowan tree in spring", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431743529767-key-image-spring.jpeg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431743529767-key-image-spring.jpeg", "openingTimeStatus": "Open today", "subTitle": "Leicestershire", "title": "Stoneywell", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/stoneywell" }, "geometry": { "type": "Point", "coordinates": [ -1.2706485, 52.7034271 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Two amazing sandy beaches on the Roseland peninsula", "id": "6142", "imageDescription": "Carne beach", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735733175-carne-beach-ntranger1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735733175-carne-beach-ntranger1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Truro, Cornwall", "title": "Carne and Pendower", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/carne-and-pendower" }, "geometry": { "type": "Point", "coordinates": [ -4.937177, 50.207385 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Exceptionally beautiful beach on a turquoise bay backed by granite cliffs.", "id": "6143", "imageDescription": "Logan Rock from Porthcurno Beach, Cornwall ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431758679902-the-jagged.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431758679902-the-jagged.jpg", "openingTimeStatus": "Open today", "subTitle": "Porthcurno, Cornwall", "title": "Porthcurno", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/porthcurno" }, "geometry": { "type": "Point", "coordinates": [ -5.6558, 50.0473 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Canoeing and kayaking, Climbing, Coasteering, Cycling, Surfing, Walking", "cmsRegion": "RegionWales", "description": "Come in and explore, learn, reflect and enjoy the natural environment", "id": "6144", "imageDescription": "Porth y Swnt Visitor Centre at Aberdaron ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431742679808-porth-y-swnt-2.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431742679808-porth-y-swnt-2.jpg", "openingTimeStatus": "Open today", "subTitle": "Pwllheli", "title": "Porth y Swnt", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/porth-y-swnt" }, "geometry": { "type": "Point", "coordinates": [ -4.7116944, 52.804818 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionWales", "description": "Beautiful secluded bay with a sandy beach", "id": "6146", "imageDescription": "Mwnt beach in the summer is home to dolphins, seals and porpoises", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431748080780-mwnt.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431748080780-mwnt.jpg", "openingTimeStatus": "Open today", "subTitle": "near Cardigan", "title": "Mwnt", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/mwnt" }, "geometry": { "type": "Point", "coordinates": [ -4.64063, 52.1354 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionWales", "description": "A sheltered sandy beach with colourful beach huts overlooking Cardigan Bay.", "id": "6148", "imageDescription": "View towards Llanbedrog beach, Llŷn Peninsula ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737564702-llanbedrog3.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737564702-llanbedrog3.jpg", "openingTimeStatus": "Open today", "subTitle": "Gwynedd", "title": "Llanbedrog Beach", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/llanbedrog-beach" }, "geometry": { "type": "Point", "coordinates": [ -4.484416, 52.857872 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionWales", "description": "One of Ceredigion’s best-kept secrets", "id": "6150", "imageDescription": "The golden sands of Penbryn beach", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431748097018-penbryn.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431748097018-penbryn.jpg", "openingTimeStatus": "Open today", "subTitle": "near Cardigan, Ceredigion", "title": "Penbryn", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/penbryn" }, "geometry": { "type": "Point", "coordinates": [ -4.491561, 52.139237 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Surfing, Walking", "cmsRegion": "RegionSouthWest", "description": "A sandy sheltered beach on the west coast of the Lizard. A favourite amongst locals and visitors, surfers and wildlife watchers.", "id": "6155", "imageDescription": "Thrift overlooking the beach at Poldhu", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431742853232-thrift-at-poldhu-2-astley-for-web.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431742853232-thrift-at-poldhu-2-astley-for-web.jpg", "openingTimeStatus": "Open today", "subTitle": "near Helston, Cornwall", "title": "Poldhu Cove", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/poldhu-cove" }, "geometry": { "type": "Point", "coordinates": [ -5.256492, 50.015599 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Discover the magnificent beech woods and flower-filled meadows that inspired Gilbert White", "id": "6157", "imageDescription": "Selborne Common in spring", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737906582-selbourne-common-in-springtime-cropped.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737906582-selbourne-common-in-springtime-cropped.jpg", "openingTimeStatus": "Open today", "subTitle": "Selborne, Hampshire", "title": "Selborne Common", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/selborne-common" }, "geometry": { "type": "Point", "coordinates": [ -0.951764, 51.096107 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking", "cmsRegion": "RegionLondonSouthEast", "description": "One of the largest remaining areas of heathland in East Hampshire", "id": "6158", "imageDescription": "Ludshott Commons in spring", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737907259-ludshott-common-cropped.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737907259-ludshott-common-cropped.jpg", "openingTimeStatus": "Open today", "subTitle": "Nr Headley Down, Hampshire", "title": "Ludshott Commons", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/ludshott-commons" }, "geometry": { "type": "Point", "coordinates": [ -0.77936, 51.1084 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Geocaching, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "Beautiful ancient woodland and meadows on the banks of the River Swale", "id": "6170", "imageDescription": "Wood anenome at Hudswell Woods", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431747820662-hudswellwoodsyorkshiredalesspringview6.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431747820662-hudswellwoodsyorkshiredalesspringview6.jpg", "openingTimeStatus": "Open today", "subTitle": "Richmond, North Yorkshire", "title": "Hudswell Woods", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hudswell-woods" }, "geometry": { "type": "Point", "coordinates": [ -1.759486, 54.402646 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Geocaching, Running", "cmsRegion": "RegionYorkshireNorthEast", "description": "County Durham's coastline has emerged from a polluted industrial past to become a haven for wildlife", "id": "6171", "imageDescription": "Sunrise over Fox Holes near Easington Colliery, County Durham", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735789350-durhamcoast120791foxholeseasingtonsunrisejoecornish.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735789350-durhamcoast120791foxholeseasingtonsunrisejoecornish.jpg", "openingTimeStatus": "Open today", "subTitle": "Seaham, County Durham", "title": "Durham Coast", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/durham-coast" }, "geometry": { "type": "Point", "coordinates": [ -1.322313, 54.823619 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionNorthernIreland", "description": "This landmark building, formerly Belmont Primary School, has a history dating back to the 1890s", "id": "6186", "imageDescription": "Belmont Tower", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431765456120-mbp6884.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431765456120-mbp6884.jpg", "openingTimeStatus": "Open today", "subTitle": "Belfast, County Antrim", "title": "Belmont Tower", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/belmont-tower" }, "geometry": { "type": "Point", "coordinates": [ -5.865647, 54.59929 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionNorthWest", "description": "Valleys of many delights", "id": "6187", "imageDescription": "Walkers and their dogs at Blea Tarn in Eskdale and Duddon Valley, Cumbria", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431755866130-1192114-resized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431755866130-1192114-resized.jpg", "openingTimeStatus": "Open today", "subTitle": "Cumbria", "title": "Eskdale and Duddon Valley", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/eskdale-and-duddon-valley" }, "geometry": { "type": "Point", "coordinates": [ -3.190045, 54.353694 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionNorthWest", "description": "There are hidden gems of history and wildlife along this post-industrial coastline", "id": "6188", "imageDescription": "Daffodils flowering at the Candlestick, Whitehaven Coast", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431776381017-candlestick-and-daffschris-gomersall788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431776381017-candlestick-and-daffschris-gomersall788.jpg", "openingTimeStatus": "Open today", "subTitle": "Whitehaven, Cumbria", "title": "Whitehaven Coast", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/whitehaven-coast" }, "geometry": { "type": "Point", "coordinates": [ -3.598891, 54.543763 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "The first property to be acquired by the National Trust in the Peak District", "id": "6189", "imageDescription": "The exterior of Winster Market House", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/winster-market-house-by-david-slade.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/winster-market-house-by-david-slade.jpg", "openingTimeStatus": "Open today", "subTitle": "Winster, Derbyshire", "title": "Winster Market House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/winster-market-house" }, "geometry": { "type": "Point", "coordinates": [ -1.639948, 53.14169 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Tucked away at the bottom of the Roseland there's lots to discover for everyone.", "id": "6192", "imageDescription": "St Anthony Head", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736092338-135160withillustrations.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736092338-135160withillustrations.jpg", "openingTimeStatus": "Open today", "subTitle": "Truro, Cornwall", "title": "St Anthony Head", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/st-anthony-head" }, "geometry": { "type": "Point", "coordinates": [ -5.0145383, 50.141698 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionEastofEngland", "description": "20 acres of peaceful parkland located in the heart of Potters Bar", "id": "6193", "imageDescription": "Boundry oak trees at Morven Park", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/morven-banner-photo.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/morven-banner-photo.jpg", "openingTimeStatus": "Open today", "subTitle": "Potters Bar, Hertfordshire", "title": "Morven Park", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/morven-park" }, "geometry": { "type": "Point", "coordinates": [ -0.174226, 51.700131 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Climbing, Walking", "cmsRegion": "RegionNorthWest", "description": "Home of the Wild Ennerdale project with 30 miles of traffic-free paths", "id": "6196", "imageDescription": "View of Ennerdale in Spring", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431746225431-spring-view-with-daffodilcath-tyrrell-788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431746225431-spring-view-with-daffodilcath-tyrrell-788.jpg", "openingTimeStatus": "Open today", "subTitle": "Cleator Moor, Cumbria", "title": "Ennerdale", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/ennerdale" }, "geometry": { "type": "Point", "coordinates": [ -3.414473, 54.524792 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Beauty and genius in the Surrey Hills", "id": "6198", "imageDescription": "Still of Leith Hill Place 360 video showing outside of the house", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431762628142-1431753531195-leith-hill-place-north-approach-with-family.jpeg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431762628142-1431753531195-leith-hill-place-north-approach-with-family.jpeg", "openingTimeStatus": "Closed today", "subTitle": "Leith Hill, Surrey", "title": "Leith Hill Place", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/leith-hill-place" }, "geometry": { "type": "Point", "coordinates": [ -0.379853, 51.169511 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Woodland with an Iron Age past ", "id": "6199", "imageDescription": "View east at sunrise from Badbury Hill, Oxfordshire ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431758181987-sunrise-badbury-hill-877152-john-miller-resized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431758181987-sunrise-badbury-hill-877152-john-miller-resized.jpg", "openingTimeStatus": "Open today", "subTitle": "near Swindon, Oxfordshire", "title": "Badbury Hill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/badbury-hill" }, "geometry": { "type": "Point", "coordinates": [ -1.6227, 51.6505 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionMidlands", "description": "A tranquil Tudor manor house set in rare terraced gardens, with the 'antient' Dryden family at its heart", "id": "62", "imageDescription": "Canons Ashby house and garden blooming in the spring", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431807057006-housewebcover.png", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431807057006-housewebcover.png", "openingTimeStatus": "Open today", "subTitle": "near Daventry, Northamptonshire", "title": "Canons Ashby", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/canons-ashby" }, "geometry": { "type": "Point", "coordinates": [ -1.16034, 52.149502 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Iron Age hill fort with far reaching views and spectacular wildflowers", "id": "6204", "imageDescription": "The top of Hambledon Hill with a pink tinged sky behind", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737659963-hambledonhillview2rosshoddinott.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737659963-hambledonhillview2rosshoddinott.jpg", "openingTimeStatus": "Open today", "subTitle": "Dorset", "title": "Hambledon Hill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/hambledon-hill" }, "geometry": { "type": "Point", "coordinates": [ -2.22182, 50.911692 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "A striking landmark on the edge of the Blackdown Hills ", "id": "6205", "imageDescription": "Visit the National Trust's Wellington Monument, Somerset", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431789738888-098b-wellington-monument-1-c-national-trust-fran-stothard-website.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431789738888-098b-wellington-monument-1-c-national-trust-fran-stothard-website.jpg", "openingTimeStatus": "Open today", "subTitle": "Somerset", "title": "Wellington Monument", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/wellington-monument" }, "geometry": { "type": "Point", "coordinates": [ -3.229276, 50.948397 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionWales", "description": "Explore Southwood’s timeless landscape of wooded valleys, floral fields and craggy clifftops. Stretching straight to the sea, this charming coastal spot is full of scenic surprises.", "id": "6206", "imageDescription": "Two visitors walking on the Southwood Estate", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431794384410-1326228webresize.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431794384410-1326228webresize.jpg", "openingTimeStatus": "Open today", "subTitle": "Newgale, Roch, Pembrokeshire", "title": "Southwood Estate", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/southwood-estate" }, "geometry": { "type": "Point", "coordinates": [ -5.108836, 51.848127 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Quiet nature reserve with a surprising array of habitats", "id": "6207", "imageDescription": "Small heath butterfly at The Chase, Hampshire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735488853-small-heath-butterfly.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735488853-small-heath-butterfly.jpg", "openingTimeStatus": "Open today", "subTitle": "Woolton Hill, Hampshire", "title": "The Chase", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/the-chase" }, "geometry": { "type": "Point", "coordinates": [ -1.3671876, 51.364727 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionMidlands", "description": "An 18 mile limestone escarpment", "id": "6208", "imageDescription": "Footpath edged with wood anenomes on Wenlock Edge", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431801653759-footpathwithwoodanemonewenlockedge.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431801653759-footpathwithwoodanemonewenlockedge.jpg", "openingTimeStatus": "Open today", "subTitle": "Shropshire", "title": "Wenlock Edge", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/wenlock-edge" }, "geometry": { "type": "Point", "coordinates": [ -2.57391, 52.5915 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionNorthWest", "description": "A truly inspirational space", "id": "6209", "imageDescription": "Footprint in Windermere Cumbria", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431760418144-footprint-building-c.ntjohnmillar.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431760418144-footprint-building-c.ntjohnmillar.jpg", "openingTimeStatus": "Open today", "subTitle": "Windermere, Cumbria", "title": "Footprint", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/footprint" }, "geometry": { "type": "Point", "coordinates": [ -2.9117954, 54.389002 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionEastofEngland", "description": "Discover this hidden historical site in the midst of surrounding farmland ", "id": "6210", "imageDescription": "Single tree Darrow Wood", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431744189440-darrowwood-04.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431744189440-darrowwood-04.jpg", "openingTimeStatus": "Open today", "subTitle": "Harleston, Norfolk", "title": "Darrow Wood", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/darrow-wood" }, "geometry": { "type": "Point", "coordinates": [ 1.33221613, 52.455557 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionEastofEngland", "description": "Escape from it all at Kyson Hill", "id": "6211", "imageDescription": "Winter evening on Kyson Hill", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431769279873-richardscottevening5kysonhillcrop.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431769279873-richardscottevening5kysonhillcrop.jpg", "openingTimeStatus": "Open today", "subTitle": "Woodbridge, Suffolk", "title": "Kyson Hill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/kyson-hill" }, "geometry": { "type": "Point", "coordinates": [ 1.309956, 52.080922 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionNorthernIreland", "description": "Situated in the heart of the Glens of Antrim, Cushendun village is steeped in character and folklore", "id": "6213", "imageDescription": "Boats at their Moorings", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431804768115-boatsattheirmoorings.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431804768115-boatsattheirmoorings.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Cushendun, County Antrim", "title": "Cushendun", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/cushendun" }, "geometry": { "type": "Point", "coordinates": [ -6.04293, 55.1257 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Boating, Canoeing and kayaking, Dog walking, Sailing, Walking", "cmsRegion": "RegionSouthWest", "description": "Tucked in wooded valleys and surprising views of the restful Helford River", "id": "6214", "imageDescription": "a view of the Helford River and surrounding countryside", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431790398035-helfordautumn.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431790398035-helfordautumn.jpg", "openingTimeStatus": "Open today", "subTitle": "Cornwall", "title": "Bosveal", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/bosveal" }, "geometry": { "type": "Point", "coordinates": [ -5.1134464, 50.107933 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "A site of archaeological importance surrounded by dunes, beaches, a medieval church and a reedbed rich in wildlife.", "id": "6215", "imageDescription": "Gunwalloe Beach near Teneriffe Farm campsite, Cornwall", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431787255370-gunwalloebeachntjohnmiller.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431787255370-gunwalloebeachntjohnmiller.jpg", "openingTimeStatus": "Open today", "subTitle": "Cornwall", "title": "Gunwalloe", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/gunwalloe" }, "geometry": { "type": "Point", "coordinates": [ -5.2701813, 50.041934 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Gateway to a wild, remote coast with a rich history of wrecking and smuggling. Amazing walking, wildlife and sunbathing seals.", "id": "6217", "imageDescription": "Spring lambs at Morte Point", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431798308496-twomortepointlambsresized1400788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431798308496-twomortepointlambsresized1400788.jpg", "openingTimeStatus": "Open today", "subTitle": "Mortehoe, Devon", "title": "Mortehoe", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/mortehoe" }, "geometry": { "type": "Point", "coordinates": [ -4.198934, 51.187373 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Tranquil moorland by the River Plym with pools. Starting point for walks across open moors and tors, or ancient woodland", "id": "6218", "imageDescription": "Walkers crossing a leat on Trowlesworthy Warren, near Cadover Bridge, Upper Plym Valley", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431742632183-ntpl-1046126-john-millar-walkers-crossing-a-leat-on-trowlesworthy-warren-nr-c-bridge.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431742632183-ntpl-1046126-john-millar-walkers-crossing-a-leat-on-trowlesworthy-warren-nr-c-bridge.jpg", "openingTimeStatus": "Open today", "subTitle": "Devon", "title": "Cadover Bridge", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/cadover-bridge" }, "geometry": { "type": "Point", "coordinates": [ -4.036676, 50.463626 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "A calm spot over the River Teign with unspoilt woods", "id": "6219", "imageDescription": "Sunlight streams through the trees at the Iron bridge on the River Teign", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431798398001-johnhowellsriverteign.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431798398001-johnhowellsriverteign.jpg", "openingTimeStatus": "Open today", "subTitle": "Exeter, Devon", "title": "Fingle Bridge", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/fingle-bridge" }, "geometry": { "type": "Point", "coordinates": [ -3.780949, 50.695276 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Part of the Killerton estate and one of the largest woods in East Devon, with waymarked trails for exploring. A haven for butterflies, bluebells and birds.", "id": "6220", "imageDescription": "deer ashclyst", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431748771207-1312867010154542625631030289932390o.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431748771207-1312867010154542625631030289932390o.jpg", "openingTimeStatus": "Open today", "subTitle": "Exeter, Devon", "title": "Ashclyst Forest", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/ashclyst-forest" }, "geometry": { "type": "Point", "coordinates": [ -3.421156, 50.7875671 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Large shingly beach on a beautiful bay, great spot for paddling and picnicking, well worth the climb back up.", "id": "6222", "imageDescription": "Looking down onto Lantic Beach", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431742988276-lantic-bay-view-down-to-beach-nt-ranger-1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431742988276-lantic-bay-view-down-to-beach-nt-ranger-1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Cornwall", "title": "Lantic Bay", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/lantic-bay" }, "geometry": { "type": "Point", "coordinates": [ -4.6013886, 50.333005 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Coastal walks, wide open views and hidden coves", "id": "6223", "imageDescription": "Lantivet Bay, Cornwall", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431757845329-orlantivetbay.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431757845329-orlantivetbay.jpg", "openingTimeStatus": "Open today", "subTitle": "Lanteglos by Fowey, Cornwall", "title": "Lantivet Bay", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/lantivet-bay" }, "geometry": { "type": "Point", "coordinates": [ -4.590936, 50.336196 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Creekside and coastal footpaths make for great walking and wildlife spotting. Towan beach, close to Porth, is perfect for children.", "id": "6224", "imageDescription": "Towan beach at Porth looking towards Killigerran low tide", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431743866307-porth-towan-towards-killigerranlow-tide-e-shepherd-1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431743866307-porth-towan-towards-killigerranlow-tide-e-shepherd-1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Cornwall", "title": "Porth", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/porth" }, "geometry": { "type": "Point", "coordinates": [ -4.9867335, 50.157783 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Originally built in the 1890s, the picturesque harbour at Mullion Cove shelters a small fishing fleet from powerful westerly storms.", "id": "6225", "imageDescription": "A rainbow over Mullion Harbour", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431804856548-mullionrainbowforwebchrislacey.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431804856548-mullionrainbowforwebchrislacey.jpg", "openingTimeStatus": "Open today", "subTitle": "near Helston, Cornwall", "title": "Mullion Cove", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/mullion-cove" }, "geometry": { "type": "Point", "coordinates": [ -5.256341, 50.01651 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Swimming, Walking", "cmsRegion": "RegionSouthWest", "description": "A tidal beach for the adventurous, famous for its white sand, turquoise sea and rock stacks. ", "id": "6226", "imageDescription": "View of Kynance cove", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/lizardpointandkynancecove177149kynacecovex1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/lizardpointandkynancecove177149kynacecovex1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Nr. Helston, Cornwall", "title": "Kynance Cove", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/kynance-cove" }, "geometry": { "type": "Point", "coordinates": [ -5.2251121, 49.97421 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "A remote beach with rock pools overlooked by cliffs often carpeted with wild flowers.", "id": "6227", "imageDescription": "Duckpool beach in North Cornwall", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431742203757-duckpool-1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431742203757-duckpool-1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "Cornwall", "title": "Duckpool", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/duckpool" }, "geometry": { "type": "Point", "coordinates": [ -4.557695, 50.87657 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "This small rocky beach opens up to expansive sand and rock pools as the tide drops.", "id": "6228", "imageDescription": "Northcott Mouth beach in North Cornwall", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431742409502-northcott-mouth-beach-1400x788-bs.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431742409502-northcott-mouth-beach-1400x788-bs.jpg", "openingTimeStatus": "Open today", "subTitle": "Cornwall", "title": "Northcott Mouth", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/northcott-mouth" }, "geometry": { "type": "Point", "coordinates": [ -4.553248, 50.847404 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "A fascinating area of coast steeped in a history dominated by Parson Hawker", "id": "6229", "imageDescription": "The view from Hawker's Hut, on the coast near Morwenstow.", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/view-from-hawkers-hut.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/view-from-hawkers-hut.jpg", "openingTimeStatus": "Open today", "subTitle": "Cornwall", "title": "Morwenstow", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/morwenstow" }, "geometry": { "type": "Point", "coordinates": [ -4.553768, 50.908706 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "An expanse of golden sand, great for sandcastles and surfing", "id": "6230", "imageDescription": "Crantock Beach, Cornwall", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/crantock-beach-mike-simmondsc.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/crantock-beach-mike-simmondsc.jpg", "openingTimeStatus": "Open today", "subTitle": "near Newquay, Cornwall", "title": "Crantock Beach", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/crantock-beach" }, "geometry": { "type": "Point", "coordinates": [ -5.113636, 50.407092 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Boating, Canoeing and kayaking, Running, Sailing, Surfing, Walking", "cmsRegion": "RegionSouthWest", "description": "A coastline of dramatic cliffs, open farmland and hidden sandy coves", "id": "6231", "imageDescription": "There are stunning walks along the coast path around Salcombe, Soar Mill Cove and Hope Cove", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431745738756-east-soar-walking-sign-eric-mcdonald.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431745738756-east-soar-walking-sign-eric-mcdonald.jpg", "openingTimeStatus": "Open today", "subTitle": "near Malborough, Devon", "title": "East Soar", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/east-soar" }, "geometry": { "type": "Point", "coordinates": [ -3.8274018, 50.2208852 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Walking", "cmsRegion": "RegionSouthWest", "description": "On the wild Tin Coast, the famed Crowns engine houses cling to the foot of the cliffs. Part of the Cornish Mining World Heritage Site and Poldark filming location.", "id": "6232", "imageDescription": "The crowns engine houses at Botallack", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431758659597-crowns-at-sunset---john-miller.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431758659597-crowns-at-sunset---john-miller.jpg", "openingTimeStatus": "Open today", "subTitle": "near St Just, Cornwall", "title": "Botallack", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/botallack" }, "geometry": { "type": "Point", "coordinates": [ -5.689126, 50.140729 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionWales", "description": "Ranger base and café nestled between the dramatic Carneddau and Glyderau mountain ranges ", "id": "6235", "imageDescription": "Walkers heading towards Ogwen Cottage ", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431757044316-11902611.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431757044316-11902611.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Bethesda, Gwynedd", "title": "Ogwen Cottage", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/ogwen-cottage" }, "geometry": { "type": "Point", "coordinates": [ -4.018443, 53.123328 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Climbing", "cmsRegion": "RegionSouthWest", "description": "Ancient oakwoods and mossy boulders cloak the Plym Valley; riverside walks pass the atmospheric Dewerstone Rocks and industrial ruins.", "id": "6236", "imageDescription": "View from Shaugh Bridge, Devon", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431768943242-view-from-shaugh-footbridge-nt.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431768943242-view-from-shaugh-footbridge-nt.jpg", "openingTimeStatus": "Open today", "subTitle": "Devon", "title": "Shaugh Bridge", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/shaugh-bridge" }, "geometry": { "type": "Point", "coordinates": [ -4.06731, 50.453951 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "A natural pier into the Bristol Channel, north of Weston-super-Mare and Brean Down. Perfect for picnics; views across Sand Bay.", "id": "6238", "imageDescription": "A giant octopus kite takes to the skies at Brean Down beach", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/20151021-octopus-at-brean-kite-fest.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/20151021-octopus-at-brean-kite-fest.jpg", "openingTimeStatus": "Open today", "subTitle": "Weston-super-Mare, Somerset", "title": "Sand Point", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/sand-point" }, "geometry": { "type": "Point", "coordinates": [ -2.963809, 51.388837 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "A peaceful coastal hamlet on the edge of the Holnicote estate, with distinctive thatched cottages.", "id": "6239", "imageDescription": "Early morning on Exmoor's coastline at Bossington Beach", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431770762362-76106web.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431770762362-76106web.jpg", "openingTimeStatus": "Open today", "subTitle": "Somerset", "title": "Bossington", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/bossington" }, "geometry": { "type": "Point", "coordinates": [ -3.582119, 51.22117 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Orienteering, Walking", "cmsRegion": "RegionSouthWest", "description": "One of the largest and most beautiful ancient oak woods in Britain, a National nature Reserve nestled on the Holnicote estate.", "id": "6240", "imageDescription": "Horner Water in Horner Wood", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431770768513-126979web.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431770768513-126979web.jpg", "openingTimeStatus": "Open today", "subTitle": "Somerset", "title": "Horner Wood", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/horner-wood" }, "geometry": { "type": "Point", "coordinates": [ -3.585608, 51.184803 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "A timeless rural landscape of thatched cottages, nestled in the vale of the Holnicote estate.", "id": "6241", "imageDescription": "View over thatched cottages of Selworthy towards Dunkery Beacon", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431770772396-102453-web.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431770772396-102453-web.jpg", "openingTimeStatus": "Open today", "subTitle": "Somerset", "title": "Selworthy", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/selworthy" }, "geometry": { "type": "Point", "coordinates": [ -3.547135, 51.210558 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "A fine lookout on the Holnicote Estate with views over Horner Wood and the wild expanse of moorland stretching up to Dunkery Beacon, the highest point on Exmoor.", "id": "6242", "imageDescription": "Exmoor Pony at Webbers Post", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431770774571-1046028-web.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431770774571-1046028-web.jpg", "openingTimeStatus": "Open today", "subTitle": "Somerset", "title": "Webber's Post", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/webbers-post" }, "geometry": { "type": "Point", "coordinates": [ -3.571351, 51.18288 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Surfing, Walking", "cmsRegion": "RegionWales", "description": "A wild, sandy stretch adored by adventurous souls and nature lovers. Make the most of the coast, head inland for wildlife wows and sleep easy under the stars at our rustic farm campsite.", "id": "6245", "imageDescription": "Sand dunes overlooking the beach at Freshwater West", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736985348-svw-c27-0910-0078-a4---crown-copyright-2015-visit-wales.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736985348-svw-c27-0910-0078-a4---crown-copyright-2015-visit-wales.jpg", "openingTimeStatus": "Open today", "subTitle": "Pembrokeshire", "title": "Freshwater West and Gupton Farm", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/freshwater-west-and-gupton-farm" }, "geometry": { "type": "Point", "coordinates": [ -5.0264267, 51.6479096 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionYorkshireNorthEast", "description": "Surrounded by dramatic open moorland, Bransdale is a quiet green oasis characterised by a patchwork of farmland and drystone walls. Footpaths and a bridleway cross the valley bringing in walkers and cyclists, while a single narrow road circles the dale. The National Trust team works closely with tenants to keep this secluded valley unspoilt.", "id": "6246", "imageDescription": "A view of green fields and dry stone walls in the valley of Bransdale", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431803857208-bransdaleviewsouthzoefrankwebresized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431803857208-bransdaleviewsouthzoefrankwebresized.jpg", "openingTimeStatus": "Open today", "subTitle": "Fadmoor, Yorkshire", "title": "Bransdale", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/bransdale" }, "geometry": { "type": "Point", "coordinates": [ -1.035879, 54.350815 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "Nineteenth century canal-side stables and stores in Birmingham city centre. To be transformed into a hub from which to explore the city by foot, bike or boat.", "id": "6247", "imageDescription": "Roundhouse Birmingham aerial photography", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431778293049-roundhouse-cms-1400-x-788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431778293049-roundhouse-cms-1400-x-788.jpg", "subTitle": "Birmingham, West Midlands", "title": "The Roundhouse", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/roundhouse-birmingham" }, "geometry": { "type": "Point", "coordinates": [ -1.918828, 52.478946 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionMidlands", "description": "Birthplace of Sir Edward Elgar", "id": "6248", "imageDescription": "image of the cottage garden in spring", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431783251337-cottage-garden-170418-6-credit-peter-young.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431783251337-cottage-garden-170418-6-credit-peter-young.jpg", "openingTimeStatus": "Closed today", "subTitle": "Lower Broadheath, Worcestershire", "title": "The Firs", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/the-firs" }, "geometry": { "type": "Point", "coordinates": [ -2.2834974, 52.1989833 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Dramatic ruins on cliffs carpeted with heather and gorse.", "id": "6249", "imageDescription": "Wheal Coates from the beach", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431766535994-wheal-coates-view-from-the-beach-g-taylor-1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431766535994-wheal-coates-view-from-the-beach-g-taylor-1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "St Agnes, Cornwall", "title": "Wheal Coates", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/wheal-coates" }, "geometry": { "type": "Point", "coordinates": [ -5.2315736, 50.306226 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Dog walking, Swimming, Walking", "cmsRegion": "RegionMidlands", "description": "Take a walk across the wildlife-rich heathland and enjoy the views across the Shropshire Hills, or simply play in the stream in the valley.", "id": "63", "imageDescription": "Cow Ridge and beyond on the Long Mynd", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806149966-cowridgeandbeyondearlysummermw.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806149966-cowridgeandbeyondearlysummermw.jpg", "openingTimeStatus": "Open today", "subTitle": "Shropshire", "title": "Carding Mill Valley and the Long Mynd", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/carding-mill-valley-and-the-long-mynd" }, "geometry": { "type": "Point", "coordinates": [ -2.82018, 52.5448 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "The Chelsea home of a Victorian literary couple", "id": "64", "imageDescription": "Carlyles House exterior", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736647902-carlyles-house-street-view.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736647902-carlyles-house-street-view.jpg", "openingTimeStatus": "Closed today", "subTitle": "Chelsea, London", "title": "Carlyle's House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/carlyles-house" }, "geometry": { "type": "Point", "coordinates": [ -0.170021, 51.484326 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Dramatic coastline with views over huge rock stacks", "id": "65", "imageDescription": "The dramatic coastline at Carnewas", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431747390132-carnewas-sm-april-2016-1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431747390132-carnewas-sm-april-2016-1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "near Padstow, Cornwall", "title": "Carnewas at Bedruthan", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/carnewas-at-bedruthan" }, "geometry": { "type": "Point", "coordinates": [ -5.027738, 50.481434 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Working Victorian watermill and workshops nestled in a wooded valley", "id": "653", "imageDescription": "The waterwheel at Cotehele Mill, Cornwall", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735018464-cotehelemillwheel1june2015john-parker1400x788.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735018464-cotehelemillwheel1june2015john-parker1400x788.jpg", "openingTimeStatus": "Open today", "subTitle": "near Saltash, Cornwall", "title": "Cotehele Mill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/cotehele-mill" }, "geometry": { "type": "Point", "coordinates": [ -4.233089, 50.492164 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionWales", "description": "Nestled in St David’s, the visitor centre and shop is a brilliant base for discovering Pembrokeshire. Plan your visit with the team, have a browse and help support our special places.", "id": "655", "imageDescription": "Seasonal stock on display at St David's Visitor Centre and Shop", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431734728884-st-davids-shop---nicola-davies.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431734728884-st-davids-shop---nicola-davies.jpg", "openingTimeStatus": "Open today", "subTitle": "St David's, Pembrokeshire", "title": "St David's Visitor Centre and Shop", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/st-davids-visitor-centre-and-shop" }, "geometry": { "type": "Point", "coordinates": [ -5.26292, 51.880299 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionMidlands", "description": "Atmospheric Victorian workhouse", "id": "656", "imageDescription": "Front of the Workhouse, Southwell on a spring day", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431802870501-whouse.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431802870501-whouse.jpg", "openingTimeStatus": "Open today", "subTitle": "Southwell, Nottinghamshire", "title": "The Workhouse, Southwell", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/the-workhouse-southwell" }, "geometry": { "type": "Point", "coordinates": [ -0.93707, 53.0811 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionMidlands", "description": "Remote late 17th-century Baptist chapel", "id": "657", "imageDescription": "Monksthorpe Chapel", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431776067993-monksthorpe-2.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431776067993-monksthorpe-2.jpg", "openingTimeStatus": "Open today", "subTitle": "near Spilsby, Lincolnshire", "title": "Gunby Hall Estate: Monksthorpe Chapel", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/gunby-hall-estate-monksthorpe-chapel" }, "geometry": { "type": "Point", "coordinates": [ 0.16874, 53.164902 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionNorthernIreland", "description": "Magnificent 18th-century mansion and landscape park", "id": "67", "imageDescription": "A bright spring day at Castle Coole", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431769875326-cc-spring-field-sb.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431769875326-cc-spring-field-sb.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Enniskillen, County Fermanagh", "title": "Castle Coole", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/castle-coole" }, "geometry": { "type": "Point", "coordinates": [ -7.60046, 54.335499 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Geocaching, Orienteering, Walking", "cmsRegion": "RegionSouthWest", "description": "Nothing is normal. Dramatic castle overlooking the Teign Gorge, undergoing a conservation project to make it watertight", "id": "68", "imageDescription": "A view of Dartmoor fromm Castle Drogo", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431795805079-webresizebuilding.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431795805079-webresizebuilding.jpg", "openingTimeStatus": "Open today", "subTitle": "near Exeter, Devon", "title": "Castle Drogo", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/castle-drogo" }, "geometry": { "type": "Point", "coordinates": [ -3.80881, 50.698898 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionWales", "description": "Charming 18th-century Round House and Naval Temple", "id": "69", "imageDescription": "The Kymin Round House in Monmouth, South Wales", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806715336-smr5672kyminroundhouseviewsimonrutherford.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806715336-smr5672kyminroundhouseviewsimonrutherford.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Monmouth, Monmouthshire", "title": "The Kymin", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/kymin" }, "geometry": { "type": "Point", "coordinates": [ -2.68323, 51.809101 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "Gorge of the River Allen with ornamental and ancient woodland", "id": "7", "imageDescription": "A group of friends enjoy a picnic", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431800086164-1167457.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431800086164-1167457.jpg", "openingTimeStatus": "Open today", "subTitle": "Hexham, Northumberland", "title": "Allen Banks and Staward Gorge", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/allen-banks-and-staward-gorge" }, "geometry": { "type": "Point", "coordinates": [ -2.31392, 54.964001 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Archery, Cycling, Dog walking, Geocaching, Horse riding, Running, Walking", "cmsRegion": "RegionNorthernIreland", "description": "Unique 18th-century mansion, famed for its mixture of architectural styles", "id": "70", "imageDescription": "Temple Water at Castle Ward with two swans swimming", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431746521049-castlewardcountrysidewalk.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431746521049-castlewardcountrysidewalk.jpg", "openingTimeStatus": "Open today", "subTitle": "Downpatrick, County Down", "title": "Castle Ward", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/castle-ward" }, "geometry": { "type": "Point", "coordinates": [ -5.58034, 54.368301 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionMidlands", "description": "A Victorian home set in landscaped deer park", "id": "71", "imageDescription": "Explore Charlecote and its parkland in this beautiful riverside setting this spring", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806961874-charlecote2018latespringview.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806961874-charlecote2018latespringview.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Warwick, Warwickshire", "title": "Charlecote Park", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/charlecote-park" }, "geometry": { "type": "Point", "coordinates": [ -1.62103, 52.205101 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Geocaching, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Family home and garden of Sir Winston Churchill", "id": "72", "imageDescription": "A bluebell view across the estate to the house at Chartwell, a National Trust property in Kent", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806753008-2018418jonaschartwellimg2630-2websitesize.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806753008-2018418jonaschartwellimg2630-2websitesize.jpg", "openingTimeStatus": "Open today", "subTitle": "Westerham, Kent", "title": "Chartwell", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/chartwell" }, "geometry": { "type": "Point", "coordinates": [ 0.083513, 51.2459 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Discover the myths and memories of an ancient country house, a compelling time capsule of 400 years of family life", "id": "73", "imageDescription": "Exterior of Chastleton House, Oxfordshire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806712242-springexteriorchastletonhouseweb.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806712242-springexteriorchastletonhouseweb.jpg", "openingTimeStatus": "Closed today", "subTitle": "near Moreton-in-Marsh, Oxfordshire", "title": "Chastleton House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/chastleton-house" }, "geometry": { "type": "Point", "coordinates": [ -1.63895, 51.960098 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Cradled in a beautiful Cotswold valley rest the remains of one of the grandest Roman villas in Britain", "id": "74", "imageDescription": "A group visiting Chedworth Roman Villa", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431763661386-281016-crv-guided-tour-nicki-folland.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431763661386-281016-crv-guided-tour-nicki-folland.jpg", "openingTimeStatus": "Open today", "subTitle": "near Cheltenham, Gloucestershire", "title": "Chedworth Roman Villa", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/chedworth-roman-villa" }, "geometry": { "type": "Point", "coordinates": [ -1.92295, 51.819401 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionYorkshireNorthEast", "description": "Cottage and farmhouse, the birthplace of Thomas Bewick", "id": "75", "imageDescription": "The farmhouse at Cherryburn", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431798993599-cherryburncreditchrislacey.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431798993599-cherryburncreditchrislacey.jpg", "openingTimeStatus": "Open today", "subTitle": "Stocksfield, Northumberland", "title": "Cherryburn", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/cherryburn" }, "geometry": { "type": "Point", "coordinates": [ -1.88361, 54.957001 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionWales", "description": "Magnificent medieval fortress of the Welsh Marches", "id": "76", "imageDescription": "Daffodils on the lawn at Chirk Castle seen from the East", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431744516564-daffodil-lawn-from-se-pix.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431744516564-daffodil-lawn-from-se-pix.jpg", "openingTimeStatus": "Open today", "subTitle": "Chirk, Wrexham", "title": "Chirk Castle", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/chirk-castle" }, "geometry": { "type": "Point", "coordinates": [ -3.08353, 52.935902 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Fine two-storey granite building dating from c.1537", "id": "77", "imageDescription": "Pony on Bel Tor, near The Church House, Devon", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431735789946-widecombeponyonbeltoradriancolston.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431735789946-widecombeponyonbeltoradriancolston.jpg", "subTitle": "Newton Abbot, Devon", "title": "The Church House", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/the-church-house" }, "geometry": { "type": "Point", "coordinates": [ -3.81067, 50.576199 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionWales", "description": "Uncover nearly 800 years of history at the magnificent Cilgerran Castle. This striking 13th-century fortress is perched overlooking the spectacular Teifi Gorge.", "id": "78", "imageDescription": "Cilgerran Castle overlooking River Teifi", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431734870132-98308---national-trust-images-joe-cornish.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431734870132-98308---national-trust-images-joe-cornish.jpg", "openingTimeStatus": "Open today", "subTitle": "near Cardigan, Pembrokeshire", "title": "Cilgerran Castle", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/cilgerran-castle" }, "geometry": { "type": "Point", "coordinates": [ -4.63413, 52.0574 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Follow our progress to rebuild Clandon Park, honouring the rich heritage of its past and creating a new legacy for the future", "id": "79", "imageDescription": "A aerial view of Clandon Park following the fire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431754343747-1144950.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431754343747-1144950.jpg", "openingTimeStatus": "Closed today", "subTitle": "Guildford, Surrey", "title": "Clandon Park", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/clandon-park" }, "geometry": { "type": "Point", "coordinates": [ -0.50805, 51.253399 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Surfing, Swimming", "cmsRegion": "RegionSouthWest", "description": "A long sweep of golden sand and rock pools, with crystal clear waters and iconic rock archway", "id": "794", "imageDescription": "Dogs love the sandy, long beach at South Milton Sands", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431801158616-philhemsleydogwalkstowardscameraonbeachwithwalkersouthdevonsouthmiltonsandsmr041.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431801158616-philhemsleydogwalkstowardscameraonbeachwithwalkersouthdevonsouthmiltonsandsmr041.jpg", "openingTimeStatus": "Open today", "subTitle": "near Kingsbridge, Devon", "title": "South Milton Sands", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/south-milton-sands" }, "geometry": { "type": "Point", "coordinates": [ -3.857038, 50.259597 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "A garden for all seasons", "id": "80", "imageDescription": "View of the lake and ampitheatre at Claremont", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431800123797-andrewbutleramphitheatrentpl956914spring2018resizedforweb.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431800123797-andrewbutleramphitheatrentpl956914spring2018resizedforweb.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Esher, Surrey", "title": "Claremont Landscape Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/claremont-landscape-garden" }, "geometry": { "type": "Point", "coordinates": [ -0.381433, 51.355785 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionLondonSouthEast", "description": "Splendid eighteenth-century English interiors in an idyllic country setting", "id": "81", "imageDescription": "Winter at Claydon", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431768998755-claydon-over-the-lake-web.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431768998755-claydon-over-the-lake-web.jpg", "openingTimeStatus": "Open today", "subTitle": "near Buckingham, Buckinghamshire", "title": "Claydon", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/claydon" }, "geometry": { "type": "Point", "coordinates": [ -0.95617, 51.924599 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Boating, Dog walking, Walking", "cmsRegion": "RegionLondonSouthEast", "description": "Glorious gardens overlooking the River Thames", "id": "82", "imageDescription": "Bluebells at Cliveden", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431802666941-bluebellsmegandoranapril2015.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431802666941-bluebellsmegandoranapril2015.jpg", "openingTimeStatus": "Partially open today", "subTitle": "Buckinghamshire", "title": "Cliveden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/cliveden" }, "geometry": { "type": "Point", "coordinates": [ -0.6815729, 51.556473 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Archery, Cycling, Dog walking, Geocaching, Orienteering, Running, Walking", "cmsRegion": "RegionMidlands", "description": "Freedom to discover", "id": "83", "imageDescription": "Bluebells at Clumber Park", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431747997077-bluebells-for-web.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431747997077-bluebells-for-web.jpg", "openingTimeStatus": "Open today", "subTitle": "Worksop, Nottinghamshire", "title": "Clumber Park", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/clumber-park" }, "geometry": { "type": "Point", "coordinates": [ -1.06568, 53.2691 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Outstanding 14th-century manor house and 18th-century terraced garden", "id": "84", "imageDescription": "Clevedon Court North Somerset", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431738147216-clevedon-court.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431738147216-clevedon-court.jpg", "openingTimeStatus": "Closed today", "subTitle": "Clevedon, North Somerset", "title": "Clevedon Court", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/clevedon-court" }, "geometry": { "type": "Point", "coordinates": [ -2.831597, 51.439657 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling", "cmsRegion": "RegionSouthWest", "description": "The rural retreat of T. E. Lawrence", "id": "85", "imageDescription": "Visitors in the garden in spring", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431802973857-1173473avisitorrelaxinginthegardeninmayatcloudshillntiltonygillweb.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431802973857-1173473avisitorrelaxinginthegardeninmayatcloudshillntiltonygillweb.jpg", "openingTimeStatus": "Open today", "subTitle": "near Wareham, Dorset", "title": "Clouds Hill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/clouds-hill" }, "geometry": { "type": "Point", "coordinates": [ -2.251675, 50.717878 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionEastofEngland", "description": "13th-century monastic barn", "id": "86", "imageDescription": "The outside of the Grange barn with picnic benches infront", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737163512-1166604.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737163512-1166604.jpg", "openingTimeStatus": "Open today", "subTitle": "Colchester, Essex", "title": "Grange Barn", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/grange-barn" }, "geometry": { "type": "Point", "coordinates": [ 0.68332, 51.869099 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionWales", "description": "Colby’s hidden wooded valley is full of surprises. With an industrial past and a secret garden, it’s the perfect place for heritage hunting and natural play.", "id": "87", "imageDescription": "Memorial at Colby Woodland Garden", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431800364604-1297699-nationaltrustjamesdobson.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431800364604-1297699-nationaltrustjamesdobson.jpg", "openingTimeStatus": "Open today", "subTitle": "near Amroth, Pembrokeshire", "title": "Colby Woodland Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/colby-woodland-garden" }, "geometry": { "type": "Point", "coordinates": [ -4.67168, 51.742001 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionWales", "description": "Elegant suspension bridge and toll-keeper's house", "id": "89", "imageDescription": "Conwy Suspension Bridge", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431737900892-conwy-suspension-bridge-3-web.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431737900892-conwy-suspension-bridge-3-web.jpg", "openingTimeStatus": "Open today", "subTitle": "Conwy", "title": "Conwy Suspension Bridge", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/conwy-suspension-bridge" }, "geometry": { "type": "Point", "coordinates": [ -3.828009, 53.281128 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Geocaching, Walking", "cmsRegion": "RegionEastofEngland", "description": "Jacobean-style house with gardens and a working watermill", "id": "9", "imageDescription": "Front view of Anglesey Abbey", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/anglesey-abbey---front-view-of-house---web-ready.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/anglesey-abbey---front-view-of-house---web-ready.jpg", "openingTimeStatus": "Open today", "subTitle": "Cambridge, Cambridgeshire", "title": "Anglesey Abbey, Gardens and Lode Mill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/anglesey-abbey-gardens-and-lode-mill" }, "geometry": { "type": "Point", "coordinates": [ 0.2448, 52.235915 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionMidlands", "description": "Coughton Court is an imposing Tudor house set in beautiful gardens with a collection of Catholic treasures", "id": "90", "imageDescription": "Tulips at Coughton Court, Warwickshire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431806230545-coughtontuliptime.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431806230545-coughtontuliptime.jpg", "openingTimeStatus": "Closed today", "subTitle": "Alcester, Warwickshire", "title": "Coughton Court", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/coughton-court" }, "geometry": { "type": "Point", "coordinates": [ -1.87794, 52.242802 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Cycling, Horse riding", "cmsRegion": "RegionLondonSouthEast", "description": "A blooming landscape of heathland restoration, open for special events which help people connect to nature", "id": "90001", "imageDescription": "Belted Galloway cattle grazing at Foxbury in the New Forest, Hampshire", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431741490183-1186695foxbury.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431741490183-1186695foxbury.jpg", "openingTimeStatus": "Closed today", "subTitle": "Romsey, Hampshire", "title": "Foxbury", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/foxbury" }, "geometry": { "type": "Point", "coordinates": [ -1.565524, 50.98094 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Jutting into the Atlantic, Trevose Head commands views for miles along the coast", "id": "90002", "imageDescription": "Aerial view of Trevose Head, Cornwall", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431790254405-1264412.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431790254405-1264412.jpg", "openingTimeStatus": "Open today", "subTitle": "near Padstow, Cornwall", "title": "Trevose Head", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/trevose-head" }, "geometry": { "type": "Point", "coordinates": [ -5.0187851, 50.543132 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "A working watermill nestled by the River Clyst on the Killerton estate", "id": "90005", "imageDescription": "Clyston Mill is nestled by the River Clyst.", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431753497963-clyston-mill-2016-2117-hdr-2-crop.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431753497963-clyston-mill-2016-2117-hdr-2-crop.jpg", "openingTimeStatus": "Open today", "subTitle": "Exeter, Devon", "title": "Clyston Mill", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/clyston-mill" }, "geometry": { "type": "Point", "coordinates": [ -3.4475338, 50.7657297 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Home of Romantic poet Samuel Taylor Coleridge", "id": "91", "imageDescription": "The writing desk in the Second Parlor at Coleridge Cottage", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431799931457-katechandlerpestboxremoved.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431799931457-katechandlerpestboxremoved.jpg", "openingTimeStatus": "Open today", "subTitle": "Bridgwater, Somerset", "title": "Coleridge Cottage", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/coleridge-cottage" }, "geometry": { "type": "Point", "coordinates": [ -3.157475, 51.151657 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Running, Walking", "cmsRegion": "RegionSouthWest", "description": "A 1920s country retreat complete with luxuriant garden by the sea", "id": "92", "imageDescription": "The exterior of Coleton Fishacre house", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431748336213-coletonfishacre1.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431748336213-coletonfishacre1.jpg", "openingTimeStatus": "Open today", "subTitle": "Kingswear, Devon", "title": "Coleton Fishacre", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/coleton-fishacre" }, "geometry": { "type": "Point", "coordinates": [ -3.53439, 50.345299 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Dramatic fortified manor house and small formal garden", "id": "93", "imageDescription": "A distant view of the north front of Compton Castle, Devon", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736607944-comptoncastle152749.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736607944-comptoncastle152749.jpg", "openingTimeStatus": "Open today", "subTitle": "Paignton, Devon", "title": "Compton Castle", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/compton-castle" }, "geometry": { "type": "Point", "coordinates": [ -3.59649, 50.472198 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Walking", "cmsRegion": "RegionSouthWest", "description": "Thousand-year-old royal castle shaped by warfare", "id": "94", "imageDescription": "Corfe Castle with the main gatehouse in the foreground", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431742047300-castleiconic1corfecastle.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431742047300-castleiconic1corfecastle.jpg", "openingTimeStatus": "Open today", "subTitle": "Wareham, Dorset", "title": "Corfe Castle", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/corfe-castle" }, "geometry": { "type": "Point", "coordinates": [ -2.05654, 50.637901 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Impressive Cornish beam engines and industrial heritage discovery centre", "id": "95", "imageDescription": "Michell's Engine House East Pool Mine", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431736492667-epm-main-image-resized.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431736492667-epm-main-image-resized.jpg", "openingTimeStatus": "Open today", "subTitle": "near Redruth, Cornwall", "title": "East Pool Mine", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/east-pool-mine" }, "geometry": { "type": "Point", "coordinates": [ -5.262162, 50.231016 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Sailing, Walking", "cmsRegion": "RegionSouthWest", "description": "Tudor house with superb collections, garden, quay and estate", "id": "96", "imageDescription": "The approach to Cotehele house with daffodils flowering in the grass", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431804749108-webdaffodilsentrance.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431804749108-webdaffodilsentrance.jpg", "openingTimeStatus": "Open today", "subTitle": "near Saltash, Cornwall", "title": "Cotehele", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/cotehele" }, "geometry": { "type": "Point", "coordinates": [ -4.22487, 50.494301 ] } },
{ "type": "Feature", "properties": { "cmsRegion": "RegionSouthWest", "description": "Delightful English country garden", "id": "97", "imageDescription": "View of the house at The Courts Garden across the lily pond in February", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431763975389-img9286.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431763975389-img9286.jpg", "openingTimeStatus": "Open today", "subTitle": "near Bradford on Avon, Wiltshire", "title": "The Courts Garden", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/the-courts-garden" }, "geometry": { "type": "Point", "coordinates": [ -2.20101, 51.354401 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Walking", "cmsRegion": "RegionYorkshireNorthEast", "description": "Extraordinary Victorian house, gardens and woodland - the wonder of its age", "id": "98", "imageDescription": "Nelly's Moss lakes in the sunshine", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431805310842-1366871.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431805310842-1366871.jpg", "openingTimeStatus": "Open today", "subTitle": "Morpeth, Northumberland", "title": "Cragside", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/cragside" }, "geometry": { "type": "Point", "coordinates": [ -1.8817, 55.312599 ] } },
{ "type": "Feature", "properties": { "activityTagsAsCsv": "Dog walking, Orienteering, Running, Walking", "cmsRegion": "RegionMidlands", "description": "1000 years of power, politics and pleasure in an intimate family home", "id": "99", "imageDescription": "Ancient trees in Croft Castle's parkland in Herefordshire, surrounded by bluebells", "imagePath": "https:\/\/www.nationaltrust.org.uk\/images\/1431753450245-bluebells-wood-pasture-may-2014-no-website.jpg", "imageUrl": "https:\/\/nt.global.ssl.fastly.net\/images\/1431753450245-bluebells-wood-pasture-may-2014-no-website.jpg", "openingTimeStatus": "Open today", "subTitle": "near Leominster, Herefordshire", "title": "Croft Castle and Parkland", "websiteUrl": "https:\/\/www.nationaltrust.org.uk\/croft-castle-and-parkland" }, "geometry": { "type": "Point", "coordinates": [ -2.79835, 52.284199 ] } }
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment