Skip to content

Commit

Permalink
Make OsmAnd markers and lines transparent
Browse files Browse the repository at this point in the history
  • Loading branch information
cdauth committed Apr 18, 2024
1 parent 79a2c08 commit 347edfc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions integration-tests/src/lines.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -618,7 +618,7 @@ test("Export line", async () => {
</extensions>
</metadata>
<extensions>
<osmand:color>#0000ff</osmand:color>
<osmand:color>#aa0000ff</osmand:color>
<osmand:width>4</osmand:width>
</extensions>
<trk>
Expand All @@ -642,7 +642,7 @@ test("Export line", async () => {
</extensions>
</metadata>
<extensions>
<osmand:color>#0000ff</osmand:color>
<osmand:color>#aa0000ff</osmand:color>
<osmand:width>4</osmand:width>
</extensions>
<rte>
Expand Down Expand Up @@ -693,7 +693,7 @@ test("Export line (track)", async () => {
</extensions>
</metadata>
<extensions>
<osmand:color>#00ff00</osmand:color>
<osmand:color>#aa00ff00</osmand:color>
<osmand:width>10</osmand:width>
</extensions>
<trk>
Expand All @@ -718,7 +718,7 @@ test("Export line (track)", async () => {
</extensions>
</metadata>
<extensions>
<osmand:color>#00ff00</osmand:color>
<osmand:color>#aa00ff00</osmand:color>
<osmand:width>10</osmand:width>
</extensions>
<rte>
Expand Down
4 changes: 2 additions & 2 deletions server/src/export/gpx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function getMarkerGpx(marker: Marker, type: Type): ReadableStream<string> {
`\t<desc>${quoteHtml(dataToText(type.fields, marker.data))}</desc>\n` +
`\t<extensions>\n` +
(osmandBackground ? `\t\t<osmand:background>${osmandBackground}</osmand:background>\n` : "") +
`\t\t<osmand:color>#${marker.colour}</osmand:color>\n` +
`\t\t<osmand:color>#aa${marker.colour}</osmand:color>\n` +
`\t</extensions>\n` +
`</wpt>`
);
Expand Down Expand Up @@ -235,7 +235,7 @@ function getLineMetadataGpx(line: LineForExport, type: Type | undefined): string
}
}, {
...(line.colour ? {
"osmand:color": `#${line.colour}`
"osmand:color": `#aa${line.colour}`
} : {}),
...(line.width ? {
"osmand:width": `${line.width}`
Expand Down

0 comments on commit 347edfc

Please sign in to comment.