Skip to content

Commit

Permalink
Fix shift in point displacement renderer
Browse files Browse the repository at this point in the history
  • Loading branch information
mhugent committed Oct 10, 2011
1 parent e6718b6 commit 79130b3
Showing 1 changed file with 11 additions and 0 deletions.
Expand Up @@ -479,6 +479,17 @@ void QgsPointDisplacementRenderer::calculateSymbolAndLabelPositions( const QPoin
symbolPositions.clear();
labelShifts.clear();

if ( nPosition < 1 )
{
return;
}
else if ( nPosition == 1 ) //If there is only one feature, draw it exactly at the center position
{
symbolPositions.append( centerPoint );
labelShifts.append( QPointF( symbolDiagonal / 2.0, -symbolDiagonal / 2.0 ) );
return;
}

double fullPerimeter = 2 * M_PI;
double angleStep = fullPerimeter / nPosition;
double currentAngle;
Expand Down

0 comments on commit 79130b3

Please sign in to comment.