Skip to content

Commit

Permalink
WMTSModel add GeoTrellisOgcSource match item (#395)
Browse files Browse the repository at this point in the history
  • Loading branch information
RunBoo authored May 13, 2024
1 parent b6d7ffd commit 65b77d5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ogc/src/main/scala/geotrellis/server/ogc/wmts/WmtsModel.scala
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ case class WmtsModel[F[_]: Monad](
MapAlgebraTiledOgcLayer(name, title, crs, layout, simpleLayers, algebra, style, resampleMethod, overviewStrategy)
case ss: SimpleSource =>
SimpleTiledOgcLayer(ss.name, ss.title, crs, layout, ss.source, style, ss.resampleMethod, ss.overviewStrategy)
case gos: GeoTrellisOgcSource =>
SimpleTiledOgcLayer(gos.name, gos.title, crs, layout, gos.source, style, gos.resampleMethod, gos.overviewStrategy)
}
}
}
Expand Down

0 comments on commit 65b77d5

Please sign in to comment.