• I really like this plug-in. I got quite a few tracks now but I’m missing a feature that is really important to me.. I would like to drop 3 to 4 tracks into a single view so people got an idea where I’ve been driven but they are all the same color. I would like to see an option where I can select a color for each track in the view. Mapsource (and maybe basecamp as well) has an option to set the color and the gpx-file will have the color information. WP GPX does not use it. Eg.: https://boxer.gs/2015/07/4-dagen-luxembourg-eiffel/

    And would it be possible to add initial zoomlevel. I always need to zoom in once and then it’s how I like it..

    Anyway – great addon..

Viewing 3 replies - 1 through 3 (of 3 total)
  • That would be really great. I could use this to show alternative routes.

    @shades404:
    how do you show more than one track on you map?
    Thx

    Thread Starter shades404

    (@shades404)

    Hi,

    Not very hard to do – Mapsource does this automatically for you (got no experience with Basecamp) but if you don’t have that here is the signature for multiple tracks (and to color the tracks).

    Tracks colors and the metadata xml-node and a.f.a.i.k. garmin related..

    I masked the timestamps and coordinates and removed all but 2 trackspoints since you only need to know how the xml is formed

    <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
    <gpx xmlns="https://www.topografix.com/GPX/1/1" creator="MapSource 6.16.3" version="1.1" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://www.topografix.com/GPX/1/1 https://www.topografix.com/GPX/1/1/gpx.xsd">
    
      <metadata>
        <link >
          <text>Garmin International</text>
        </link>
        <time>YYYY-MM-DDTHH:mm:ssZ</time>
        <bounds maxlat="xx.xxxxx" maxlon="xx.xxxxx" minlat="xx.xxxxx" minlon="xx.xxxxx"/>
      </metadata>
    
      <trk>
        <name>TrackName1</name>
        <extensions>
          <gpxx:TrackExtension xmlns:gpxx="https://www.garmin.com/xmlschemas/GpxExtensions/v3">
            <gpxx:DisplayColor>Cyan</gpxx:DisplayColor>
          </gpxx:TrackExtension>
        </extensions>
        <trkseg>
          <trkpt lat="xx.xxxxx" lon="x.xxxxx">
            <time>YYYY-MM-DDTHH:mm:ssZ</time>
          </trkpt>
          <trkpt lat="xx.xxxxx" lon="x.xxxxx">
            <time>YYYY-MM-DDTHH:mm:ssZ</time>
          </trkpt>	  
        </trkseg>
      </trk>
    
      <trk>
        <name>TrackName2</name>
        <extensions>
          <gpxx:TrackExtension xmlns:gpxx="https://www.garmin.com/xmlschemas/GpxExtensions/v3">
            <gpxx:DisplayColor>Red</gpxx:DisplayColor>
          </gpxx:TrackExtension>
        </extensions>
        <trkseg>
          <trkpt lat="xx.xxxxx" lon="x.xxxxx">
            <time>YYYY-MM-DDTHH:mm:ssZ</time>
          </trkpt>
          <trkpt lat="xx.xxxxx" lon="x.xxxxx">
            <time>YYYY-MM-DDTHH:mm:ssZ</time>
          </trkpt>	  
        </trkseg>
      </trk>
    
    </gpx>
    
    • This reply was modified 7 years, 7 months ago by shades404. Reason: layout
    • This reply was modified 7 years, 7 months ago by shades404.

    great thanx.
    now different colors would be great ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Different colors for different tracks?’ is closed to new replies.