Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "leaflet-omnivore"]
path = leaflet-omnivore
url = https://github.com/mapbox/leaflet-omnivore
30 changes: 30 additions & 0 deletions gpx.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Tracks</title>
</head>
<body>
<?php
include "settings.php";
$dir=$gpxDirectory;
$directorio=opendir($dir);
echo "<b>Files:</b><br><ul>";
while (false !== ($archivo = readdir($directorio)))
{
//if ($archivo!="." & $archivo!=".." & $archivo!="index.php")
if (strpos($archivo,"log"))
{
echo "
<li><a href=\"$gpxDirectory$archivo\">$archivo</a>
<br>

";
}
}
echo "</ul>";
closedir($directorio);
?>
</body>
</html>

1 change: 1 addition & 0 deletions leaflet-omnivore
Submodule leaflet-omnivore added at 05bca2
Binary file added leaflet/images/layers-2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added leaflet/images/layers.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added leaflet/images/marker-icon-2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added leaflet/images/marker-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added leaflet/images/marker-shadow.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading