Skip to content

Commit

Permalink
restore AUTO positioning of labels around points (#4402)
Browse files Browse the repository at this point in the history
closes #4402
reopens #4249
see #4242
  • Loading branch information
tbonfort committed Sep 21, 2012
1 parent 5727dd1 commit 6f4f8d0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions mapdraw.c
Expand Up @@ -3007,14 +3007,14 @@ int msDrawLabelCache(imageObj *image, mapObj *map)
positions[2]=MS_CC;
npositions = 3;
} else {
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;
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;
npositions = 8;
}

Expand Down

0 comments on commit 6f4f8d0

Please sign in to comment.