Skip to content

Commit

Permalink
Merge pull request #148 from Samweli/map_layout_order_change
Browse files Browse the repository at this point in the history
Map layout layers order change
  • Loading branch information
Samweli committed Dec 13, 2024
2 parents 5d5c0a9 + e20dfe1 commit 9e37214
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
16 changes: 11 additions & 5 deletions config.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"general": {
"name" : "EPAL - Eligible Project Area Locator.",
"name": "EPAL - Eligible Project Area Locator.",
"qgisMinimumVersion": 3.20,
"qgisMaximumVersion": 3.99,
"icon": "icon.svg",
Expand All @@ -9,14 +9,20 @@
"homepage": "https://github.com/kartoza/qgis-gea-plugin",
"tracker": "https://github.com/kartoza/qgis-gea-plugin/issues",
"repository": "https://github.com/kartoza/qgis-gea-plugin",
"tags": ["epal", "maps", "afforestation"],
"category": ["plugins"],
"tags": [
"epal",
"maps",
"afforestation"
],
"category": [
"plugins"
],
"hasProcessingProvider": "no",
"about": "Adds functionality inside QGIS to enable EPAL afforestation visualization and analysis.",
"author": "Kartoza",
"email": "[email protected]",
"description": "View, browse and navigate through imagery.",
"version": "0.0.1",
"version": "1.0.4dev",
"changelog": ""
}
}
}
3 changes: 2 additions & 1 deletion src/qgis_gea_plugin/lib/reports/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -650,8 +650,9 @@ def _configure_landscape_maps(
)
QgsProject.instance().addMapLayers([nicfi_tile_layer])

landscape_mask_layers = [self._site_layer, nicfi_tile_layer]
landscape_mask_layers = [self._site_layer]
landscape_mask_layers.extend(mask_layers)
landscape_mask_layers.append(nicfi_tile_layer)

if self._landscape_layer is not None:
landscape_mask_layers.append(self._landscape_layer)
Expand Down

0 comments on commit 9e37214

Please sign in to comment.