You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In leaflet.html, the hrefs are hardcoded to use the file protocol.
And in utils.py, the value of filename is generated as an absolute path.
This makes it impossible to publish the final result to a web site later.
I would like to suggest removing the file protocol and using a relative path for the picture location.
In leaflet.html, the hrefs are hardcoded to use the file protocol.
And in utils.py, the value of filename is generated as an absolute path.
This makes it impossible to publish the final result to a web site later.
I would like to suggest removing the file protocol and using a relative path for the picture location.
var popup = '
' + a.properties.date + '
' + '';
marker.bindPopup(popup);
markers.addLayer(marker);
}
map.addLayer(markers);
</script>
The text was updated successfully, but these errors were encountered: