Changing styles at different zoomlevels

Tamas Szekeres szekerest at GMAIL.COM
Mon May 29 15:23:44 EDT 2006


Which mapserver version are you using? As far as i know this legend drawing
problem was corrected according to

http://mapserver.gis.umn.edu/bugs/show_bug.cgi?id=1524

Best Regards,

Tamas Szekeres



-----Original Message-----
From: UMN MapServer Users List [mailto:MAPSERVER-USERS at LISTS.UMN.EDU] On
Behalf Of Trond Michelsen
Sent: Monday, May 29, 2006 7:53 PM
To: MAPSERVER-USERS at LISTS.UMN.EDU
Subject: [UMN_MAPSERVER-USERS] Changing styles at different zoomlevels

Hi.

What's the preferred way of setting different styles to a layer at
different zoom levels?

I use a 6 pixels wide line to draw highways, but when you zoom far
out, the roads just get too big. I know I can set maxlevel to turn the
layer off, and I do turn off smaller roads at smaller scales, but I'd
like to be able to show the highways with at different symbol (thinner
line) as the user zooms out.

Now, it's not very difficoult to do this with minscale/maxscale and
extra classes for the highways, but the problem is that the legend
will include all versions of the highway-symbols, regardless of the
zoomlevel.

Is there a way to tell mapserver not to draw legendsymbols for the
classes that aren't drawn at a particular zoom level?

My layer is defined somewhat like this:

LAYER
  name "roads"
  data roads
  status on
  type vector
  minscale   200000
  maxscale 10000000
  classitem  "type"

  CLASS
    name "Highway"
    expression "H"
    maxscale 4000000
    STYLE
      symbol "point"
      size 6
      color 0 0 0
    END
    STYLE
      symbol "point"
      size 4
      color 255 255 0
    END
  END

  CLASS
    name "Highway"
    expression "H"
    minscale  4000000
    STYLE
      symbol "point"
      size 2
      color 0 0 0
    END
  END

END

-- 
Trond Michelsen

-- 
No virus found in this incoming message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.7.4/351 - Release Date: 2006.05.29.
 

-- 
No virus found in this outgoing message.
Checked by AVG Free Edition.
Version: 7.1.394 / Virus Database: 268.7.4/351 - Release Date: 2006.05.29.
 



More information about the mapserver-users mailing list