<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8"/>
  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  <title>Bird's-Eye Views - William H. Clements Library</title>

  <!-- jQuery -->
  <script src="https://code.jquery.com/jquery-3.3.1.js"
  integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
  crossorigin="anonymous"></script>
  <script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js'></script>
  <script>window.jQuery || document.write('<script src="jQuery 3.3.1/jquery-3.3.1.js">/x3C/script>')</script>
  <script>window.jQuery || document.write('<script src="jQuery 3.3.1/jquery-3.3.1.min.js">/x3C/script>')</script>

  <!-- Leaflet -->
  <link href="https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.3.3/leaflet.css" media="screen, print" rel="stylesheet" integrity="sha512-Rksm5RenBEKSKFjgI3a41vrjkw4EVPlJ3+OiI65vTjIdo9brlAacEuKOiQ5OFh7cOI1bkDwLqdLw3Zg0cRJAAQ=="
  crossorigin="">
  <script type='text/javascript' src='https://cdnjs.cloudflare.com/ajax/libs/leaflet/1.3.3/leaflet.js' integrity="sha512-tAGcCfR4Sc5ZP5ZoVz0quoZDYX5aCtEm/eu1KhSLj2c9eFrylXZknQYmxUssFaVJKvvc0dJQixhGjG2yXWiV9Q=="
  crossorigin=""></script>

  <!-- MarkerCluster Plugin -->
  <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.3.0/MarkerCluster.css" />
  <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.3.0/MarkerCluster.Default.css" />
  <script type='text/javascript' src='https://cdnjs.cloudflare.com/ajax/libs/leaflet.markercluster/1.3.0/leaflet.markercluster.js'></script>

  <!-- tagFilterButton Plugin -->
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet-tag-filter-button@0.0.4/src/leaflet-tag-filter-button.css">
  <script src="https://cdn.jsdelivr.net/npm/leaflet-tag-filter-button@0.0.4/src/leaflet-tag-filter-button.js"></script>

  <!-- Fullscreen Plugin-->
  <link href='https://api.mapbox.com/mapbox.js/plugins/leaflet-fullscreen/v1.0.1/leaflet.fullscreen.css' rel='stylesheet' />
  <script src='https://api.mapbox.com/mapbox.js/plugins/leaflet-fullscreen/v1.0.1/Leaflet.fullscreen.min.js'></script>

  <!-- MarkerCluster Layer Support -->
  <script src="https://unpkg.com/leaflet.markercluster.layersupport@2.0.1/dist/leaflet.markercluster.layersupport.js"></script>

  <!-- fontawesome (used for extra icons) -->
  <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" type='text/css' integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">

  <!-- EasyButton Plugin (compatibility for tagFilterButton) -->
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/leaflet-easybutton@2/src/easy-button.css">
  <script src="https://cdn.jsdelivr.net/npm/leaflet-easybutton@2/src/easy-button.js"></script>


<style type="text/css">
/* sets the map size to fit the screen it is in (found from lyzidiamond.com/posts/osgeo-august-meeting)*/
  body { padding: 0; margin: 0;}
  html, body, #bev_map {height: 100%;}

  .easy-button-button {
  display: block !important;}

  .tag-filter-tags-container {
  left: 40px;}

</style>

</head>

<body>

    <div id="bev_map"></div>

    <script>

    // initialize the map by assigning it a variable, map.
    var map = L.map('bev_map', {fullscreenControl: true}).setView([38.00000, -97.00000], 4);

    // scrollWheelZoom defaults to true, but when false, prevents a user from using the scroll wheel to zoom in. .setView centers the map on a certain point. I have it here centered in Kansas. The 4 is the initial zoom value when loading the page. Increase it and the map will load closer to earth.

    // define a tile layer for the map, basically what sort of skin you want the map to have. Also set the min and max zoom feature here.
    L.tileLayer('https://server.arcgisonline.com/ArcGIS/rest/services/NatGeo_World_Map/MapServer/tile/{z}/{y}/{x}', {attribution: 'Tiles &copy; Esri &mdash; National Geographic, Esri, DeLorme, NAVTEQ, UNEP-WCMC, USGS, NASA, ESA, METI, NRCAN, GEBCO, NOAA, iPC', maxZoom: 10, minZoom: 3}).addTo(map);

    // This part adds the points to the map and adds them as a layer to be supported by the plugin MarkerCluster.LayerSupport
    var clusters = L.markerClusterGroup.layerSupport({maxClusterRadius:75}),
        group1 = L.layerGroup();
    $.getJSON("map-v2.geojson",function(data){
      var bev = L.geoJson(data,{
        pointToLayer: function(feature,latlng){
          var marker = L.marker(latlng, { tags: feature.properties.Genres.concat(feature.properties.Creator)});
          marker.bindPopup('<p align=center>' + '<strong>Title: </strong>' + feature.properties.Title + '<br/><a href="' + feature.properties.Image_Bank_URL + '" target="_blank"><img src="' + feature.properties.Thumbnail_URL + '"/></a><br/>' + '<strong>Date: </strong>' + feature.properties.Date + '<br/>' + '<strong>Creator: </strong>' + feature.properties.Creator, {minWidth : 250});
          return marker;
        }
      });
      bev.addTo(group1);
      clusters.addLayer(group1);
      map.addLayer(clusters);
    });

    // Here is where I add the layer supported clusters to the map.
    clusters.checkIn(group1);
    clusters.addTo(map);

    // Here is the code block for the Tag Filter Button. I start by accessing a tags file that has the data that I use for filter options. I should note that the genres.addToRelated is not working (it is supposed to link the 2 buttons together to work in conjunction with each other).
    $.getJSON('tags.json', function(data) {
    var genres = L.control.tagFilterButton({
      data: data.genres,
      filterOnEveryClick: true,
      icon: '<i class="fas fa-tags"></i>',
    }).addTo(map);
    var creators = L.control.tagFilterButton({
      data: data.creators,
      filterOnEveryClick: true,
      icon: '<i class="fas fa-user-edit"></i>',
    }).addTo(map);
    jQuery('.easy-button-button').click(function() {
		target = jQuery('.easy-button-button').not(this);
		target.parent().find('.tag-filter-tags-container').css({
			'display' : 'none',
		});
	});
    genres.addToRelated(creators);
    genres.update(clusters);
    genres.enablePruneCluster(clusters);
  });

    document.querySelector(".leaflet-popup-pane").addEventListener("load", function(event) {
      var tagName = event.target.tagName,
        popup = map._popup;
      console.log("got load event from " + tagName);
      // Also check if flag is already set.
      if (tagName === "IMG" && popup && !popup._updated) {
        popup._updated = true; // Set flag to prevent looping.
        popup.update();
      }
    }, true);

    </script>
</body>
</html>
// Code goes here

/* Styles go here */

