Skip to content

Commit

Permalink
Merge pull request #60011 from qgis/backport-60001-to-release-3_40
Browse files Browse the repository at this point in the history
[Backport release-3_40] [Processing] Fix regression in "Generate XYZ tiles (MBTiles)" algorithm (Fix #59986)
  • Loading branch information
rouault authored Jan 12, 2025
2 parents 8ac2db8 + 35eb16d commit 44bb6ea
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/analysis/processing/qgsalgorithmxyztiles.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,7 @@ QVariantMap QgsXyzTilesMbtilesAlgorithm::processAlgorithm( const QVariantMap &pa
}
mMbtilesWriter->setMetadataValue( "format", mTileFormat.toLower() );
mMbtilesWriter->setMetadataValue( "name", QFileInfo( outputFile ).baseName() );
mMbtilesWriter->setMetadataValue( "description", QFileInfo( outputFile ).baseName() );
mMbtilesWriter->setMetadataValue( "version", QStringLiteral( "1.1" ) );
mMbtilesWriter->setMetadataValue( "type", QStringLiteral( "overlay" ) );
mMbtilesWriter->setMetadataValue( "minzoom", QString::number( mMinZoom ) );
Expand Down

0 comments on commit 44bb6ea

Please sign in to comment.