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.
Nashville, Tennessee',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Salem OR",
html: '
Gaiety Hollow Salem, Oregon',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Los Angeles CA",
html: '
Hannah Carter Japanese Garden Los Angeles, California',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Minneapolis MN",
html: '
Peavey Plaza Minneapolis, Minnesota',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Providence RI",
html: '
Rhode Island State House GroundsProvidence, Rhode Island',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Highland Park IL",
html: '
Becker Estate Highland Park, Illinois',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Columbus IN",
html: '
Miller Garden Columbus, Indiana',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Philadelphia PA",
html: '
Allegheny Commons - Lake Elizabeth Pittsburgh, Pennsylvania
Franklin Court Philadelphia, Pennsylvania',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Princeton NJ",
html: '
Bell Laboratories Holmdel, New Jersey
Princeton Battlefield Princeton, New Jersey',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "New York NY",
html: '
Flushing Meadows Corona Park Queens, New York
The Frick Collection Russell Page Viewing Garden New York, New York
The Jay Estate Rye, New York
Sunnyside Gardens Queens, New York',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Washington D.C.",
html: '
Dumbarton Oaks Park Washington, DC
Tregaron Washington, DC',
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: 4,
});
$("#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");