Landslide Program
The goal of聽Landslide庐聽is to draw immediate
and lasting attention to threatened cultural landscapes.
尝补苍诲蝉濒颈诲别听 sparks debate, revealing the value of places
we experience daily and encouraging informed community-based
stewardship. Landslide monitors at-risk landscapes and
produces annual thematic reports to help save our shared
landscape legacy for future generations. Through web-based news
stories, traveling exhibitions, technical assistance, and print
publications, Landslide mobilizes and amplifies support
for that legacy at the local, state, and national level.
California',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Atlanta GA",
html: '
Deepdene Park at Druid Hills Atlanta, Georgia',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Lake Wales FL",
html: '
City of Lake Wales Lake Wales, Florida',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Boston MA",
html: '
Franklin Park Boston, Massachusetts',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Washington D.C.",
html: '
Olmsted Woods at Washington National Cathedral Washington, D.C.',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Calgary Canada",
html: '
Scarboro Calgary, Alberta, Canada ',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "East Providence RI",
html: '
Veterans Memorial Parkway East Providence, Rhode Island',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Milwaukee WI",
html: '
Washington Park Milwaukee, Wisconsin',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Staten Island NY",
html: '
Downing Park Newburgh, New York
Genesee Valley Park Rochester, New York
Planting Fields Arboretum State Historic Park Oyster Bay, New York',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Seattle WA",
html: '
Seattle Parks and Boulevards Seattle, Washington',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
];
// Map Initial Location
var initLatitude = 37.09024;
var initLongitude = -95.71289;
$("#googleMapsMacro").gMap({
controls: {
draggable: true,
panControl: true,
zoomControl: true,
mapTypeControl: true,
scaleControl: true,
streetViewControl: true,
overviewMapControl: true,
},
scrollwheel: false,
markers: mapMarkers,
latitude: initLatitude,
longitude: initLongitude,
zoom: 3,
});
$("#googleMapsMicro").gMap({
controls: {
draggable: false,
panControl: false,
zoomControl: false,
mapTypeControl: false,
scaleControl: false,
streetViewControl: false,
overviewMapControl: false,
},
scrollwheel: false,
markers: mapMarkers,
latitude: initLatitude,
longitude: initLongitude,
zoom: 13,
});
var mapRef = $("#googleMapsMacro, #googleMapsMicro").data(
"gMap.reference"
);
// Styles from https://snazzymaps.com/
var styles = [
{
featureType: "water",
elementType: "geometry",
stylers: [{ color: "#e9e9e9" }, { lightness: 17 }],
},
{
featureType: "landscape",
elementType: "geometry",
stylers: [{ color: "#f5f5f5" }, { lightness: 20 }],
},
{
featureType: "road.highway",
elementType: "geometry.fill",
stylers: [{ color: "#ffffff" }, { lightness: 17 }],
},
{
featureType: "road.highway",
elementType: "geometry.stroke",
stylers: [{ color: "#ffffff" }, { lightness: 29 }, { weight: 0.2 }],
},
{
featureType: "road.arterial",
elementType: "geometry",
stylers: [{ color: "#ffffff" }, { lightness: 18 }],
},
{
featureType: "road.local",
elementType: "geometry",
stylers: [{ color: "#ffffff" }, { lightness: 16 }],
},
{
featureType: "poi",
elementType: "geometry",
stylers: [{ color: "#f5f5f5" }, { lightness: 21 }],
},
{
featureType: "poi.park",
elementType: "geometry",
stylers: [{ color: "#dedede" }, { lightness: 21 }],
},
{
elementType: "labels.text.stroke",
stylers: [
{ visibility: "on" },
{ color: "#ffffff" },
{ lightness: 16 },
],
},
{
elementType: "labels.text.fill",
stylers: [
{ saturation: 36 },
{ color: "#333333" },
{ lightness: 40 },
],
},
{
elementType: "labels.icon",
stylers: [{ visibility: "off" }],
},
{
featureType: "transit",
elementType: "geometry",
stylers: [{ color: "#f2f2f2" }, { lightness: 19 }],
},
{
featureType: "administrative",
elementType: "geometry.fill",
stylers: [{ color: "#fefefe" }, { lightness: 20 }],
},
{
featureType: "administrative",
elementType: "geometry.stroke",
stylers: [{ color: "#fefefe" }, { lightness: 17 }, { weight: 1.2 }],
},
];
var styledMap = new google.maps.StyledMapType(styles, {
name: "Styled Map",
});
mapRef.mapTypes.set("map_style", styledMap);
mapRef.setMapTypeId("map_style");