Changes between Version 14 and Version 15 of MapGuideRfc6


Ignore:
Timestamp:
Feb 15, 2007, 5:43:25 PM (17 years ago)
Author:
tonyfang
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • MapGuideRfc6

    v14 v15  
    7979
    8080
     81
     82A new API method will be added to the Feature service. This new GetSpatialContexts API method is an overload of the previous GetSpatialContexts API method. It contains an additional argument: bIgnoreOverrides.
     83
     84{{{
     85virtual MgSpatialContextReader* MgFeatureService::GetSpatialContexts(MgResourceIdentifier *resource,
     86                                                                     bool bActiveOnly,
     87                                                                     bool bIgnoreOverrides);
     88
     89Gets all of the spatial contexts available in the feature source or just the active one.
     90This behaves exactly the same as the previous GetSpatialContexts method when ignoreOverrides is set to false.
     91If ignoreOverrides is set to true, coordinate system overrides specified in the SupplementalSpatialContextInfo are ignored.
     92
     93Remarks:
     94    The FdoSpatialContextList XML schema contains a specification of the content of the spatial context information returned in the MgSpatialContextReader object.
     95 
     96Parameters:
     97        resource         (MgResourceIdentifier) A resource identifier identifying a feature source in the repository.
     98        bActiveOnly      (boolean/bool) If true, the return value contains only the active spatial context. If false, the return value contains all of the available spatial contexts.
     99        bIgnoreOverrides (boolean/bool) If true, the original spatial contexts are returned. If false, coordinate system overrides
     100
     101Returns:
     102    Returns an MgSpatialContextReader object.
     103
     104Exceptions:
     105        MgFeatureServiceException       
     106        MgInvalidArgumentException     
     107        MgInvalidOperationException     
     108        MgFdoException
     109}}}
     110
     111
     112The feature source editor in Web Studio will be updated to enable the selection of a coordinate system for a feature source.
     113
     114
    81115== Implications ==
    82116
     
    92126
    93127Autodesk to supply.
     128
     129The Web Studio work will be done by DM Solutions Group.