[pmapper-users] New file syntax

2007-03-12 Thread Walter Lorenzetti
Hi all,

at http://www.faunlia.it/download/syntax

are available for download the new xml file syntax for kate kwrite and 
quanta
for config.ini 3.1 beta4 version e and map file 4.10 version

bye
Walter



-- 
Walter Lorenzetti
email+jabber: [EMAIL PROTECTED]
www.faunalia.it
Cell: (+39) 347-6597931  Tel+Fax: (+39) 0587-213742
Piazza Garibaldi 5 - 56025 Pontedera (PI), Italy


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
pmapper-users mailing list
pmapper-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmapper-users


[pmapper-users] how to post with several windows ?

2007-03-12 Thread Mcherdoud

Hi, i added a layer products to this function, when i try to display a
products for the first time its work good but i want to  display it many 
times by a different products id and especially in a different windows, how
can i do ?

Thanks.

custom.js
function openHyperlink(layer, fldName, fldValue) {

//alert ('See function openHyperlink in custom.js: ' + layer + ' - ' +
fldName + ' - ' + fldValue);

switch(layer) {
case 'cities':
//if (fldName == 'CITY_NAME') {
window.open('http://en.wikipedia.org/wiki/' + fldValue,
'wikiquery');
//}
break;
case 'products':
pmapperDisplay( fldValue ) ;
//window.open(map.phtml?language=enproduct_id= + fldValue);
break;

default:
alert ('See function openHyperlink in custom.js: ' + layer + ' -
' + fldName + ' - ' + fldValue);
}
}
-- 
View this message in context: 
http://www.nabble.com/how-to-post-with-several-windows---tf3390071.html#a9436440
Sent from the pmapper users mailing list archive at Nabble.com.


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
pmapper-users mailing list
pmapper-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmapper-users


Re: [pmapper-users] query by point on point layers after window resize

2007-03-12 Thread Alessandro Pasotti
Il 21:52, venerdì 24 novembre 2006, Armin Burger ha scritto:
 you could write both pixel and geo coordinates to the status bar or a
 DIV and see if the values you get are the ones expected and plausible.
 And also display the map width/height after resize (eg. in a div or via
 alert).

 armin

 Alessandro Pasotti wrote:
  Hi,
 
  I'm experiencing the following problem: I use identify on a point layer
  and it works ok just after opening the webgis, but after a window resize
  it does'nt work anymore.
 
  It seems like it'sending wrong image coordinates, any hint on how to
  debug this?
 
  Thanks in advance.

Hello,

I investigated this problem some more and I discovered that the image 
coordinates and extent are correct but map scale is not calculated correctly 
by mapscript.

It seems that explicitely setting map size and calling preparequery 
recalculate scale correctly:

After
http://svn.pmapper.net/trac/browser/pmapper/trunk/incphp/query/query.php#L190

$this-map-setSize($this-mapwidth, $this-mapheight);
$this-map-preparequery();


I'm not 100% sure this solve the issue, because it happens somewhat 
erratically if you zoom in or out after resizing or maximizing the window.

Here working with
MapServer version 4.10.0

-- 
Alessandro Pasotti
itOpen - Open Solutions for the Net Age
w3:  www.itopen.it
Linux User# 167502

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
pmapper-users mailing list
pmapper-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmapper-users


Re: [pmapper-users] query by point on point layers after window resize

2007-03-12 Thread Armin Burger
Hi Alessandro

thanks for the hint. I experienced missing results for layers in some 
cases at certain scales (close to the display limit) without having a 
clue why it happened. I got the impression that it is only for layers 
with a different projection than the map, but I could be wrong.

The line 189
$this-map-setExtent(...

was just added once because only when applying this extent the values 
for Tolerance (and pixels as unit) are correctly taken into account. 
Maybe the patch you mention can resolve the whole thing completely. I 
will try it.

Armin



Alessandro Pasotti wrote:
 Il 21:52, venerdì 24 novembre 2006, Armin Burger ha scritto:
 you could write both pixel and geo coordinates to the status bar or a
 DIV and see if the values you get are the ones expected and plausible.
 And also display the map width/height after resize (eg. in a div or via
 alert).

 armin

 Alessandro Pasotti wrote:
 Hi,

 I'm experiencing the following problem: I use identify on a point layer
 and it works ok just after opening the webgis, but after a window resize
 it does'nt work anymore.

 It seems like it'sending wrong image coordinates, any hint on how to
 debug this?

 Thanks in advance.
 
 Hello,
 
 I investigated this problem some more and I discovered that the image 
 coordinates and extent are correct but map scale is not calculated correctly 
 by mapscript.
 
 It seems that explicitely setting map size and calling preparequery 
 recalculate scale correctly:
 
 After
 http://svn.pmapper.net/trac/browser/pmapper/trunk/incphp/query/query.php#L190
 
 $this-map-setSize($this-mapwidth, $this-mapheight);
 $this-map-preparequery();
 
 
 I'm not 100% sure this solve the issue, because it happens somewhat 
 erratically if you zoom in or out after resizing or maximizing the window.
 
 Here working with
 MapServer version 4.10.0
 

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
pmapper-users mailing list
pmapper-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmapper-users


Re: [pmapper-users] iqueryLayer

2007-03-12 Thread Armin Burger
Nuria

I forward this mail to the mailing list since it was Walter Lorenzetti 
who has written the part for positioning the result DIV. For me, 
however, it was always working correctly.

armin

Nuria González wrote:
 Hi Armin,
 
 In my application http://pc213.ih.csic.es/medieval/map.phtml 
 (develop) I have put the iqueryLayer to query and select buttons.
 In js_config.php I set var autoIdentifyFollowMouse = true; in order to 
 the auto-identify layer shows pop-up element at mouse pointer. It works 
 fine for left middle of the map, but for right middle it doesn't show 
 pop-up element at mouse pointer.
 Have you got any idea about what is happening?
 
 Thanks in advance.
 Regards.
 
 _
 Acepta el reto MSN Premium: Protección para tus hijos en internet. 
 Descárgalo y pruébalo 2 meses gratis. 
 http://join.msn.com?XAPID=1697DI=1055HL=Footer_mailsenviados_proteccioninfantil
  
 
 

-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
pmapper-users mailing list
pmapper-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmapper-users


Re: [pmapper-users] (no subject)

2007-03-12 Thread Armin Burger
On the demo site there are 10 links to start p.mapper, with partially
different layouts and styles (CSS). You will need to tell me which of 
the ones you are talking about, since I cannot know which one in your 
opinion is 'traditional' and which one 'very good'.

armin

stirner mathematic wrote:
 hi list
 
 Hi armi, you know armin, I watch in you demo's on line two kind of interface 
 ...The first interface is the traditionally, the second interface is very 
 good, My question is how get it interface...In pmapper demo version 
 3.1-beta4 (download)  only to be the first interface, you can upload the 
 second interface?
 
 
 Thanx Armin
 


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT  business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.phpp=sourceforgeCID=DEVDEV
___
pmapper-users mailing list
pmapper-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/pmapper-users