developmentseed / titiler

Build your own Raster dynamic map tile services
https://developmentseed.org/titiler/
MIT License
755 stars 156 forks source link

Remove default TileMatrixSetId in `0.19` #801

Open vincentsarago opened 5 months ago

vincentsarago commented 5 months ago

in order to align with the OGC Tiles specification, we have to remove the default tilematrixset in the endpoints

# Now
/cog/tiles/{z}/{x}/{y} 

# Future
/cog/tiles/WebMercatorQuad/{z}/{x}/{y} 

This is quite a breaking change but it will makes things a bit more clean in the code IMO

ref #546