{
  "features": [
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -122.714055,
          38.440429
        ]
      },
      "properties": {
        "Title": "Santa Rosa. Sonoma County. California. 1885.",
        "Date": "1885",
        "Creator": "W.W. Elliot & Co., lithographer.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5693/WCL005766",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5693:WCL005766/full/!250,250/0/default.jpg",
        "Genres": [
          "Advertisements",
          "Cityscapes",
          "Bird's-eye views",
          "Lithographs"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -121.591076,
          39.145162
        ]
      },
      "properties": {
        "Title": "Bird's Eye View of Marysville and Yuba City, Cal. and Surrounding Country.",
        "Date": "1888",
        "Creator": "W.W. Elliott & Co., lithographer.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5694/WCL005767",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5694:WCL005767/full/!250,250/0/default.jpg",
        "Genres": [
          "Cityscapes",
          "Bird's-eye views",
          "Lithographs"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -75.539788,
          39.739072
        ]
      },
      "properties": {
        "Title": "Wilmington, Del. 1874.",
        "Date": "1874",
        "Creator": "H.H. Bailey & Co., artist.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5695/WCL005768",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5695:WCL005768/full/!250,250/0/default.jpg",
        "Genres": [
          "Cityscapes",
          "Lithographs Colored",
          "Bird's-eye views"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -81.091203,
          32.080899
        ]
      },
      "properties": {
        "Title": "To the Hon.ble the Trustees for establishing the Colony of Georgia in America This View of the Town of Savanah is humbly dedicated by their Honours Obliged and most Obedient Servant. Peter Gordon. A View of Savanah as it stood the 29th of March, 1734. = V\u00fce de Savanah dans la Georgie.",
        "Date": "after 1734",
        "Creator": "Fourdrinier, Paul, 1698-1758, engraver.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5696/WCL005769",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5696:WCL005769/full/!250,250/0/default.jpg",
        "Genres": [
          "Bird's-eye views",
          "Engravings",
          "Intaglio prints",
          "Etchings",
          "Cityscapes"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -93.609106,
          41.600545
        ]
      },
      "properties": {
        "Title": "View of the City of Des Moines, Iowa. Jan. 1st 1886.",
        "Date": "1886",
        "Creator": "Mills & Co. lithographer.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5697/WCL005770",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5697:WCL005770/full/!250,250/0/default.jpg",
        "Genres": [
          "Advertisements",
          "Cityscapes",
          "Bird's-eye views",
          "Lithographs"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -95.235892,
          38.97167
        ]
      },
      "properties": {
        "Title": "Bird's Eye View of Lawrence. Kansas, 1880.",
        "Date": "1880",
        "Creator": "Morse, D.D., artist.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5698/WCL005771",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5698:WCL005771/full/!250,250/0/default.jpg",
        "Genres": [
          "Cityscapes",
          "Lithographs Colored",
          "Bird's-eye views"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -71.802296,
          42.583423
        ]
      },
      "properties": {
        "Title": "View of Fitchburg, Mass.",
        "Date": "1870",
        "Creator": "Whitefield, Edwin, 1816-1892, artist.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5699/WCL005772",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5699:WCL005772/full/!250,250/0/default.jpg",
        "Genres": [
          "Cityscapes",
          "Lithographs Colored",
          "Bird's-eye views"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -71.163114,
          42.707035
        ]
      },
      "properties": {
        "Title": "Lawrence, Mass. 1876.",
        "Date": "1876",
        "Creator": "Bailey, H.H. (Howard Heston), 1836-1878, artist.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5700/WCL005773",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5700:WCL005773/full/!250,250/0/default.jpg",
        "Genres": [
          "Lithographs Tinted",
          "Cityscapes",
          "Bird's-eye views"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -71.316172,
          42.633425
        ]
      },
      "properties": {
        "Title": "Birds Eye View of Lowell, Mass. 1876.",
        "Date": "1876",
        "Creator": "Bailey, H.H. (Howard Heston), 1836-1878, artist.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5701/WCL005774",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5701:WCL005774/full/!250,250/0/default.jpg",
        "Genres": [
          "Lithographs Tinted",
          "Cityscapes",
          "Bird's-eye views"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -70.934205,
          41.636215
        ]
      },
      "properties": {
        "Title": "View of the City of New Bedford, Mass. 1876.",
        "Date": "1876",
        "Creator": "O.H. Bailey & Co., artist.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5702/WCL005775",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5702:WCL005775/full/!250,250/0/default.jpg",
        "Genres": [
          "Lithographs Tinted",
          "Cityscapes",
          "Bird's-eye views"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -71.285608,
          41.944544
        ]
      },
      "properties": {
        "Title": "Hebronville, Massachusetts. 1891.",
        "Date": "1891",
        "Creator": "O.H. Bailey & Co., lithographer.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5703/WCL005776",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5703:WCL005776/full/!250,250/0/default.jpg",
        "Genres": [
          "Cityscapes",
          "Bird's-eye views",
          "Lithographs"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -70.256819,
          43.659099
        ]
      },
      "properties": {
        "Title": "Bird's Eye View of the City of Portland Maine, 1876.",
        "Date": "1876",
        "Creator": "Warner, Jos., artist.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5704/WCL005777",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5704:WCL005777/full/!250,250/0/default.jpg",
        "Genres": [
          "Cityscapes",
          "Bird's-eye views",
          "Lithographs"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -83.743038,
          42.280826
        ]
      },
      "properties": {
        "Title": "Panoramic View of the City of Ann Arbor, Washtenaw Co. Michigan, 1880.",
        "Date": "1880",
        "Creator": "Ruger, A., artist.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5705/WCL005778",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5705:WCL005778/full/!250,250/0/default.jpg",
        "Genres": [
          "Cityscapes",
          "Lithographs Color",
          "Bird's-eye views"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -83.045754,
          42.331427
        ]
      },
      "properties": {
        "Title": "Detroit, Mich.",
        "Date": "approximately 1854-1859",
        "Creator": "Robertson, George J., artist.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5706/WCL005779",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5706:WCL005779/full/!250,250/0/default.jpg",
        "Genres": [
          "Cityscapes",
          "Bird's-eye views",
          "Lithographs"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -93.265011,
          44.977753
        ]
      },
      "properties": {
        "Title": "Bird's Eye View of Minneapolis, Minn.",
        "Date": "1891",
        "Creator": "Pezolt, F. (Frank), artist.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5707/WCL005780",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5707:WCL005780/full/!250,250/0/default.jpg",
        "Genres": [
          "Cityscapes",
          "Bird's-eye views",
          "Lithographs"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -112.039106,
          46.589145
        ]
      },
      "properties": {
        "Title": "Perspective Map of the City of Helena, Mont. Capital of State, County Seat of Lewis & Clarke Co. 1890",
        "Date": "1890",
        "Creator": "American Publishing Co. (Milwaukee, Wis.), publisher.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5708/WCL005781",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5708:WCL005781/full/!250,250/0/default.jpg",
        "Genres": [
          "Lithographs Hand-colored",
          "Cityscapes",
          "Bird's-eye views"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -95.859362,
          40.676575
        ]
      },
      "properties": {
        "Title": "Birds Eye View of Nebraska City Otoe County Nebraska 1880.",
        "Date": "approximately 1880",
        "Creator": "Koch, Augustus, 1840- artist.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5709/WCL005782",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5709:WCL005782/full/!250,250/0/default.jpg",
        "Genres": [
          "Lithographs Tinted",
          "Cityscapes",
          "Bird's-eye views"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -74.39571,
          41.717038
        ]
      },
      "properties": {
        "Title": "Ellenville, N.Y. 1887",
        "Date": "1887",
        "Creator": "Burleigh, L. R., 1853-1923, artist.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5710/WCL005783",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5710:WCL005783/full/!250,250/0/default.jpg",
        "Genres": [
          "Cityscapes",
          "Bird's-eye views",
          "Lithographs"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -73.784565,
          43.08313
        ]
      },
      "properties": {
        "Title": "Saratoga Springs. N.Y. 1888.",
        "Date": "1888",
        "Creator": "Burleigh, L.R., artist.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5711/WCL005784",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5711:WCL005784/full/!250,250/0/default.jpg",
        "Genres": [
          "Cityscapes",
          "Bird's-eye views",
          "Lithographs"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -77.057471,
          42.957564
        ]
      },
      "properties": {
        "Title": "Phelps, N.Y.",
        "Date": "1892",
        "Creator": "Burleigh Litho, lithographer.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5712/WCL005785",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5712:WCL005785/full/!250,250/0/default.jpg",
        "Genres": [
          "Cityscapes",
          "Bird's-eye views",
          "Lithographs"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -75.852691,
          42.930067
        ]
      },
      "properties": {
        "Title": "Cazenovia, N.Y.",
        "Date": "1890",
        "Creator": "Burleigh, L. R., 1853-1923, artist.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5713/WCL005786",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5713:WCL005786/full/!250,250/0/default.jpg",
        "Genres": [
          "Cityscapes",
          "Bird's-eye views",
          "Lithographs"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -73.687341,
          42.902855
        ]
      },
      "properties": {
        "Title": "Mechanicville, N.Y.",
        "Date": "between 1880 and 1900",
        "Creator": "Burleigh, L. R., 1853-1923, artist.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5714/WCL005787",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5714:WCL005787/full/!250,250/0/default.jpg",
        "Genres": [
          "Cityscapes",
          "Bird's-eye views",
          "Lithographs"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -84.547969,
          39.198496
        ]
      },
      "properties": {
        "Title": "[Bird's-eye view of the Ohio Female College, Cincinnati, Ohio].",
        "Date": "between 1858 and 1865",
        "Creator": "Middleton, Strobridge & Co., lithographer.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5715/WCL005788",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5715:WCL005788/full/!250,250/0/default.jpg",
        "Genres": [
          "Lithographs",
          "Bird's-eye views",
          "Albumen prints"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -82.767297,
          41.538557
        ]
      },
      "properties": {
        "Title": "Lakeside.",
        "Date": "1884",
        "Creator": "Hare, A.J., artist.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5716/WCL005789",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5716:WCL005789/full/!250,250/0/default.jpg",
        "Genres": [
          "Lithographs Hand-colored",
          "Cityscapes",
          "Bird's-eye views"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -79.831444,
          41.397836
        ]
      },
      "properties": {
        "Title": "View of the City of Franklin, PA. 1901",
        "Date": "1901",
        "Creator": "Fowler, T. M. (Thaddeus Mortimer), 1842-1922, artist.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5717/WCL005790",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5717:WCL005790/full/!250,250/0/default.jpg",
        "Genres": [
          "Cityscapes",
          "Bird's-eye views",
          "Lithographs"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -78.010281,
          40.484796
        ]
      },
      "properties": {
        "Title": "Huntingdon, PA. 1878",
        "Date": "1878",
        "Creator": "Denslow, W. W. (William Wallace), 1856-1915, artist.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5718/WCL005791",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5718:WCL005791/full/!250,250/0/default.jpg",
        "Genres": [
          "Cityscapes",
          "Lithographs Hand-colored Tinted",
          "Bird's-eye views"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -75.21468,
          39.981047
        ]
      },
      "properties": {
        "Title": "The Centennial--Balloon View of the Grounds.",
        "Date": "1876",
        "Creator": "Davis, Theodore R., artist.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5719/WCL005792",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5719:WCL005792/full/!250,250/0/default.jpg",
        "Genres": [
          "Engravings",
          "Cityscapes",
          "Intaglio prints",
          "Bird's-eye views"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -75.469097,
          40.098985
        ]
      },
      "properties": {
        "Title": "Valley Forge, PA. 1890.",
        "Date": "1890",
        "Creator": "Moyer, James B., publisher.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5720/WCL005793",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5720:WCL005793/full/!250,250/0/default.jpg",
        "Genres": [
          "Lithographs Tinted",
          "Bird's-eye views"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -85.308683,
          35.043219
        ]
      },
      "properties": {
        "Title": "Chattanooga and Lookout Mountain",
        "Date": "1897",
        "Creator": "Wellge, H. (Henry), artist.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5721/WCL005794",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5721:WCL005794/full/!250,250/0/default.jpg",
        "Genres": [
          "Chromolithographs",
          "Cityscapes",
          "Bird's-eye views"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -85.308683,
          35.043219
        ]
      },
      "properties": {
        "Title": "Chattanooga. County Seat of Hamilton County Tennessee. 1886 Population 30,000.",
        "Date": "1886",
        "Creator": "Wellge, H. (Henry), artist.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5722/WCL005795",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5722:WCL005795/full/!250,250/0/default.jpg",
        "Genres": [
          "Cityscapes",
          "Bird's-eye views",
          "Lithographs"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -122.900695,
          47.037874
        ]
      },
      "properties": {
        "Title": "Bird's-Eye View of the City of Olympia, East Olympia and Tumwater, Puget Sound, Washington Territory, 1879.",
        "Date": "1878",
        "Creator": "Glover, E. S. (Eli Sheldon), 1844-1920, artist.",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5723/WCL005796",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5723:WCL005796/full/!250,250/0/default.jpg",
        "Genres": [
          "Cityscapes",
          "Bird's-eye views",
          "Lithographs"
        ]
      }
    },
    {
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          -122.444291,
          47.252877
        ]
      },
      "properties": {
        "Title": "City of Tacoma, W.T. 1885.",
        "Date": "approximately 1885",
        "Creator": "",
        "Image_Bank_URL": "https://quod.lib.umich.edu/w/wcl1ic/5724/WCL005797",
        "Thumbnail_URL": "https://quod.lib.umich.edu/cgi/i/image/api/image/wcl1ic:5724:WCL005797/full/!250,250/0/default.jpg",
        "Genres": [
          "Cityscapes",
          "Bird's-eye views",
          "Lithographs"
        ]
      }
    }
  ],
  "type": "FeatureCollection"
}
{"genres": ["Lithographs Tinted", "Advertisements", "Lithographs Hand-colored Tinted", "Chromolithographs", "Lithographs Color", "Bird's-eye views", "Engravings", "Intaglio prints", "Lithographs Colored", "Etchings", "Albumen prints", "Lithographs Hand-colored", "Cityscapes", "Lithographs"], "creators": ["", "H.H. Bailey & Co., artist.", "Glover, E. S. (Eli Sheldon), 1844-1920, artist.", "Middleton, Strobridge & Co., lithographer.", "O.H. Bailey & Co., artist.", "Davis, Theodore R., artist.", "Mills & Co. lithographer.", "W.W. Elliott & Co., lithographer.", "Warner, Jos., artist.", "Burleigh Litho, lithographer.", "Whitefield, Edwin, 1816-1892, artist.", "American Publishing Co. (Milwaukee, Wis.), publisher.", "Bailey, H.H. (Howard Heston), 1836-1878, artist.", "W.W. Elliot & Co., lithographer.", "Robertson, George J., artist.", "Burleigh, L.R., artist.", "Burleigh, L. R., 1853-1923, artist.", "Denslow, W. W. (William Wallace), 1856-1915, artist.", "Hare, A.J., artist.", "Fourdrinier, Paul, 1698-1758, engraver.", "Pezolt, F. (Frank), artist.", "Moyer, James B., publisher.", "Wellge, H. (Henry), artist.", "Koch, Augustus, 1840- artist.", "Morse, D.D., artist.", "Fowler, T. M. (Thaddeus Mortimer), 1842-1922, artist.", "Ruger, A., artist.", "O.H. Bailey & Co., lithographer."]}