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

2009-01-30 Thread Kenneth Skovhede, GEOGRAF A/S
Perhaps you can create a package from a Session repo? You will run into two problems if you try to copy from Session to Library, 1) Session repo is not enumerable (a security feature, IMO useless) 2) Runtime Maps cannot be saved into Library. Both problems can be solved by doing a custom build

Re: [mapguide-users] Custom Search

2009-01-30 Thread Kenneth Skovhede, GEOGRAF A/S
Yes, but once you have the full Xml, you can load it into an Xml parser. It looks like you are using C#, so the code would be: XmlDocument doc = new XmlDocument(); doc.LoadXml(rd.ToString()); XmlNode node = doc.SelectSingleNode(xs:Filter, namespacemanager); //You need to setup the namespace

Re: [mapguide-users] Creating Packages dynamically

2009-01-30 Thread Kenneth Skovhede, GEOGRAF A/S
Steps required to create a FeatureSource: MaestroAPI.HttpServerConnection con = new OSGeo.MapGuide.MaestroAPI.HttpServerConnection(new Uri(http://localhost/mapguide;), Administrator, admin, null, true); MaestroAPI.FeatureSource featureSource =

[mapguide-users] Thematic Mapping

2009-01-30 Thread padmini godavarthi
Hi, iam using mpguide opensource 2.0 (.net 2.0 +IIS 5.1). I want to do thematic mapping for polygon layer(for example parcel layer) i tried to use the code in dotnetviewer sample.its working fine iam able to create a thematic layer with same color to the all polygons. Now my problem is that i

[mapguide-users] Help whit MapGuide in Spanish

2009-01-30 Thread Marcelo Jaureguiberry
Hola a todos, hace poco que comence a usar el MapGuide Open Source y tengo alguno problemas y dudas hacerca de la onfiguracion principalmente del servidor. Alguno de ustedes puede darme ayuda en Español. Grcaias a todos ___ mapguide-users mailing list

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

2009-01-30 Thread Paul Spencer
This is trickier than it should be :( Ideally it should pass an argument which is the map that triggered the event or set the context (this) to be the map, but neither happens. Fortunately there are many ways around this ... Map.registerForEvent(Fusion.Event.MAP_LOADED,

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

2009-01-30 Thread bruce_weston
Hmmm. Creating a package from a session may well the be the way forward. I will look at doing this programatically and report back to the board on my progress! thanks for all your help so far people! Ross Kenneth Skovhede, GEOGRAF A/S wrote: Perhaps you can create a package from a Session

Re: [mapguide-users] invokeurl

2009-01-30 Thread Paul Spencer
Thanks Gordon Paul On 29-Jan-09, at 4:08 PM, GordonL wrote: 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

Re: [mapguide-users] Fusion and Digitizing

2009-01-30 Thread Paul Spencer
Thanks guys ... the digitizing code has changed in the upcoming 2.0 release to use the OpenLayers vector library rather than our home- grown canvas implementation so we'll make sure there is a way to clean up after digitizing ... Mike, can you take a skim through this thread and make sure

[mapguide-users] Filtering layers in php application

2009-01-30 Thread Arnaud De Groof
Hi, I want to customize different applications from the phpviewersample like Theme layer and Query. In fact, my layout includes an important quantity of layers and these two applications are not pertinent for all the layers (and features). So, is it possible to limit the layers (features)

RE: [mapguide-users] Fusion and Digitizing

2009-01-30 Thread Mark Pendergraft
Even better news! Any word on when the 2.0 beta will be available? -Mark -Original Message- From: mapguide-users-boun...@lists.osgeo.org [mailto:mapguide-users-boun...@lists.osgeo.org] On Behalf Of Paul Spencer Sent: Friday, January 30, 2009 4:16 AM To: MapGuide Users Mail List Cc: Mike

[mapguide-users] RE: Filtering layers in php application

2009-01-30 Thread Chris Claydon
In the web tier API, the MgMap object has a GetLayerGroups() method that should allow you to determine the list of layer groups. Building a UI for selecting a group would probably be very similar to the existing layer filter. MgLayer has a GetGroup() method that would allow you to determine if

[mapguide-users] Select Within

2009-01-30 Thread wordsy
Hey all; It seems randomnly that my Select-Within no longer works. I can no longer draw a rectangle in select mode and select all within that rectangle. Has this happened to anyone? This is kind of urgent. Any help is much appreciated. -- View this message in context:

RE: [mapguide-users] Help whit MapGuide in Spanish

2009-01-30 Thread Sergio Nistal Calvo
Hola Marcelo, Yo no soy un experto, estoy utilizando MapGuide Open Source para hacer el Proyecto Final de Carrera desde hace unos meses. Si estás utilizando la versión MapGuide 2.0.1 y de FDO la 3.0.1 en Windows (a partir del código fuente, con apache como servidor y php como lenguaje) a lo

RE: [mapguide-users] Fusion and Digitizing

2009-01-30 Thread Jason Birch
An alpha of MGOS 2.1 (including Fusion 2.0 beta) is supposed to be ready by end of month, but I'm going to have a couple really late nights if I'm going to make that :) Paul, correct me if I'm wrong, but I think that Fusion 2.0 will run against MGOS 2.0, though some of the performance

RE: [mapguide-users] Thematic Mapping

2009-01-30 Thread Chris Claydon
I would recommend modifying your call to InterpolateColor() so that the start color and end color correspond to the colors you want. They are currently both set to the same string. -Original Message- From: mapguide-users-boun...@lists.osgeo.org

[mapguide-users] SQL 2008, MGOS 2.0.2, FDO 3.3.x - 3.4.x, Maestro 1.0.9 do not cooperate

2009-01-30 Thread miansi
Hello, I am newbe in this area and I am trying to marry SQL 2008 with MGOS. I used this topic to do transfer from SHP to SQL http://www.longhorncorner.com/UploadFile/nschan/Shapefiles04112007005648AM/Shapefiles.aspx Last Friday everything was fine and I was able to see my data on the map. Then

Re: RE: [mapguide-users] Postgis/mapguide

2009-01-30 Thread tmerz
Hi there, I've found many of the posting regarding connecting PostGIS and MGOS extremely useful. I have managed to create a datasource, point it to the PostGIS database, and no errors are reported when testing the connection. GREAT! However... Now, I am trying to create a map that will allow

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

2009-01-30 Thread Rodolfo Moreno
Thanks Paul, it works, it means that the parameter is being passed to the mapLoaded function. However I think that I have detected an issue with MAP_LOADED event in IE7 (in FF2 it works good) how you know I have two maps (MAP, MAP1). So the MAP_LOADED event is not calling to mapLoaded function

[mapguide-users] Mapguide OpenSource and DWF files

2009-01-30 Thread rithika
Hello, I am a new user of Mapguide and had a question about how to display a .dwf file using jsp in Mapguide. Based on the sample: String webLayout = Library://Samples/Sheboygan/Layouts/SheboyganJsp.WebLayout; frame src=../mapviewerjava/dwfviewer.jsp?SESSION=%= sessionId %WEBLAYOUT=%=

Re: RE: [mapguide-users] Postgis/mapguide

2009-01-30 Thread Zac Spitzer
Try using Maestro or MapGuide Studio, Web studio is more a proof of concept and has issues probably should be removed from the distribution IHMO z On Sat, Jan 31, 2009 at 8:22 AM, tmerz trishm...@gmail.com wrote: Hi there, I've found many of the posting regarding connecting PostGIS and