Re: [mapguide-users] Get Lat Long

2009-01-14 Thread irwan
you can easily create a script with 3 textfield, then pass the x,y and scale value to gotopoint.aspx.. declare them as a variable rather than hold a static value. ajid wrote: That Method X Y and scale was ready input on script xa href=gotopoint.aspx?id =

[mapguide-users] Automatic custom javascript loading in AjaxViewer

2009-01-14 Thread Bruno Scott
I propose a new enhencement to the AjaxViewer, the ability to the ajaxviewer to automatically include javascript files at load time In mainframe.aspx ... //Scans the customjs directory for custom client javascript files String clientJSInclude = ; String strExt =

Re: [ZS2] Re: [mapguide-users] Filter on joined database values

2009-01-14 Thread Kenneth Skovhede, GEOGRAF A/S
This is the filter: $QueryFilter='Drawing+%3D+%26apos%3B74%26apos%3B+AND+Dept+%3D+%26apos%3B136%26apos%3B' For some reason the PHP xml system does not seem to autoencode the stuff, you must xml encode your input. I don't know why the above is url encoded though. The un-encoded filter should

Re: [mapguide-users] Automatic custom javascript loading in AjaxViewer

2009-01-14 Thread Kenneth Skovhede, GEOGRAF A/S
This would load all js files for every weblayout application? Could this be tweaked to somehow take the WebLayout into consideration, so layout1 loads some files, and layout2 loads others? The problem with including such functionality, is that there are three different languages (php, jsp and

Re: [ZS2] Re: [mapguide-users] Get Lat Long

2009-01-14 Thread Kenneth Skovhede, GEOGRAF A/S
If you want to read the current x,y and scale, you must do it with javascript. There is a reference here: http://mapguide.osgeo.org/files/mapguide/docs/viewerapi/viewerapi.html#mapframe_getcenter You already have three textboxes in your code, allowing the user to enter x,y and scale. If you

[mapguide-users] Is MGOS Version 2.2 based on FDO 3.4.0?

2009-01-14 Thread carls
I found the Beta of FDO 3.4.0 had been released. Is MapGuide OS 2.2 compatible to FDO 3.4.0? Thanks! - Regards, Carl SHE -- View this message in context: http://n2.nabble.com/Is-MGOS-Version-2.2-based-on-FDO-3.4.0--tp2156671p2156671.html Sent from the MapGuide Users mailing list archive

Re: [mapguide-users] Mapguide Localization

2009-01-14 Thread Kenneth Skovhede, GEOGRAF A/S
I think you should ask Autodesk directly, as they hold the potential copyright for the files, and are the only ones who has the answer. I can see many reasons that would cause an Autodesk employee to refrain from answering such a question publicly. Regards, Kenneth Skovhede, GEOGRAF A/S

Re: [mapguide-users] Name to Display

2009-01-14 Thread Jackie Ng
Hi Fabio, Use the MgResoureService to get the xml content (GetResourceContent) for the layer definition (of the layer in question). Look at the PropertyMapping elements within. Each element will have a Name element and a Value element. The Value element contains the display name for the

Re: [mapguide-users] [ZS2] Re: Get Lat Long

2009-01-14 Thread ajid
Here my solution.. Thanx All :) i forgot to targer my frame xform action=gotopoint.aspx method=post name=form1 class=style1 id=form1 target=scriptFrame - ::: PublicVisitor ::: www.myguidepages.com -- View this message in context: http://n2.nabble.com/Get-Lat-Long-tp2155091p2161097.html

Re: [mapguide-users] [ZS2] Re: Filter on joined database values

2009-01-14 Thread irwan
Kenneth, howdy...everything is fine but, i can't encode 'ID IN ('.$res.')'. What should i do now irwan wrote: wow many thanks!! you help me a lot. Kenneth Skovhede, GEOGRAF A/S wrote: This is the filter: