Skip to content

Commit

Permalink
fix order of auto labels around points
Browse files Browse the repository at this point in the history
fixes #4249 , applies to #4242
  • Loading branch information
tbonfort committed Apr 6, 2012
1 parent 999dfea commit 9ea84f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mapdraw.c
Original file line number Diff line number Diff line change
Expand Up @@ -2941,7 +2941,7 @@ int msDrawLabelCache(imageObj *image, mapObj *map)
positions[0]=MS_UC; positions[1]=MS_LC; positions[2]=MS_CC;
npositions = 3;
} else {
positions[0]=MS_UL; positions[1]=MS_LR; positions[2]=MS_UR; positions[3]=MS_LL; positions[4]=MS_CR; positions[5]=MS_CL; positions[6]=MS_UC; positions[7]=MS_LC;
positions[0]=MS_UC; positions[1]=MS_LC; positions[2]=MS_CR; positions[3]=MS_CL; positions[4]=MS_UR; positions[5]=MS_UL; positions[6]=MS_LR; positions[7]=MS_LL;
npositions = 8;
}

Expand Down

0 comments on commit 9ea84f3

Please sign in to comment.