GeoTIFF / georaster-layer-for-leaflet

Display GeoTIFFs and soon other types of raster on your Leaflet Map
https://geotiff.github.io/georaster-layer-for-leaflet-example/
Apache License 2.0
284 stars 57 forks source link

Support Pluggable Projection Resolvers #81

Open DanielJDufour opened 2 years ago

DanielJDufour commented 2 years ago

Is your feature request related to a problem? Please describe. Some people might want to use another approach to resolving projection information rather than a static baked file of proj4js strings and epsg codes.

Describe the solution you'd like Maybe allow users to specify

new GeoRasterLayer({
    georaster
    reproject: ({ pt, in_srs, out_srs }) => ...
});

Describe alternatives you've considered none yet, but def open to it. this is just the start

Additional context Question from FOSS4G

what is the tech behind proj4-full-loaded ? A rewrite of proj4 in JS ? A webassembly port ? Any thoughts regarding adopting PROJ >= 6 with its new SQLite based database ?