summaryrefslogtreecommitdiff
path: root/templates/polyline.gpx.ep
blob: a243926879446e4363edbf514c9e8239fa42815c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<gpx
 xmlns="http://www.topografix.com/GPX/1/1"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd"
 version="1.1"
 creator="travelynx <%= $version %>">
 <trk>
  <name><%= $name %></name>
  <trkseg>
  % for my $entry (@{$polyline // []}) {
   <trkpt lon="<%= $entry->[0] %>" lat="<%= $entry->[1] %>">
   % if ($entry->[2]) {
     <name><%= $entry->[2] %></name>
   % }
   </trkpt>
  % }
  </trkseg>
 </trk>
</gpx>