ThinkGeo.com    |     Documentation    |     Premium Support

How change road label behaviour

Hi


I am upgrading an application from v2 to v4. 


Under v2 road labels appeared for the longest roads at the most zoomed out level with more road labels appearing as I zoomed in.



Under v4 I have to zoom in a fair way before road labels start to appear.



How can I change the default labelling behaviour so it is more like v2?


Cheers


Steve


 



Should have searched the forums before posting. 
  
 The answer is to use DefaultTextStyle.TextLineSegmentRatio - this defines how long a line needs to be before a label will be shown. 
  
 Steve

I am glad you answered your own question. Anything else, do not hesitate to post.

Steve, 
  
   Some other tips to get more labels and to avoid cut off labels…  
  
             textStyle.DuplicateRule = LabelDuplicateRule.UnlimitedDuplicateLabels; 
             textStyle.GridSize = 10; 
             textStyle.SuppressPartialLabels = true; 
             //You can move this number up or down to get the fit you want 
             textStyle.TextLineSegmentRatio = 1; 
  
  
 David

Thanks David

Steve, 
  
   It’s my pleasure. 
  
 David