Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

split Features and Tiles endpoints in the Factory #6

Closed
vincentsarago opened this issue Nov 30, 2022 · 0 comments · Fixed by #32
Closed

split Features and Tiles endpoints in the Factory #6

vincentsarago opened this issue Nov 30, 2022 · 0 comments · Fixed by #32

Comments

@vincentsarago
Copy link
Member

vincentsarago commented Nov 30, 2022

let's have a Endpoints().register_ogc_features() and Endpoints().register_ogc_tiles()

then we can do

    def __post_init__(self):
        """Post Init: register route and configure specific options."""
        self.register_landing()
        self.register_conformance()

        if self.with_ogc_features:
            self.register_ogc_features()
       
        if self.with_ogc_tiles:
            self.register_ogc_tiles()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant