Changes between Version 28 and Version 29 of FDORfc6
- Timestamp:
- 07/31/07 01:45:43 (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FDORfc6
v28 v29 8 8 ||RFC Template Version||1.0|| 9 9 ||Submission Date||Jul 20, 2007 || 10 ||Last Modified|| Greg Boone[[Timestamp]]||10 ||Last Modified||Maggie Yang [[Timestamp]]|| 11 11 ||Author||Maggie Yang|| 12 12 ||RFC Status||Draft|| … … 31 31 32 32 The following section defines the WMS command enumerations. 33 33 34 Unmanaged API: 34 35 {{{ … … 65 66 66 67 WmsCommandType_GetImagefromats = NAMESPACE_OSGEO_FDO_COMMANDS::CommandType::CommandType_FirstProviderCommand + WMS_FIRST_PROVIDER_COMMAND, 67 68 WmsCommandType_GetFeatureClassStyles, 68 69 WmsCommandType_GetFeatureClassCRSNames 69 70 }; … … 72 73 }}} 73 74 74 3 new commands will be added to the FDO WMS Provider specification, allowing an application to request image fromat, style and CRS name infromation. These commands will only be able to be invoked once a connection has successfully been made to the WMS provider and in turn to the specified WMS service.75 3 new commands will be added to the FDO WMS Provider specification, allowing an application to request image fromat, style and CRS name infromation. These commands will only be able to be invoked once a connection has successfully been made to the WMS provider and in turn to the specified WMS service. 75 76 76 77 === Get Image fromats Command === … … 105 106 /// Executes the command. 106 107 ///</summary> 107 /// <returns>Returns a list of image fromatssupportted by WMS service.</returns>108 /// <returns>Returns image fromats collection supportted by WMS service.</returns> 108 109 NAMESPACE_OSGEO_COMMON::StringCollection* Execute(); 109 110 }; … … 115 116 116 117 ''NOTE: A !FeatureClass is an FDO concept. One feature class corresponds to one layer name in the originating WMS service. We use feature class, instead of layer here, in order to remain consistant with the feature concepts defined in the FDO API.'' 118 117 119 Unmanaged API 118 120 {{{ … … 160 162 161 163 ///<summary> 162 /// This command get the styles list supportted by specifiedFeatureClass164 /// This command get the styles collection supportted by specific FeatureClass 163 165 /// from WMS service. 164 166 ///</summary> … … 174 176 __property System::Void set_FeatureClassName(System::String* name); 175 177 176 /// <summary>Gets the name of FeatureClass to get the supportted styles.178 /// <summary>Gets the name of FeatureClass to retrieve all supported styles. 177 179 /// </summary> 178 180 /// <returns>Returns the name of the FeatureClass name.</returns> … … 183 185 /// </summary> 184 186 /// <returns> 185 /// Return a StringCollection 186 /// which contains all styles supported by specified feature class 187 /// Return a StringCollection which contains all styles supported by specific feature class 187 188 /// and all styles supported by its ancestors. WMS services support Style 188 189 /// declarations inherited by child Layers. … … 197 198 198 199 ''NOTE: A !FeatureClass is an FDO concept. One feature class corresponds to one layer name in the originating WMS service. We use feature class, instead of layer here, in order to remain consistant with the feature concepts defined in the FDO API.'' 200 199 201 Unmanaged API 200 202 {{{ … … 203 205 public: 204 206 /// \brief 205 /// Gets the name of the FeatureClass to getall supported CRS names.207 /// Gets the name of the FeatureClass to retrieve all supported CRS names. 206 208 /// 207 209 /// \return … … 242 244 243 245 ///<summary> 244 /// This command get the CRS names list supportted by specified FeatureClass246 /// This command get the CRS names collection supported by specified FeatureClass 245 247 /// from WMS service. 246 248 ///</summary> … … 256 258 __property System::Void set_FeatureClassName(System::String* name); 257 259 258 /// <summary>Gets the name of FeatureClass to get the supportted CRS names.260 /// <summary>Gets the name of FeatureClass to retrieve all supported CRS names. 259 261 /// </summary> 260 262 /// <returns>Returns the name of the FeatureClass name.</returns> … … 265 267 /// </summary> 266 268 /// <returns> 267 /// Returns an StringCollection 268 /// which contains all the CRS names supported by specified feature class. 269 /// Returns an StringCollection which contains all the CRS names supported by specific feature class. 269 270 /// and all CRS names supported by its ancestors. WMS services supports CRS 270 271 /// declarations inherited by child Layers.