[mapguide-users] Re: Raster resizing algorithm

2010-11-23 Thread Tom Chadwin
Bump - can anyone reply to this? Thanks Tom -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Raster-resizing-algorithm-tp1816249p5766022.html Sent from the MapGuide Users mailing list archive at Nabble.com. ___ mapguide-users

[mapguide-users] Re: RE:

2010-11-23 Thread GordonL
Just to Follow Up. The data source is a SQL Server 2008. There is a Key assigned and the features select (highlight blue) but the The specified object was not found popup message from FUSION continues. -- View this message in context:

Re: [mapguide-users] Re: RE: Selected Object Not Found

2010-11-23 Thread Michael Adair
Is there a URL we can have a look at this? What are the responses from Query.php and Selection.php (from the console). Mike On 23/11/2010 9:21 AM, GordonL wrote: Just to Follow Up. The data source is a SQL Server 2008. There is a Key assigned and the features select (highlight blue) but

RE: [mapguide-users] Re: Raster resizing algorithm

2010-11-23 Thread Trevor Wekel
Hi Tom, As far as I know, the FDO GDAL provider is still using nearest neighbour. GDAL does support other resampling mechanisms but I haven't looked into the code changed required to use them in the provider. Regards, Trevor -Original Message- From:

Re: [mapguide-users] Re: RE: Selected Object Not Found

2010-11-23 Thread rdbauer
I had something really similar also with SQL Server 2008. It happened after making a few changes so things such as the join. I finally said forget it and rebuilt the layers from scratch exactly the same way and every worked perfect. I only had a few layers so it wasn't a huge deal. Just a

[mapguide-users] Re: RE:

2010-11-23 Thread GordonL
Here is the URL http://cmnmaps.ca/SASKATCHEWAN/ just zoom in and select one of the parcels (there are a few in each small town). I have recreated the Datasource, Layer, etc. The error even appears in preview mode within Studio/Maestro. gordon -- View this message in context:

Re: [mapguide-users] Re: RE:

2010-11-23 Thread Michael Adair
Gordon, I had a quick look and I think everything is working correctly from the Fusion point of view. It would seem that the lines in GetSelectionProperties.php: $selection = new MgSelection($map); if($selText != ) { $selection-FromXml($selText); } is

[mapguide-users] RE: New Enterprise Mapguide Samples unable to download.

2010-11-23 Thread BTenBroeck
I stumbled across this post and was going to download the sample apps that everyone is referring to. However, it seems as if they are not longer available? Does anyone have any ideas where I might get these? (Or am I missing the link somehow?!!!) I realize this thread is over a year old

[mapguide-users] SQL Server data visibility is intermittent

2010-11-23 Thread Warren Medernach
Hello all, MGOS 2.2 (Version 2.2.0.4829) Win XP IIS (VM XP Mode) SQL Server 2008 on host I'm seeing some weirdness with data coming from SQL Server which I think might be related to the Geography data type. No data will show up at the initial map load zoom scale, but if I zoom in a bit it will

[mapguide-users] Re: RE:

2010-11-23 Thread GordonL
The wierd thing is that the selection doesn't seem to be an issue with the AJAX viewer. I wonder if there is a space or something in the XML selection.. -- View this message in context:

[mapguide-users] Re: SQL Server data visibility is intermittent

2010-11-23 Thread Jackie Ng
Could it be the initial view of the map is outside the [-90, 90] latitude range? - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/SQL-Server-data-visibility-is-intermittent-tp5767786p5768623.html Sent from the MapGuide Users mailing list archive at Nabble.com.

[mapguide-users] Create feature source

2010-11-23 Thread Lee Wade
I am new to MGOS and am having some trouble creating an oracle feature source in a file called query.aspx that allows a search to be performed on an oracle table. The query was previously performed on an SDF file. A copy of the part of the code that creates the feature source is below:

[mapguide-users] Re: Create feature source

2010-11-23 Thread Jackie Ng
Assuming your Oracle database is already set up. Then you should already have an Oracle Feature Source in your Site Repository. Replace sdfResId with the resource id of your Oracle Feature Source. This assumes your Oracle database is structurally the same as the previous SDF file. - Jackie --

[mapguide-users] Re: Create feature source

2010-11-23 Thread Lee
Thanks Jackie, yes I do have an oracle connection set and running the resource identifier is Library://New Feature source.FeatureSource. Replacing sdfresid with Library://New Feature source.FeatureSource I need to add other code for parameters, create schemas etc cant seem to find an example of

RE: [mapguide-users] Re: Create feature source

2010-11-23 Thread VOLZ Mark (FN)
Lee, Which oracle FDO are you using (SL King or Autodesk)? There are different parameters for each. I can send through some c# .net code I cam currently using for both if you would like. Mark -Original Message- From: mapguide-users-boun...@lists.osgeo.org

[mapguide-users] Re: Create feature source

2010-11-23 Thread Lee
Thanks Mark, I am using Autodesk FDO. I would really appreciate some example c# .net code would help me a lot. Lee -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Create-feature-source-tp5768882p5769213.html Sent from the MapGuide Users mailing list archive at

RE: [mapguide-users] Re: Create feature source

2010-11-23 Thread VOLZ Mark (FN)
Lee, I'm using this in Autocad map which means a lot of the class names are different but they are basically they are the same you just need to replace the AcMapclass with Mgclass AcMapResourceService rs; rs =

[mapguide-users] Re: Create feature source

2010-11-23 Thread Lee
Thanks Mark, I am running Mapguide Studio 2010 and this query is to search on the oracle table within the site. Lee -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Create-feature-source-tp5768882p5769250.html Sent from the MapGuide Users mailing list archive at

RE: [mapguide-users] Re: Create feature source

2010-11-23 Thread VOLZ Mark (FN)
Lee, Sorry I misunderstood. Just to save another one, basically you need to programically add a new layer (layer data comes from oracle) to the current map? If so does the new layer need to be created each time or can you have a generic layer and just modify as needed? I have a number of sites