Skip to main content

GPXLoader

From-v3.0

The GPXLoader parses GPX files into GeoJSON. From Wikipedia:

LoaderCharacteristic
File Extension.gpx
File TypeText
File FormatGPX
Data FormatGIS
Decoder TypeSynchronous
Worker Thread SupportNo
Streaming SupportNo

Usage​

import {GPXLoader} from '@loaders.gl/kml';
import {load} from '@loaders.gl/core';

const data = await load(url, GPXLoader, options);

Options​

OptionTypeDefaultDescription
gis.formatstring'geojson'Can be set to 'raw', 'geojson' or 'binary'.

Limitations​

  • In Node.JS, applications must import @loaders.gl/polyfills for the DOMParser polyfill.