Skip to main content
Home

latest

A simple module to make a GPX route into a minimal SVG.

This package works with Deno
This package works with Deno
JSR Score
94%
Published
a year ago (0.0.1)

JSR JSR score sourcehut

GPX to SVG

A simple module to make a GPX route into a minimal SVG.

Example

import { generateSVGFile } from "jsr:@timharek/gpx-to-svg";

const gpxFile = "your/gpx/file/path.gpx";

await generateSVGFile(gpxFile, "./output.svg");

New Ticket: Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@timharek/gpx-to-svg

Import symbol

import * as gpx_to_svg from "@timharek/gpx-to-svg";
or

Import directly with a jsr specifier

import * as gpx_to_svg from "jsr:@timharek/gpx-to-svg";