Re: downloading tiles in Maemo Mapper based on a polygon instead of a box
Quote:
Originally Posted by tlove-dfg
(Post 184213)
great, if you have a "GPX file of single-point trkseg elements" i can start with as an example that would be extremely helpful. email it to me at tlove@dfg.ca.gov
if i can get an example i will probably just hack out a solution that covers my stuff, so i doubt it will be globally useful so to speak.
|
You can make your own in Maemo Mapper by just clearing the route, using the tap-and-hold menu to select "Tap Point | Add Route Point", and saving the route via the "Route" menu. It should look something like this: (except i'll add several trkseg elements, so you can see how it should look like with three single-point segments)
Code:
<?xml version="1.0"?>
<gpx version="1.0" xmlns="http://www.topografix.com/GPX/1/0">
<trk>
<trkseg>
<trkpt lat="XX.XXXX" lon="YY.YYYY"/>
</trkseg>
<trkseg>
<trkpt lat="XX.XXXX" lon="YY.YYYY"/>
</trkseg>
<trkseg>
<trkpt lat="XX.XXXX" lon="YY.YYYY"/>
</trkseg>
</trk>
</gpx>
|