Skip to content

legend

legend

GetLegendRunner

Bases: MapRunner

Source code in src/qgis_server_light/worker/runner/legend.py
 5
 6
 7
 8
 9
10
11
class GetLegendRunner(MapRunner):
    def __init__(self, qgis, context: JobContext, job_info: QslJobInfoLegend) -> None:
        super().__init__(qgis, context, job_info)

    def run(self):
        # TODO Implement ....
        raise NotImplementedError()

__init__(qgis, context: JobContext, job_info: QslJobInfoLegend) -> None

Source code in src/qgis_server_light/worker/runner/legend.py
6
7
def __init__(self, qgis, context: JobContext, job_info: QslJobInfoLegend) -> None:
    super().__init__(qgis, context, job_info)

run()

Source code in src/qgis_server_light/worker/runner/legend.py
 9
10
11
def run(self):
    # TODO Implement ....
    raise NotImplementedError()