├── .eslintrc.cjs ├── .github ├── pull_request_template.md └── workflows │ ├── format-lint.yml │ ├── npm-publish-dry-run.yml │ └── npm-publish.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE ├── examples ├── elevation.html ├── linestring.geojson ├── long.geojson ├── multilinestring.geojson ├── test-browser-es.html ├── test-browser-umd.html └── test-node.js ├── images ├── JS-logo.svg ├── TS-logo.svg ├── maptiler-client-logo.afdesign ├── maptiler-client-logo.svg ├── maptiler-logo-256.png ├── maptiler-logo.svg └── screenshots │ ├── static-bounded-europe-1024.png │ ├── static-bounded-europe-2048.png │ ├── static-bounded-portugal-1024x2048.png │ ├── static-bounded-portugal-2048x2048.png │ └── static-with-path.png ├── package.json ├── readme.md ├── rollup.config.js ├── src ├── callFetch.ts ├── config.ts ├── defaults.ts ├── index.ts ├── language.ts ├── mapstyle.ts ├── misc.ts ├── services │ ├── ServiceError.ts │ ├── coordinates.ts │ ├── data.ts │ ├── elevation.ts │ ├── geocoding.ts │ ├── geolocation.ts │ ├── math.ts │ └── staticMaps.ts └── tiledecoding.ts ├── test ├── demProfiler │ ├── getElevation.test.ts │ ├── index.test.ts │ └── tileCover.test.ts ├── fixtures │ ├── 12-775-1538.png │ ├── 13-1548-3076.webp │ ├── 13-1549-3077.webp │ ├── 14-3099-6154.webp │ ├── 14-3099-6155.webp │ ├── 14-3101-6153.webp │ ├── 14-3102-6153.webp │ ├── 14-3103-6152.webp │ ├── addresses.kml │ ├── addresses.kml.geojson │ ├── blue_hills.geojson │ ├── blue_hills.gpx │ ├── blue_hills.gpx.geojson │ ├── cdata.kml │ ├── cdata.kml.geojson │ ├── empty_ele.gpx │ ├── empty_ele.gpx.geojson │ ├── empty_trk.gpx │ ├── empty_trk.gpx.geojson │ ├── extended_data.kml │ ├── extended_data.kml.geojson │ ├── gdal.gpx │ ├── gdal.gpx.geojson │ ├── gxmultitrack.kml │ ├── gxmultitrack.kml.geojson │ ├── gxtrack.kml │ ├── gxtrack.kml.geojson │ ├── inline_style.kml │ ├── inline_style.kml.geojson │ ├── linestring.kml │ ├── linestring.kml.geojson │ ├── literal_color.kml │ ├── literal_color.kml.geojson │ ├── missing_hr.gpx │ ├── missing_hr.gpx.geojson │ ├── multigeometry.kml │ ├── multigeometry.kml.geojson │ ├── multigeometry_discrete.kml │ ├── multigeometry_discrete.kml.geojson │ ├── multitrack.kml │ ├── multitrack.kml.geojson │ ├── multitrackgpx.gpx │ ├── multitrackgpx.gpx.geojson │ ├── nogeomplacemark.kml │ ├── nogeomplacemark.kml.geojson │ ├── non_gx_multitrack.kml │ ├── non_gx_multitrack.kml.geojson │ ├── noname.kml │ ├── noname.kml.geojson │ ├── north_core.gpx │ ├── north_core.gpx.geojson │ ├── opacity_override.kml │ ├── opacity_override.kml.geojson │ ├── osm.gpx │ ├── osm.gpx.geojson │ ├── point.kml │ ├── point.kml.geojson │ ├── point_id.kml │ ├── point_id.kml.geojson │ ├── polygon.kml │ ├── polygon.kml.geojson │ ├── profileSimple13ft.json │ ├── profileSimple13m.json │ ├── profileSimple14ft.json │ ├── profileSimple14m.json │ ├── run.gpx │ ├── run.gpx.geojson │ ├── run_gpxtpx.gpx │ ├── run_gpxtpx.gpx.geojson │ ├── selfclosing.kml │ ├── selfclosing.kml.geojson │ ├── simpledata.kml │ ├── simpledata.kml.geojson │ ├── style.gpx │ ├── style.gpx.geojson │ ├── style.kml │ ├── style.kml.geojson │ ├── style_url.kml │ ├── style_url.kml.geojson │ ├── tileCoverLong13.json │ ├── tileCoverLong14.json │ ├── tileCoverLong15.json │ ├── tileCoverLong16.json │ ├── tileCoverSimple13.json │ ├── tileCoverSimple14.json │ ├── tileCoverSimple15.json │ ├── tileCoverSimple16.json │ ├── timespan.kml │ ├── timespan.kml.geojson │ ├── trek.gpx │ ├── trek.gpx.geojson │ ├── trek_no_rtept.gpx │ ├── trek_no_rtept.gpx.geojson │ ├── twopoints.kml │ ├── twopoints.kml.geojson │ ├── unique_trkpt.gpx │ ├── unique_trkpt.gpx.geojson │ ├── utah-slopes.geojson │ ├── wpt.gpx │ ├── wpt.gpx.geojson │ ├── zero_elevation.gpx │ └── zero_elevation.gpx.geojson └── geometry │ ├── area.test.ts │ ├── distance.test.ts │ └── util.test.ts ├── tsconfig.json ├── typedoc.css └── typedoc.json /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/format-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/.github/workflows/format-lint.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish-dry-run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/.github/workflows/npm-publish-dry-run.yml -------------------------------------------------------------------------------- /.github/workflows/npm-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/.github/workflows/npm-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/LICENSE -------------------------------------------------------------------------------- /examples/elevation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/examples/elevation.html -------------------------------------------------------------------------------- /examples/linestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/examples/linestring.geojson -------------------------------------------------------------------------------- /examples/long.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/examples/long.geojson -------------------------------------------------------------------------------- /examples/multilinestring.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/examples/multilinestring.geojson -------------------------------------------------------------------------------- /examples/test-browser-es.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/examples/test-browser-es.html -------------------------------------------------------------------------------- /examples/test-browser-umd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/examples/test-browser-umd.html -------------------------------------------------------------------------------- /examples/test-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/examples/test-node.js -------------------------------------------------------------------------------- /images/JS-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/images/JS-logo.svg -------------------------------------------------------------------------------- /images/TS-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/images/TS-logo.svg -------------------------------------------------------------------------------- /images/maptiler-client-logo.afdesign: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/images/maptiler-client-logo.afdesign -------------------------------------------------------------------------------- /images/maptiler-client-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/images/maptiler-client-logo.svg -------------------------------------------------------------------------------- /images/maptiler-logo-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/images/maptiler-logo-256.png -------------------------------------------------------------------------------- /images/maptiler-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/images/maptiler-logo.svg -------------------------------------------------------------------------------- /images/screenshots/static-bounded-europe-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/images/screenshots/static-bounded-europe-1024.png -------------------------------------------------------------------------------- /images/screenshots/static-bounded-europe-2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/images/screenshots/static-bounded-europe-2048.png -------------------------------------------------------------------------------- /images/screenshots/static-bounded-portugal-1024x2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/images/screenshots/static-bounded-portugal-1024x2048.png -------------------------------------------------------------------------------- /images/screenshots/static-bounded-portugal-2048x2048.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/images/screenshots/static-bounded-portugal-2048x2048.png -------------------------------------------------------------------------------- /images/screenshots/static-with-path.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/images/screenshots/static-with-path.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/readme.md -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/callFetch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/src/callFetch.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/src/defaults.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/src/language.ts -------------------------------------------------------------------------------- /src/mapstyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/src/mapstyle.ts -------------------------------------------------------------------------------- /src/misc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/src/misc.ts -------------------------------------------------------------------------------- /src/services/ServiceError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/src/services/ServiceError.ts -------------------------------------------------------------------------------- /src/services/coordinates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/src/services/coordinates.ts -------------------------------------------------------------------------------- /src/services/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/src/services/data.ts -------------------------------------------------------------------------------- /src/services/elevation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/src/services/elevation.ts -------------------------------------------------------------------------------- /src/services/geocoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/src/services/geocoding.ts -------------------------------------------------------------------------------- /src/services/geolocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/src/services/geolocation.ts -------------------------------------------------------------------------------- /src/services/math.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/src/services/math.ts -------------------------------------------------------------------------------- /src/services/staticMaps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/src/services/staticMaps.ts -------------------------------------------------------------------------------- /src/tiledecoding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/src/tiledecoding.ts -------------------------------------------------------------------------------- /test/demProfiler/getElevation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/demProfiler/getElevation.test.ts -------------------------------------------------------------------------------- /test/demProfiler/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/demProfiler/index.test.ts -------------------------------------------------------------------------------- /test/demProfiler/tileCover.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/demProfiler/tileCover.test.ts -------------------------------------------------------------------------------- /test/fixtures/12-775-1538.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/12-775-1538.png -------------------------------------------------------------------------------- /test/fixtures/13-1548-3076.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/13-1548-3076.webp -------------------------------------------------------------------------------- /test/fixtures/13-1549-3077.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/13-1549-3077.webp -------------------------------------------------------------------------------- /test/fixtures/14-3099-6154.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/14-3099-6154.webp -------------------------------------------------------------------------------- /test/fixtures/14-3099-6155.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/14-3099-6155.webp -------------------------------------------------------------------------------- /test/fixtures/14-3101-6153.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/14-3101-6153.webp -------------------------------------------------------------------------------- /test/fixtures/14-3102-6153.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/14-3102-6153.webp -------------------------------------------------------------------------------- /test/fixtures/14-3103-6152.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/14-3103-6152.webp -------------------------------------------------------------------------------- /test/fixtures/addresses.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/addresses.kml -------------------------------------------------------------------------------- /test/fixtures/addresses.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/addresses.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/blue_hills.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/blue_hills.geojson -------------------------------------------------------------------------------- /test/fixtures/blue_hills.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/blue_hills.gpx -------------------------------------------------------------------------------- /test/fixtures/blue_hills.gpx.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/blue_hills.gpx.geojson -------------------------------------------------------------------------------- /test/fixtures/cdata.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/cdata.kml -------------------------------------------------------------------------------- /test/fixtures/cdata.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/cdata.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/empty_ele.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/empty_ele.gpx -------------------------------------------------------------------------------- /test/fixtures/empty_ele.gpx.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/empty_ele.gpx.geojson -------------------------------------------------------------------------------- /test/fixtures/empty_trk.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/empty_trk.gpx -------------------------------------------------------------------------------- /test/fixtures/empty_trk.gpx.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/empty_trk.gpx.geojson -------------------------------------------------------------------------------- /test/fixtures/extended_data.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/extended_data.kml -------------------------------------------------------------------------------- /test/fixtures/extended_data.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/extended_data.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/gdal.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/gdal.gpx -------------------------------------------------------------------------------- /test/fixtures/gdal.gpx.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/gdal.gpx.geojson -------------------------------------------------------------------------------- /test/fixtures/gxmultitrack.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/gxmultitrack.kml -------------------------------------------------------------------------------- /test/fixtures/gxmultitrack.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/gxmultitrack.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/gxtrack.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/gxtrack.kml -------------------------------------------------------------------------------- /test/fixtures/gxtrack.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/gxtrack.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/inline_style.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/inline_style.kml -------------------------------------------------------------------------------- /test/fixtures/inline_style.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/inline_style.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/linestring.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/linestring.kml -------------------------------------------------------------------------------- /test/fixtures/linestring.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/linestring.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/literal_color.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/literal_color.kml -------------------------------------------------------------------------------- /test/fixtures/literal_color.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/literal_color.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/missing_hr.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/missing_hr.gpx -------------------------------------------------------------------------------- /test/fixtures/missing_hr.gpx.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/missing_hr.gpx.geojson -------------------------------------------------------------------------------- /test/fixtures/multigeometry.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/multigeometry.kml -------------------------------------------------------------------------------- /test/fixtures/multigeometry.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/multigeometry.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/multigeometry_discrete.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/multigeometry_discrete.kml -------------------------------------------------------------------------------- /test/fixtures/multigeometry_discrete.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/multigeometry_discrete.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/multitrack.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/multitrack.kml -------------------------------------------------------------------------------- /test/fixtures/multitrack.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/multitrack.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/multitrackgpx.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/multitrackgpx.gpx -------------------------------------------------------------------------------- /test/fixtures/multitrackgpx.gpx.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/multitrackgpx.gpx.geojson -------------------------------------------------------------------------------- /test/fixtures/nogeomplacemark.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/nogeomplacemark.kml -------------------------------------------------------------------------------- /test/fixtures/nogeomplacemark.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/nogeomplacemark.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/non_gx_multitrack.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/non_gx_multitrack.kml -------------------------------------------------------------------------------- /test/fixtures/non_gx_multitrack.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/non_gx_multitrack.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/noname.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/noname.kml -------------------------------------------------------------------------------- /test/fixtures/noname.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/noname.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/north_core.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/north_core.gpx -------------------------------------------------------------------------------- /test/fixtures/north_core.gpx.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/north_core.gpx.geojson -------------------------------------------------------------------------------- /test/fixtures/opacity_override.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/opacity_override.kml -------------------------------------------------------------------------------- /test/fixtures/opacity_override.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/opacity_override.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/osm.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/osm.gpx -------------------------------------------------------------------------------- /test/fixtures/osm.gpx.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/osm.gpx.geojson -------------------------------------------------------------------------------- /test/fixtures/point.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/point.kml -------------------------------------------------------------------------------- /test/fixtures/point.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/point.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/point_id.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/point_id.kml -------------------------------------------------------------------------------- /test/fixtures/point_id.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/point_id.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/polygon.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/polygon.kml -------------------------------------------------------------------------------- /test/fixtures/polygon.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/polygon.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/profileSimple13ft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/profileSimple13ft.json -------------------------------------------------------------------------------- /test/fixtures/profileSimple13m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/profileSimple13m.json -------------------------------------------------------------------------------- /test/fixtures/profileSimple14ft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/profileSimple14ft.json -------------------------------------------------------------------------------- /test/fixtures/profileSimple14m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/profileSimple14m.json -------------------------------------------------------------------------------- /test/fixtures/run.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/run.gpx -------------------------------------------------------------------------------- /test/fixtures/run.gpx.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/run.gpx.geojson -------------------------------------------------------------------------------- /test/fixtures/run_gpxtpx.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/run_gpxtpx.gpx -------------------------------------------------------------------------------- /test/fixtures/run_gpxtpx.gpx.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/run_gpxtpx.gpx.geojson -------------------------------------------------------------------------------- /test/fixtures/selfclosing.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/selfclosing.kml -------------------------------------------------------------------------------- /test/fixtures/selfclosing.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/selfclosing.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/simpledata.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/simpledata.kml -------------------------------------------------------------------------------- /test/fixtures/simpledata.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/simpledata.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/style.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/style.gpx -------------------------------------------------------------------------------- /test/fixtures/style.gpx.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/style.gpx.geojson -------------------------------------------------------------------------------- /test/fixtures/style.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/style.kml -------------------------------------------------------------------------------- /test/fixtures/style.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/style.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/style_url.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/style_url.kml -------------------------------------------------------------------------------- /test/fixtures/style_url.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/style_url.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/tileCoverLong13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/tileCoverLong13.json -------------------------------------------------------------------------------- /test/fixtures/tileCoverLong14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/tileCoverLong14.json -------------------------------------------------------------------------------- /test/fixtures/tileCoverLong15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/tileCoverLong15.json -------------------------------------------------------------------------------- /test/fixtures/tileCoverLong16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/tileCoverLong16.json -------------------------------------------------------------------------------- /test/fixtures/tileCoverSimple13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/tileCoverSimple13.json -------------------------------------------------------------------------------- /test/fixtures/tileCoverSimple14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/tileCoverSimple14.json -------------------------------------------------------------------------------- /test/fixtures/tileCoverSimple15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/tileCoverSimple15.json -------------------------------------------------------------------------------- /test/fixtures/tileCoverSimple16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/tileCoverSimple16.json -------------------------------------------------------------------------------- /test/fixtures/timespan.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/timespan.kml -------------------------------------------------------------------------------- /test/fixtures/timespan.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/timespan.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/trek.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/trek.gpx -------------------------------------------------------------------------------- /test/fixtures/trek.gpx.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/trek.gpx.geojson -------------------------------------------------------------------------------- /test/fixtures/trek_no_rtept.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/trek_no_rtept.gpx -------------------------------------------------------------------------------- /test/fixtures/trek_no_rtept.gpx.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/trek_no_rtept.gpx.geojson -------------------------------------------------------------------------------- /test/fixtures/twopoints.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/twopoints.kml -------------------------------------------------------------------------------- /test/fixtures/twopoints.kml.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/twopoints.kml.geojson -------------------------------------------------------------------------------- /test/fixtures/unique_trkpt.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/unique_trkpt.gpx -------------------------------------------------------------------------------- /test/fixtures/unique_trkpt.gpx.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/unique_trkpt.gpx.geojson -------------------------------------------------------------------------------- /test/fixtures/utah-slopes.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/utah-slopes.geojson -------------------------------------------------------------------------------- /test/fixtures/wpt.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/wpt.gpx -------------------------------------------------------------------------------- /test/fixtures/wpt.gpx.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/wpt.gpx.geojson -------------------------------------------------------------------------------- /test/fixtures/zero_elevation.gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/zero_elevation.gpx -------------------------------------------------------------------------------- /test/fixtures/zero_elevation.gpx.geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/fixtures/zero_elevation.gpx.geojson -------------------------------------------------------------------------------- /test/geometry/area.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/geometry/area.test.ts -------------------------------------------------------------------------------- /test/geometry/distance.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/geometry/distance.test.ts -------------------------------------------------------------------------------- /test/geometry/util.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/test/geometry/util.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typedoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/typedoc.css -------------------------------------------------------------------------------- /typedoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maptiler/maptiler-client-js/HEAD/typedoc.json --------------------------------------------------------------------------------