Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
kpmurray123 authored Oct 24, 2023
1 parent 9f133df commit b3eea28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
map.on('click', 'csvData', function (e) {
var coordinates = e.features[0].geometry.coordinates.slice();

var description = '<h3>' + e.features[0].properties.Name + '</h3>' + '<h4>' + '<strong>' + 'Address: ' + '</strong>' + '<a href="' + e.features[0].properties.Link + '" target='_blank' rel='noopener noreferrer'>' + e.features[0].properties.Address + '</a></h4>'
var description = '<h3>' + e.features[0].properties.Name + '</h3>' + '<h4>' + '<strong>' + 'Address: ' + '</strong>' + '<a target='_blank' rel='noopener noreferrer' href="' + e.features[0].properties.Link + '">' + e.features[0].properties.Address + '</a></h4>'
+ '<h4>' + '<strong>' + 'Time: ' + '</strong>' + e.features[0].properties.Time + '</h4>';

// Ensure that if the map is zoomed out such that multiple
Expand Down

0 comments on commit b3eea28

Please sign in to comment.