wiki:HttpApi/RenderingService

Version 11 (modified by trevorwekel, 14 years ago) ( diff )

--

Rendering Service HTTP APIs


Revision History

RevisionDateAuthorComment
0.1April 16, 2010Trevor WekelInitial documentation pass

Table of Contents

  1. Overview
  2. MapGuide 2.0 APIs
    1. GetDynamicMapOverlayImage
      1. Overview
      2. Parameters
        1. BEHAVIOR Parameter
      3. Usage
      4. Technical Notes
    2. GetMapImage
      1. Overview
      2. Parameters
      3. Usage
      4. Technical Notes
    3. GetMapLegendImage
      1. Overview
      2. Parameters
      3. Usage
      4. Technical Notes
    4. GetVisibleMapExtent
      1. Overview
      2. Parameters
      3. Usage
      4. Technical Notes
    5. QueryMapFeatures
      1. Overview
      2. Parameters
      3. Usage
      4. Technical Notes
  3. MapGuide 1.0 APIs
    1. GetDynamicMapOverlayImage
      1. Overview
      2. Parameters
        1. CLIENTAGENT Parameter
        2. SESSION Parameter
        3. MAPNAME Parameter
        4. FORMAT Parameter
        5. SELECTION Parameter
        6. KEEPSELECTION Parameter
        7. SELECTIONCOLOR Parameter
        8. SETVIEWCENTERX Parameter
        9. SETVIEWCENTERY Parameter
        10. SETVIEWSCALE Parameter
        11. SETDISPLAYDPI Parameter
        12. SETDISPLAYWIDTH Parameter
        13. SETDISPLAYHEIGHT Parameter
        14. SHOWLAYERS Parameter
        15. HIDELAYERS Parameter
        16. SHOWGROUPS Parameter
        17. HIDEGROUPS Parameter
      3. Usage
      4. Technical Notes

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.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
OPERATION GETDYNAMICMAPOVERLAYIMAGE Yes Operation to execute
VERSION 2.0.0/2.1.0 Yes Operation version
CLIENTAGENT text Optional Descriptive text for client
SESSION session identifier Yes MapGuide session identifier containing map to display
MAPNAME text Yes Name of the map to display.
This corresponds to the GetName() value for the resource identifier.
FORMAT JPG/PNG/PNG8 Yes Image format for rendered image
SELECTION XML selection text Optional XML representing selected features generated from MgSelection.ToXml()
BEHAVIOR bitmask Yes Bitmask representing rendering behavior. See below for more details.
SELECTIONCOLOR RGBA hex color Yes Selection color encoded in hexadecimal RGBA format 0xRRGGBBAA.

BEHAVIOR Parameter

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

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 1.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
OPERATION GETDYNAMICMAPOVERLAYIMAGE Yes Operation to execute
VERSION 1.0.0 Yes Operation version
CLIENTAGENT text Optional Descriptive text for client
SESSION session identifier Yes MapGuide session identifier containing map to display
MAPNAME text Yes Name of the map to display.
This corresponds to the GetName() value for the resource identifier.
FORMAT JPG/PNG/PNG8 Yes Image format for rendered image
SELECTION XML selection text Optional XML representing selected features generated from MgSelection.ToXml()
KEEPSELECTION 0/1 Optional If true, render selected feature(s) even if they are outside the current scale.
SELECTIONCOLOR RGBA hex color Yes Selection color encoded in hexadecimal RGBA format 0xRRGGBBAA.
SETVIEWCENTERX double No Set X coordinate for center of map.
SETVIEWCENTERY double No Set Y coordinate for center of map.
SETVIEWSCALE double No Set scale for map.
SETDISPLAYDPI integer No Set DPI for map.
SETDISPLAYWIDTH integer No Set width of image in pixels.
SETDISPLAYHEIGHT integer No Set height of image in pixels.
SHOWLAYERS text No List of layers to display.
HIDELAYERS text No List of layers to hide.
SHOWGROUPS text No List of groups to display.
HIDEGROUPS text No List of groups to hide.

CLIENTAGENT Parameter

SESSION Parameter

MAPNAME Parameter

FORMAT Parameter

SELECTION Parameter

KEEPSELECTION Parameter

SELECTIONCOLOR Parameter

SETVIEWCENTERX Parameter

SETVIEWCENTERY Parameter

SETVIEWSCALE Parameter

SETDISPLAYDPI Parameter

SETDISPLAYWIDTH Parameter

SETDISPLAYHEIGHT Parameter

SHOWLAYERS Parameter

HIDELAYERS Parameter

SHOWGROUPS Parameter

HIDEGROUPS Parameter

Usage

Technical Notes

Note: See TracWiki for help on using the wiki.