Re: [pmapper-users] Problem with "Select Tool" and MAXSCALE

2010-09-24 Thread Thomas RAFFIN
Really I don't know... Because for me it works well with pmapper trunk and demodata. Nothing in the log files? Are you using an old mapserver version? Are you using the offical pmapper 4 version, or the last dev version (available here : http://www.pmapper.net/dl/pmapper-dev.zip or via SVN) ?

Re: [pmapper-users] Problem with "Select Tool" and MAXSCALE

2010-09-24 Thread s_lar...@libero.it
In log files no error, Mapserver version is 5.2.1 (ms4w), pmapper version is 4 dowloaded from http://sourceforge. net/projects/pmapper/files/ >Da: traf...@sirap.fr >Data: 24/09/2010 9.28 >A: >Ogg: Re: [pmapper-users] Problem with "Select Tool" and MAXSCALE > > Really I don't know... Because f

Re: [pmapper-users] Problem with "Select Tool" and MAXSCALE

2010-09-24 Thread Thomas RAFFIN
Could you try this pmapper version : http://www.pmapper.net/dl/pmapper-dev.zip ? It is not a stable version, but more recent than yours. Maybe it could solve the problem. Le 24/09/2010 10:51, s_lar...@libero.it a écrit : > In log files no error, > Mapserver version is 5.2.1 (ms4w), > pmapper v

[pmapper-users] Mutually disabling categories

2010-09-24 Thread Michael Grün
Hi to all, is it possible to do the mutually disabling also between categories, not only for groups and layers? I tried it in the config_default.xml, but don’t know how to handle it…there was a similar question in 2007, but unfortunately without answer yet…. thanks for any answer… Michael Gruen,

Re: [pmapper-users] Problem with "Select Tool" and MAXSCALE

2010-09-24 Thread s_lar...@libero.it
With version dev it works! For my needs, I customize the file globals.php in order to draw the various layers. Moreover, I also configure the extents of the map with setExtent (.) I noticed that with this change (setExtent ()) select tool does not work, the same applies to the version pmapper-dev

Re: [pmapper-users] Problem with "Select Tool" and MAXSCALE

2010-09-24 Thread Thomas RAFFIN
I use "$map->setExtent()" in globals.php and I've no problems. But I keep EXTENT in mapfile. After reading my code, I call setExtent at the end of globals.php. Le 24/09/2010 12:44, s_lar...@libero.it a écrit : > With version dev it works! > For my needs, I customize the file globals.php

Re: [pmapper-users] Problem with "Select Tool" and MAXSCALE

2010-09-24 Thread s_lar...@libero.it
Here below my configuration: globals.php-- (.) /** * INITIALIZE MAP */ $PM_MAP_FILE = $_SESSION['PM_MAP_FILE']; $map = ms_newMapObj($PM_MAP_FILE); //$mapTmpFile = $_SESSION['web_imagepath'] . session_id() . ".map"; //$map->save($mapTmpFile); $map->

Re: [pmapper-users] Problem with "Select Tool" and MAXSCALE

2010-09-24 Thread Thomas RAFFIN
I've forgottent : when I call map->setExtent, I also set map width and height (just before extent) : map->set('width', xxx) and map->set('height', xxx) Le 24/09/2010 12:44, s_lar...@libero.it a écrit : > With version dev it works! > For my needs, I customize the file globals.php in order to dr

Re: [pmapper-users] Problem with "Select Tool" and MAXSCALE

2010-09-24 Thread Salvatore Larosa
Wow, I solved it! Just after the call to setExtent i add map->setSize(xxx,xxx) and all works fine! Thank you very much for your hints!!! >Da: traf...@sirap.fr >Data: 24/09/2010 14.44 >A: >Ogg: Re: [pmapper-users] Problem with "Select Tool" and MAXSCALE > > I've forgottent : when I call map->s