Skip to content

Instantly share code, notes, and snippets.

@benwirf
Created May 12, 2023 00:50
Show Gist options
  • Save benwirf/c87452956aed7947d5724a946b5c671d to your computer and use it in GitHub Desktop.
Save benwirf/c87452956aed7947d5724a946b5c671d to your computer and use it in GitHub Desktop.
layer = QgsProject.instance().mapLayersByName('LIMITES_ADMINISTRATIVES_EXPRESS.LATEST')[0]
url = 'https://www.geoportail.gouv.fr/depot/layers/LIMITES_ADMINISTRATIVES_EXPRESS.LATEST/legendes/LIMITES_ADMINISTRATIVES_EXPRESS.LATEST-legend.png'
layer.setLegendPlaceholderImage(url)
props = QgsRasterLayerProperties(layer, self.iface.mapCanvas())# Note use of self.iface object if this is in a plugin
props.apply()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment