Welcome to my webpage.
I am a student in the Anthropology Department at Texas State University.

Research Interests:

  1. Preservation
  2. Musuem curation
  3. Accessibility

Webmap Reviews

Geocoding Map


< var marker = L.marker([51.5, -0.09]).addTo(mymap) var circle = L.circle([51.508, -0.11], { color: 'red', fillColor: '#f03', fillOpacity: 0.5, radius: 500}).addTo(mymap); var polygon = L.polygon([[51.509, -0.08], [51.503, -0.06], [51.51, -0.047]]).addTo(mymap); marker.bindPopup("Hello world!
I am a popup.").openPopup(); circle.bindPopup("I am a circle."); polygon.bindPopup("I am a polygon."); marker.on('click', function(e){ mymap.setView(e.latlng, 14);}) circle.on('click', function(e){ mymap.setView(e.latlng, 13);}) polygon.on('click', function(e){ mymap.setView(e.latlng, 13);})