[mapguide-users] Extent of selected symbol

2011-05-30 Thread vd
Hi, if you have a symbol, with different sizes in different scale ranges, the extent of the selection of this symbol is in all scale ranges the same (the first occuring in the layerdefinition). MGOS 2.2 Ajax Viewer sample layerdafinition: ?xml version=1.0 encoding=utf-8?

[mapguide-users] Retrieve fields names and attributes from Postgres table

2011-05-30 Thread ar_gaeta
Hi all, I'm searching a way to know the fields name and attribute of a specified layer in a map. I've tried some ways: 1) The string:

RE: [mapguide-users] Mapguide 2.2 Civil 3D error

2011-05-30 Thread Martin Morrison
Remove the mentor library from the system path, then set it as an environment variable with your MG service. Martin From: mapguide-users-boun...@lists.osgeo.org [mapguide-users-boun...@lists.osgeo.org] On Behalf Of ishka [ish...@gmail.com] Sent:

[mapguide-users] Buffer in FUSION

2011-05-30 Thread GordonL
HI All, I am using MG 2.2 (Centos 5.4) and I have been getting some weird errors with Buffering with Fusion. Slate Template - Sheboygan MGP Select a Parcel - CLick Buffer (choose any units i.e. Feet) Javascript Timeout and Buffer.php error. Argument Is Null - tried with Aqua (same issue) -

[mapguide-users] Re: Buffer in FUSION

2011-05-30 Thread Jackie Ng
Is this the full error message with display_errors = On in php.ini? - Jackie -- View this message in context: http://osgeo-org.1803224.n2.nabble.com/Buffer-in-FUSION-tp6419611p6419653.html Sent from the MapGuide Users mailing list archive at Nabble.com.

[mapguide-users] Re: Retrieve fields names and attributes from Postgres table

2011-05-30 Thread Jackie Ng
Firstly, GetFeatureClassName() returns the qualified class name (ie. [schema name]:[class name]) Secondly, do you really want the feature schema XML? If you just want all the field names just use MgFeatureService.GetClassDefinition(), it returns a MgClassDefinition Each property in this

[mapguide-users] Re: Buffer in FUSION

2011-05-30 Thread GordonL
Ah yes, forgot to turn on errors in php: Warning: file_get_contents(./arealayerdef.templ) [function.file-get-contents]: failed to open stream: No such file or directory in /usr/local/mapguideopensource-2.2.0/webserverextensions/www/fusion/widgets/BufferPanel/Buffer.php on line 415 Also Notice:

[mapguide-users] Re: Buffer in FUSION

2011-05-30 Thread GordonL
OMG - the Fusion code does not take into account the Case-Sensitive nature of Linux. I changed the line 415 of Buffer.php from $layerTempl = file_get_contents(./arealayerdef.templ); to $layerTempl = file_get_contents(./AreaLayerDef.templ); -- View this message in context:

Re: [mapguide-users] Re: Buffer in FUSION

2011-05-30 Thread Michael Adair
Gordon, Can you put that into a ticket please so we don't loose track of it? (http://trac.osgeo.org/fusion/) Thanks, Mike On 30/05/2011 12:07 PM, GordonL wrote: OMG - the Fusion code does not take into account the Case-Sensitive nature of Linux. I changed the line 415 of Buffer.php from