Re: [mapguide-users] Is SQL Server GeometryCollection supported?

2020-11-06 Thread Riccardo Pucci
Hi Jon I had the same issue with geometry collection, in sqlserver but also in oracle and postgress. I suspect that MGOS is not able to render geometry with mixed primitive (points, linestring, polygons). I'm not gone deeper, because that issue was not critical for my project Riccardo Il giorno

Re: [mapguide-users] Is SQL Server GeometryCollection supported?

2020-11-06 Thread _Jon_
That would certainly explain what I am seeing. thank you for the info! -- Sent from: http://osgeo-org.1560.x6.nabble.com/MapGuide-Users-f4182607.html ___ mapguide-users mailing list mapguide-users@lists.osgeo.org https://lists.osgeo.org/mailman/listin

Re: [mapguide-users] Is SQL Server GeometryCollection supported?

2020-11-05 Thread Jackie Ng
Lack of GeometryCollection support looks to be a general limitation of the stylization engine: https://trac.osgeo.org/mapguide/browser/trunk/MgDev/Common/Stylization/LineBuffer.cpp#L1163 - Jackie -- Sent from: http://osgeo-org.1560.x6.nabble.com/MapGuide-Users-f4182607.html ___

Re: [mapguide-users] Is SQL Server GeometryCollection supported?

2020-11-05 Thread Gordon Luckett
I haven't experienced problems with MapGuide viewing them, but I definitely have had issues with ArcGIS. I usually write a trigger or manually update like this in SQL Server: update [dbo].[lot_lines] set Geom= Geom.CurveToLineWithTolerance(0.01,0) where Geom.STGeometryType() = 'CompoundCurve'

[mapguide-users] Is SQL Server GeometryCollection supported?

2020-11-05 Thread _Jon_
I have been having difficulty viewing data that is stored in SQL Server as a GeometryCollection. If the collection is split up into its component LINESTRING, COMPOUNDCURVE and CIRCULARSTRING elements I can see them just fine but I don't see anything when these features are stored in a collection.