{{{ #!html

Rendering Service HTTP APIs

}}} ---- '''Revision History''' ||'''Revision'''||'''Date'''||'''Author'''||'''Comment'''|| ||0.1||April 16, 2010||Trevor Wekel||Initial documentation pass|| [[PageOutline(1-3,Table of Contents,inline)]] = Overview = This document describes the Rendering Service HTTP APIs supported by the !MapGuide mapagent. The Rendering Service APIs are used to render a map into a bitmapped image. In addition to bitmap rendering, the APIs support basic updates to the underlying !MgMap object state including changes to center, scale, and layer visibility. = !MapGuide 2.1 APIs = == !GetDynamicMapOverlayImage == === Overview === !GetDynamicMapOverlayImage returns a rendered raster image containing all visbile layers at the current center and scale for the map. This API is used in conjuction with the !GetVisibleMapExtent HTTP API to provide dynamic map updates for end user interactions. === Parameters === || '''Name''' || '''Value''' || '''Required''' || '''Description''' || || [#Operation1.0 OPERATION] || GETDYNAMICMAPOVERLAYIMAGE || Yes || Operation to execute || || [#Version1.0 VERSION] || 2.1.0 || Yes || Operation version || || [#ClientAgent2.1 CLIENTAGENT] || text || Optional || Descriptive text for client || || [#Session1.0 SESSION] || session identifier || Yes || !MapGuide session identifier containing map to display || || [#MapName1.0 MAPNAME] || text || Yes || Name of the map to display.[[BR]]This corresponds to the !GetName() value for the resource identifier. || || [#Format1.0 FORMAT] || JPG/PNG/PNG8 || Yes || Image format for rendered image || || [#Selection1.0 SELECTION] || XML selection text || Optional || XML representing selected features generated from !MgSelection.!ToXml() || || [#SelectionColor2.0 SELECTIONCOLOR] || RGBA hex color || Yes || Selection color encoded in hexadecimal RGBA format 0xRRGGBBAA. || || [#Behavior2.0 BEHAVIOR] || bitmask || Yes || Bitmask representing rendering behavior. See below for more details.|| || [#SetViewCenterX2.1 SETVIEWCENTERX] || double || Optional || Set X coordinate for center of map. || || [#SetViewCenterY2.1 SETVIEWCENTERY] || double || Optional || Set Y coordinate for center of map. || || [#SetViewScale2.1 SETVIEWSCALE] || double || Optional || Set scale for map. || || [#SetDisplayDpi2.1 SETDISPLAYDPI] || integer || Optional || Set DPI for map. || || [#SetDisplayWidth2.1 SETDISPLAYWIDTH] || integer || Optional || Set width of image in pixels. || || [#SetDisplayHeight2.1 SETDISPLAYHEIGHT] || integer || Optional || Set height of image in pixels. || || [#ShowLayers2.1 SHOWLAYERS] || text || Optional || List of layers to display. || || [#HideLayers2.1 HIDELAYERS] || text || Optional || List of layers to hide. || || [#ShowGroups2.1 SHOWGROUPS] || text || Optional || List of groups to display. || || [#HideGroups2.1 HIDEGROUPS] || text || Optional || List of groups to hide. || ==== CLIENTAGENT Parameter ==== #ClientAgent2.1 Descriptive text describing the client of the HTTP operation. Currently used values include "Ajax Viewer", "Fusion Viewer" "!MapGuide Developer" and "!MapGuide Maestro". ==== SETVIEWCENTERX Parameter ==== #SetViewCenterX2.1 ==== SETVIEWCENTERY Parameter ==== #SetViewCenterY2.1 ==== SETVIEWSCALE Parameter ==== #SetViewScale2.1 ==== SETDISPLAYDPI Parameter ==== #SetDisplayDpi2.1 ==== SETDISPLAYWIDTH Parameter ==== #SetDisplayWidth2.1 ==== SETDISPLAYHEIGHT Parameter ==== #SetDisplayHeight2.1 ==== SHOWLAYERS Parameter ==== #ShowLayers2.1 ==== HIDELAYERS Parameter ==== #HideLayers2.1 ==== SHOWGROUPS Parameter ==== #ShowGroups2.1 ==== HIDEGROUPS Parameter ==== #HideGroups2.1 === Usage === === Technical Notes === == !GetMapImage == === Overview === === Parameters === === Usage === === Technical Notes === == !GetMapLegendImage == === Overview === === Parameters === === Usage === === Technical Notes === == !GetVisibleMapExtent == === Overview === === Parameters === === Usage === === Technical Notes === == !QueryMapFeatures == === Overview === === Parameters === === Usage === === Technical Notes === = !MapGuide 2.0 APIs = == !GetDynamicMapOverlayImage == === Overview === !GetDynamicMapOverlayImage returns a rendered raster image containing all visbile layers at the current center and scale for the map. This API is used in conjuction with the !GetVisibleMapExtent HTTP API to provide dynamic map updates for end user interactions. === Parameters === || '''Name''' || '''Value''' || '''Required''' || '''Description''' || || [#Operation1.0 OPERATION] || GETDYNAMICMAPOVERLAYIMAGE || Yes || Operation to execute || || [#Version1.0 VERSION] || 2.0.0 || Yes || Operation version || || [#Session1.0 SESSION] || session identifier || Yes || !MapGuide session identifier containing map to display || || [#MapName1.0 MAPNAME] || text || Yes || Name of the map to display.[[BR]]This corresponds to the !GetName() value for the resource identifier. || || [#Format1.0 FORMAT] || JPG/PNG/PNG8 || Yes || Image format for rendered image || || [#Behavior2.0 BEHAVIOR] || bitmask || Yes || Bitmask representing rendering behavior. See below for more details.|| || [#Selection1.0 SELECTION] || XML selection text || Optional || XML representing selected features generated from !MgSelection.!ToXml() || || [#SelectionColor2.0 SELECTIONCOLOR] || RGBA hex color || Yes || Selection color encoded in hexadecimal RGBA format 0xRRGGBBAA. || ==== BEHAVIOR Parameter ==== #Behavior2.0 The behavior parameter specifies how the rendering is performed. The value is encoded as a bitmask to facilitate future enhancements to the API. One or more bits may be combined to determine overall rendering behavior. || '''Value''' || '''Description''' || || 1 (!RenderSelection) || Renders the selected feature(s) || || 2 (!RenderLayers)|| Renders the features on the map || || 4 (!KeepSelection) || Renders the selected feature(s) even if they are outside the current scale || Examples: * BEHAVIOR=3 (!RenderSelection|!RenderLayers) will render selection and layers within the current scale * BEHAVIOR=5 (!RenderSelection|!KeepSelection) will render only the selection regardless of scale ==== SELECTIONCOLOR Parameter ==== #SelectionColor2.0 Color for selected objects expressed in hexadecimal RGBA format 0xRRGGBBAA. === Usage === === Technical Notes === = !MapGuide 1.2 APIs = == !GetDynamicMapOverlayImage == === Overview === !GetDynamicMapOverlayImage returns a rendered raster image containing all visbile layers at the current center and scale for the map. This API is used in conjuction with the !GetVisibleMapExtent HTTP API to provide dynamic map updates for end user interactions. === Parameters === || '''Name''' || '''Value''' || '''Required''' || '''Description''' || || [#Operation1.0 OPERATION] || GETDYNAMICMAPOVERLAYIMAGE || Yes || Operation to execute || || [#Version1.0 VERSION] || 1.0.0 || Yes || Operation version || || [#Session1.0 SESSION] || session identifier || Yes || !MapGuide session identifier containing map to display || || [#MapName1.0 MAPNAME] || text || Yes || Name of the map to display.[[BR]]This corresponds to the !GetName() value for the resource identifier. || || [#Format1.0 FORMAT] || JPG/PNG || Yes || Image format for rendered image || || [#Selection1.0 SELECTION] || XML selection text || Optional || XML representing selected features generated from !MgSelection.!ToXml() || || [#KeepSelection1.0 KEEPSELECTION] || 0/1 || Optional || If true, render selected feature(s) even if they are outside the current scale. || ==== OPERATION Parameter ==== #Operation1.0 Name of HTTP operation to execute. This parameter is case sensitive. Operation names should be all uppercase. ==== VERSION Parameter ==== #Version1.0 Version of operation to execute. This version number corresponds to the version of !MapGuide where the operation was changed or introduced. ==== SESSION Parameter ==== #Session1.0 Session identifier for the map. The session identifier is typically created using MgSite::!CreateSession() or the CREATESESSION HTTP operation. ==== MAPNAME Parameter ==== #MapName1.0 The map name is the resource name of the map. For example "!WorldElevation" is the resource name for "!Library://Maps/World/WorldElevation.MapDefinition". ==== FORMAT Parameter ==== #Format1.0 Image format for the rendered image. Legal values are: * "JPG" for 24 bit JPEG * "PNG" for 32 bit PNG * "PNG8" for 8 bit PNG '''Note: This was added in !MapGuide 2.0.''' ==== SELECTION Parameter ==== #Selection1.0 ==== KEEPSELECTION Parameter ==== #KeepSelection1.0 Determines whether the selection is visible outside of the scale range for the selected feature(s). If "1", the selection will be visible even when the feature scale range is outside of the current map scale. === Usage === {{{ http://localhost/mapguide/mapagent.fcgi?OPERATION=GETDYNAMICMAPOVERLAYIMAGE &VERSION=1.0.0 &SESSION=Session:d5d05422-5f75-102c-8000-02004c4f4f50_en_7F0000010AFC0AFB0AFA &MAPNAME=WorldElevation &FORMAT=PNG }}} Renders the !WorldElevation map from session Session:d5d05422-5f75-102c-8000-02004c4f4f50_en_7F0000010AFC0AFB0AFA as a 32 bit PNG image. === Technical Notes ===