Re: [mapguide-users] having a problem for mapGuide

2009-01-29 Thread Jackie Ng
If you only have wamp installed on the (false) belief is is required for MapGuide development, then you can safely uninstall it. Apache's web root (that is installed with MapGuide) is at: your mapguide install directory\WebServerExtensions\www (ie. D:\Program

[mapguide-users] Fusion and phpviewersample application - error session ID

2009-01-29 Thread Arnaud De Groof
Hi, I have changed the parameter 'SESSION' by 'session' but there is no change. The following error is yet encountered: Error Invalid argument(s): [1] = The session ID is invalid because the session separator character was not found. Invalid argument(s): [1] = The session ID is invalid

Re: [mapguide-users] Two maps in the same layout

2009-01-29 Thread Rodolfo Moreno
Thanks Jackie and Paul for the quickly answer. I was testing the two ways. Paul with respect to the FUSION viewer, I could place two maps in the same layout, however I could not handle suitably the event MAP_LOADED. this is my code: var Map; var Map1; var fusionInitialized = function() {

Re: [mapguide-users] invokeurl

2009-01-29 Thread GordonL
Hi Andrew, I am having trouble finding the entry in Nabble. Do you have an example? I am sure I did this a couple of years ago, but I can't find it. Can it be part of the Widget XML in Studio too? thanks gordon Andrew DeMerchant wrote: I did...I also turned on the scrollbars - but I

RE: [mapguide-users] Maintaining MapGuide Session during Restart

2009-01-29 Thread bruce_weston
Bruce D, Are you suggesting that this can be done? Does anyone have a script or a method of copying the session repository into a library object? Is there even a way of creating a copy of the session as XML? thanks, Bruce W Bruce Dechant wrote: Bruce, What you are doing by trying to

Re: [mapguide-users] invokeurl

2009-01-29 Thread Andrew DeMerchant
It wasn't part of the widget - i've been away from Fusion for too long now, and really can't recall. I would imagine it was in the .js file for that widget...sorry I'm no more help than that! On 1/29/2009 11:44 AM, GordonL wrote: Hi Andrew, I am having trouble finding the entry in Nabble.

RE: [mapguide-users] Longitude, Zone and Reference meridian

2009-01-29 Thread Orest Halustchak
Hi Don, I'm assuming you mean UTM zone? For UTM, given the zone number the formula for central meridian is: zone * 6 - 183 UTM zones are 6 degrees wide. From this, you can generate the math for going in the other direction. Thanks, Orest. From: mapguide-users-boun...@lists.osgeo.org

[mapguide-users] Final Project about MapGuide

2009-01-29 Thread Sergio Nistal Calvo
Hi, since last March I´m making the Final Project about a study of MapGuide´s tool (version 2.0.1, Fusion 3.0.1). First, I installed the tool with Windows installers. After, thank you, I installed it on Windows through the source code (my partner is in charge of the installation on Linux)

Re: [mapguide-users] invokeurl

2009-01-29 Thread GordonL
Hi Andrew, ok I figured it out. It is the InvokeURL.js file. This file is found in the following folder: \www\fusion\widgets Here is the issue: At line 40 it shows: Fusion.Widget.InvokeURL.prototype = { sFeatures : 'menubar=no,location=no,resizable=yes,status=no,scrollbars=yes', Which is

RE: [mapguide-users] invokeurl

2009-01-29 Thread Andy Morsell
Gordon, Please be sure to submit this as a bug to the Fusion project Trac. Andy Morsell, P.E. Spatial Integrators, Inc. www.SpatialGIS.com -Original Message- From: mapguide-users-boun...@lists.osgeo.org [mailto:mapguide-users-boun...@lists.osgeo.org] On Behalf Of GordonL Sent:

RE: [mapguide-users] invokeurl

2009-01-29 Thread GordonL
Done! http://trac.osgeo.org/mapguide/ticket/832 regards gordon Andy Morsell wrote: Gordon, Please be sure to submit this as a bug to the Fusion project Trac. Andy Morsell, P.E. Spatial Integrators, Inc. www.SpatialGIS.com -Original Message- From:

RE: [mapguide-users] Fusion and Digitizing

2009-01-29 Thread GordonL
You know, you really do not need to reinvent the wheel, if you have already built a lot of code with the Basic Web Layouts. Did you know that Fusion supports some retro digitizing methods? For example, I put the following in an INVOKESCRIPT in the Flexible Web Layout:

RE: [mapguide-users] Fusion and Digitizing

2009-01-29 Thread Mark Pendergraft
I was in no way implying the wheel should be reinvented, in fact the code I posted was an example of how to use the MapGuideViewerAPI.js supplied DigitizePolygon(handler) function that you referred to. I did say that I would like to see some method to clear the digitized shapes after the

RE: [mapguide-users] Fusion and Digitizing

2009-01-29 Thread GordonL
Hi Mark, I know what you mean about the sticky digitizing... I was told to look at the resetCanvas function in the Measure.js file to get rid of that leftover digitize graphics...but I haven't tried it yet... gordon Mark Pendergraft wrote: I was in no way implying the wheel should be

RE: [mapguide-users] Maintaining MapGuide Session during Restart

2009-01-29 Thread Bruce Dechant
Bruce, You can keep move some of the session data to the library - ie: resources that you have created in the session. What you are asking is for the session state information to be maintained - that information cannot be replicated in the library. I'm not a web developer, but what about using

Re: [mapguide-users] TaskFrame and Multi-Selection

2009-01-29 Thread wordsy
Thanks very much this worked great! Jackie Ng wrote: You need to get the selection XML of the current runtime map, which can then be converted into a filter that you use to query your feature source. The query result will be the seleted features. - Jackie wordsy wrote: Hey All;

[mapguide-users] Show/Hide Task Frame

2009-01-29 Thread wordsy
Hello; I have built a custom page to put in the TaskPane. The page emulates the properties pane except it allows for a multiple selection. What I need to is be able to show/hide the task pane when a user selects a feature. I have already hijacked the OnSelection event, ideally I would like

RE: [mapguide-users] Fusion and Digitizing

2009-01-29 Thread Rodolfo Moreno
Hi Mark, I have gotten to clear the digitized polygons in FUSION viewer by modifying the MapGuideViewerapi.js var polDigitizer; function DigitizePolygon(handler) { if (handler) { var Fusion = window.top.Fusion; var mapWidget = Fusion.getWidgetById(mapWidgetId); var

RE: [mapguide-users] Fusion and Digitizing

2009-01-29 Thread Mark Pendergraft
thanks! I'll take a look at it later tonight. -Mark -Original Message- From: mapguide-users-boun...@lists.osgeo.org [mailto:mapguide-users-boun...@lists.osgeo.org] On Behalf Of Rodolfo Moreno Sent: Thursday, January 29, 2009 3:02 PM To: mapguide-users@lists.osgeo.org Subject: RE:

[mapguide-users] where's Sheboygan.mgp package

2009-01-29 Thread geo_colleen
When installing MapGuide 2.0 I followed steps 1-3, renamed Sheboygan with a .mgp extension, kept it zipped and copied it in the 'packages' folder (checked many times) and yet there are no packages to load in the server. I have read the previous discussion on this topic and tried many things, but

Re: [mapguide-users] Show/Hide Task Frame

2009-01-29 Thread Jackie Ng
Get a reference to the task pane container frame and set it's DOM element width to 0px Frames can be referenced by name, so assuming your viewer is in a frame named viewerFrame. The reference to the task pane frame (in javascript) would be. viewerFrame.taskArea taskArea is the container frame

RE: [mapguide-users] where's Sheboygan.mgp package

2009-01-29 Thread Andy Morsell
Make sure that you are not hiding file extensions in Windows Explorer. It could be that the file still has a .zip extension on it and you just can't see it and MapGuide is then ignoring it. Also, in MapGuide Site Administrator, go to Configure Services and then confirm that he Packages folder is

Re: [mapguide-users] Show/Hide Task Frame

2009-01-29 Thread ajid
hello bro.. u visit to www.myguidepages.com or http://www.myguidepages.com/forum/view_thread.php?message_id=12 that a invoke script .. - ::: PublicVisitor ::: www.myguidepages.com -- View this message in context: http://n2.nabble.com/Show-Hide-Task-Frame-tp2241668p2242897.html Sent from