Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
improve error message
  • Loading branch information
alexbruy authored and nyalldawson committed May 17, 2023
1 parent 210d9db commit 981595c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -122,7 +122,7 @@ QVariantMap QgsDownloadVectorTilesAlgorithm::processAlgorithm( const QVariantMap
tileCount += ( tileRange.endColumn() - tileRange.startColumn() + 1 ) * ( tileRange.endRow() - tileRange.startRow() + 1 );
if ( tileCount > tileLimit )
{
throw QgsProcessingException( QObject::tr( "Requested number of tiles exceeds limit of %1 tiles. Please, select a smaller extent or reduce maximum zoom level." ).arg( tileLimit ) );
throw QgsProcessingException( QObject::tr( "Requested number of tiles exceeds limit of %1 tiles. Please, select a smaller extent, reduce maximum zoom level or increase tile limit." ).arg( tileLimit ) );
}
}

Expand Down

0 comments on commit 981595c

Please sign in to comment.