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 c56b4cf commit d4f002d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,8 @@
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>' + e.features[0].properties.Address + '</h4>';
var description = '<h3>' + e.features[0].properties.Name + '</h3>' + '<h4>' + '<strong>' + 'Address: ' + '</strong>' + e.features[0].properties.Address + '</h4>'
+ '<h4>' + '<strong>' + 'Time: ' + '</strong>' + e.features[0].properties.Time + '</h4>';

// Ensure that if the map is zoomed out such that multiple
// copies of the feature are visible, the popup appears
Expand Down

0 comments on commit d4f002d

Please sign in to comment.