Skip to content

Commit

Permalink
Small adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
pathmapper authored and nyalldawson committed Jan 9, 2023
1 parent 7a5a13a commit 111b5a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/developersmap.html
Expand Up @@ -42,7 +42,7 @@
}
});
var map = L.map('developers-map', { attributionControl: false }).fitBounds(geojson.getBounds());
L.control.attribution( { prefix: false } ).addTo( map );
L.control.attribution( { prefix: false } ).addTo( map );
developersMapTiles.addTo(map);
geojson.addTo(map);
setTimeout(function() {
Expand Down
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/qgis/TilesXYZ.py
Expand Up @@ -601,7 +601,7 @@ def processAlgorithm(self, parameters, context, feedback):
minzoom=self.min_zoom,
maxzoom=self.max_zoom,
tms='true' if is_tms else 'false',
attribution=self.tr('Created by QGIS algorithm:') + ' "' + self.displayName() + '"'
attribution=self.tr('Created by QGIS algorithm:') + ' ' + self.displayName()
)
with open(output_html, "w") as fh:
fh.write(html_code)
Expand Down

0 comments on commit 111b5a7

Please sign in to comment.