Re: [MAPSERVER-USERS] mssql2008 binary test package available to download

2008-10-17 Thread BrainDrain
hmm >>could you provide an example to this how can I help If I use mapscript? [WebService(Namespace = "http://www.wem.volgadmin.ru/wemlib";)] [WebServiceBinding(ConformsTo = WsiProfiles.None)] [ScriptService] public class MapParser : System.Web.Services.WebService { [We

RE: [mapserver-users] AGG output with mapscript C# 5.2 problem...

2008-10-17 Thread Tiemens, Gerben
Hi, Delete the output format for standard png. Give the output format for agg the name "png" and set imagetype to PNG. If you want to be sure, set mimetype and extension in your output format. Now it will work in wms and map requests. Greets Gerben -Oorspronkelijk bericht- Van: [E

[mapserver-users] Changing imagetype of web output

2008-10-17 Thread Burgholzer,Robert
I am at a complete loss here as to how to change my image output. At some time I managed to switch from GIF output of a web image top PNG, and now I cannot get it back. I have two ways that I would like to do this: 1. In a mapfile 2. Via php mapscript I have an application that needs

Re: [mapserver-users] Changing imagetype of web output

2008-10-17 Thread Steve Lime
Hi Robert: In a mapfile it should be as easy as: IMAGETYPE GIF (or PNG or PNG24 or AGGPNG24...) This assumes you have GIF support available in GD. If it's there GIF should be the default anyway so you really shouldn't need to set IMAGETYPE. In MapScript there is a selectOutputFormat method fo

Re: [mapserver-users] AGG output with mapscript C# 5.2 problem...

2008-10-17 Thread Paul james
Hi Tamas... That problem only occurs when I use that layer: LAYER #11 NAME Test GROUP "GROUP1" TYPE LINE STATUS ON CONNECTIONTYPE POSTGIS CONNECTION "X" DATA "X" SIZEUNITS meters CLASS TEMPLATE "dummy"

[mapserver-users] STREET LABEL WON'T FOLLOW THE STREET

2008-10-17 Thread ntiamoah bernard
Hi guys I need help in making the street labels follow the street. Someone suggested this code below but it makes most of the labels disappear instead. Help please   CLASS     EXPRESSION '4'     COLOR 0 0 0 # dummy color     SYMBOL 0     LABEL SIZE  tiny   

RE: [mapserver-users] STREET LABEL WON'T FOLLOW THE STREET

2008-10-17 Thread Fawcett, David
Bernard, To make angle rotation work, you need to use a truetype font, the bitmap font 'tiny' that you have defined in your layer won't work. I would also probably turn off minfeaturesize and mindistance until you get something working. David. -Original Message- Fr

Re: [mapserver-users] STREET LABEL WON'T FOLLOW THE STREET

2008-10-17 Thread Daniel Morissette
To use ANGLE FOLLOW or ANGLE AUTO, you must use TrueType fonts. The default bitmap fonts (e.g. SIZE TINY) cannot be rotated. More info about using truetype fonts is available in the MapServer tutorial at http://biometry.gis.umn.edu/tutorial/example1-4.html Daniel ntiamoah bernard wrote: Hi

Re: [mapserver-users] STREET LABEL WON'T FOLLOW THE STREET

2008-10-17 Thread Rahkonen Jukka
Hi, What do you mean by "instead"? Really that texts do not follow the streets at all, or that they do follow the line, but just a few labels are shown on a map? Label disappearing must be due to collision handling mechanism. See what happens if you add FORCE TRUE to label definitions, that sho

[mapserver-users] MS4W 2.3 / Apache security question using deflate

2008-10-17 Thread Mark Volz
Hello, When I upgraded to MS4W, I noticed the deflate (compression) module was not working. I added the following lines in http.conf, and I was just wondering if it was a security concern or not. NEW LINES### SetOutputFilter DEFLATE ###EXISTING CODE# Options None

[mapserver-users] Layer (line) with LABELITEM...

2008-10-17 Thread Paul james
Hello guys... I have 2 layers, LINE and ANNOTATION... Like that : LAYER NAME TestLINE TYPE LINE ... CLASS STYLE SYMBOL 'circle' SIZE 16 COLOR 175 175 175 END ## BG STYLE SYMBOL 'circle'

Re: [mapserver-users] MS4W 2.3 / Apache security question using deflate

2008-10-17 Thread Jeff McKenna
Mark Volz wrote: Hello, When I upgraded to MS4W, I noticed the deflate (compression) module was not working. I added the following lines in http.conf, and I was just wondering if it was a security concern or not. NEW LINES### SetOutputFilter DEFLATE ###EXISTING CODE#