Changes between Version 10 and Version 11 of MapGuideRfc9
- Timestamp:
- 03/28/07 13:30:46 (18 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MapGuideRfc9
v10 v11 40 40 $featureClass = $layer->GetFeatureClassName(); 41 41 42 $featureService = $this->site->CreateService(MgServiceType::FeatureService);43 44 42 $reader = $featureService->SelectFeatures($resId, $featureClass, null); 45 43 }}} … … 68 66 /// </summary> 69 67 /// <returns> 70 /// Returns an MgClassDefinition instance for the specified / class name.68 /// Returns an MgClassDefinition instance for the feature class of the layer. 71 69 /// </returns> 72 70 virtual MgClassDefinition* GetClassDefinition(); … … 143 141 /// <param name="mapName"> 144 142 /// A string that specifies a name for the map. 145 /// allocate service instances.146 143 /// </param> 147 144 virtual void Create(MgResourceIdentifier* mapDefinition, CREFSTRING mapName); … … 152 149 /// <param name="mapName"> 153 150 /// A string that specifies the name of the map to load. 154 /// allocate service instances.155 151 /// </param> 156 152 virtual void Open(CREFSTRING mapName); 157 153 154 /// \brief 155 /// Saves the Map. 156 /// 157 /// \return 158 /// Returns nothing. 159 /// 160 void Save(); 158 161 }}} 159 162 … … 168 171 169 172 virtual void Open(MgResourceService* resourceService, CREFSTRING mapName); 173 174 void Save(MgResourceService* resourceService); 170 175 }}} 171 176