Changes between Version 17 and Version 18 of HttpApi/RenderingService
- Timestamp:
- 04/27/10 15:59:30 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HttpApi/RenderingService
v17 v18 43 43 ==== CLIENTAGENT Parameter ==== #ClientAgent2.1 44 44 Descriptive text describing the client of the HTTP operation. Currently used values include "Ajax Viewer", "Fusion Viewer" 45 " MapGuide Developer" and "MapGuide Maestro".45 "!MapGuide Developer" and "!MapGuide Maestro". 46 46 ==== SETVIEWCENTERX Parameter ==== #SetViewCenterX2.1 47 47 ==== SETVIEWCENTERY Parameter ==== #SetViewCenterY2.1 … … 124 124 125 125 ==== OPERATION Parameter ==== #Operation1.0 126 Name of HTTP operation to execute. This parameter is case sensitive. Operation names should be all uppercase. 126 127 ==== VERSION Parameter ==== #Version1.0 128 Version of operation to execute. This version number corresponds to the version of !MapGuide where the operation was changed or introduced. 127 129 ==== SESSION Parameter ==== #Session1.0 130 Session identifier for the map. The session identifier is typically created using MgSite::!CreateSession() or the CREATESESSION HTTP operation. 128 131 ==== MAPNAME Parameter ==== #MapName1.0 132 The map name is the resource name of the map. For example "!WorldElevation" is the resource name for "!Library://Maps/World/WorldElevation.MapDefinition". 129 133 ==== FORMAT Parameter ==== #Format1.0 130 Image format for the rendered image. PNG8 support was added in !MapGuide 2.0. 134 Image format for the rendered image. Legal values are: 135 * "JPG" for 24 bit JPEG 136 * "PNG" for 32 bit PNG 137 * "PNG8" for 8 bit PNG '''Note: This was added in !MapGuide 2.0.''' 131 138 ==== SELECTION Parameter ==== #Selection1.0 132 139 ==== KEEPSELECTION Parameter ==== #KeepSelection1.0 133 140 Determines whether the selection is visible outside of the scale range for the selected feature(s). If "1", the selection will be visible even 141 when the feature scale range is outside of the current map scale. 134 142 135 143 === Usage === 144 {{{ 145 http://localhost/mapguide/mapagent.fcgi?OPERATION=GETDYNAMICMAPOVERLAYIMAGE&VERSION=1.0.0&SESSION=Session:d5d05422-5f75-102c-8000-02004c4f4f50_en_7F0000010AFC0AFB0AFA&MAPNAME=WorldElevation&FORMAT=PNG 146 }}} 147 Renders the !WorldElevation map from session Session:d5d05422-5f75-102c-8000-02004c4f4f50_en_7F0000010AFC0AFB0AFA as a 32 bit PNG image. 148 136 149 === Technical Notes ===