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.
Pensacola, Florida',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Louisville KY",
html: '
Chickasaw Park Louisville, Kentucky',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Somerville TX",
html: '
Dabney Hill Burleson County, Texas',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "San Diego CA",
html: '
Friendship Park San Diego, California',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Milwaukee MI",
html: '
Lindsay Heights Milwaukee, Wisconsin',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Chicago IL",
html: '
Milton Lee Olive Park Chicago, Illinois',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Franklin NC",
html: '
Nikwasi Mound Franklin, North Carolina',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Raleigh NC",
html: '
Rochester Heights Raleigh, North Carolina',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Staten Island NY",
html: '
Lincoln Avenue Corridor New Rochelle, New York
Sandy Ground Staten Island, New York',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Richmond VA",
html: '
Shockoe Hill African Burying Ground Richmond, Virginia
Water's Edge Oxford, Maryland',
icon: {
image: "img/pin.png",
iconsize: [26, 46],
iconanchor: [12, 46],
},
},
{
address: "Lincoln Hills CO",
html: '
Wink's Panorama Lincoln Hills, Colorado',
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");