Changes between Version 8 and Version 9 of FDORfc6


Ignore:
Timestamp:
Jul 22, 2007, 7:59:34 PM (17 years ago)
Author:
yangm
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • FDORfc6

    v8 v9  
    47473 new commands will be added to the FDO WMS Providers, individually for getting image formats, style and CS. The usage and the new classes and interfaces are listed as follows.
    4848
    49 The following is an example of how WMS GetImageFormats command would be used to get the entire supported image formats list form WMS server after connection.
     49The following is an example of how WMS GetImageFormats command would be used to get the entire supported image formats list from WMS server after connection.
    5050{{{
    5151FdoPtr<FdoIGetImageFormats > cmd = static_cast<FdoIGetImageFormats *> (conn->CreateCommand (WmsCommandType_GetImageFormats));
     
    108108}}}
    109109
    110 The following is an example of how WMS GetLayerStyles command would be used to get the entire supported image formats list form WMS server after connection.
     110The following is an example of how WMS GetLayerStyles command would be used to get the entire supported image formats list from WMS server after connection.
    111111{{{
    112112FdoPtr< FDOIGetLayerStyles > cmd = static_cast< FDOIGetLayerStyles *> (conn->CreateCommand (WmsCommandType_GetLayerStyles));
     
    204204}}}
    205205
    206 The following is an example of how WMS GetLayerCRSNames command would be used to get the entire supported image formats list form WMS server after connection.
     206The following is an example of how WMS GetLayerCRSNames command would be used to get the entire supported image formats list from WMS server after connection.
    207207{{{
    208208FdoPtr<FdoIGetLayerCRSNames> cmd = static_cast<FdoIGetLayerCRSNames*> (conn->CreateCommand (FdoCommandType_GetLayerSupportedCRSNames));