Changes between Version 17 and Version 18 of FDORfc6
- Timestamp:
- 07/23/07 21:57:50 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FDORfc6
v17 v18 48 48 49 49 3 new commands will be added to the FDO WMS Providers, individually for getting image formats, styles and CS names. The usage and the new classes and interfaces are listed as follows. 50 * '''GetImageFormats Command'''51 50 The following is an example of how WMS GetImageFormats command would be used to get all image formats supported by WMS service after connection. 52 51 {{{ … … 109 108 }; 110 109 }}} 111 * '''GetFeatureClassStyles Command''' 110 112 111 The following is an example of how WMS GetFeatureClassStyles command would be used to get all styles supported by specific layer on WMS service after connection. 113 [[BR]]'' '''Note: FeatureClass is a FDO conception, one feature class is correspond with one layer name in the WMS service. We use feature class, instead of layer here, in order to avoid the confusion of FDO user.'''''112 [[BR]]''Note: FeatureClass is a FDO conception, one feature class is correspond with one layer name in the WMS service. We use feature class, instead of layer here, in order to avoid the confusion of FDO user.'' 114 113 {{{ 115 114 FdoPtr< FDOIGetFeatureStyles > cmd = static_cast< FDOIGetFeatureClassStyles *> (conn->CreateCommand (WmsCommandType_GetFeatureClassStyles)); … … 211 210 }; 212 211 }}} 213 * '''GetFeatureClassCRSNames Command''' 212 214 213 The following is an example of how WMS GetFeatureClassCRSNames command would be used to get the all CRS names supported by specifc layer on WMS service after connection. 215 [[BR]]'' '''Note: FeatureClass is a FDO conception, one feature class is correspond with one layer name in the WMS service. We use feature class, instead of layer here, in order to avoid the confusion of FDO user.'''''214 [[BR]]''Note: FeatureClass is a FDO conception, one feature class is correspond with one layer name in the WMS service. We use feature class, instead of layer here, in order to avoid the confusion of FDO user.'' 216 215 {{{ 217 216 FdoPtr<FdoIGetFeatureClassCRSNames> cmd = static_cast<FdoIGetFeatureClassCRSNames*> (conn->CreateCommand (FdoCommandType_GetFeatureClassSupportedCRSNames));