Changes between Version 17 and Version 18 of HttpApi/RenderingService


Ignore:
Timestamp:
Apr 27, 2010, 3:59:30 PM (14 years ago)
Author:
trevorwekel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HttpApi/RenderingService

    v17 v18  
    4343==== CLIENTAGENT Parameter ==== #ClientAgent2.1
    4444Descriptive 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".
    4646==== SETVIEWCENTERX Parameter ==== #SetViewCenterX2.1
    4747==== SETVIEWCENTERY Parameter ==== #SetViewCenterY2.1
     
    124124
    125125==== OPERATION Parameter ==== #Operation1.0
     126Name of HTTP operation to execute.  This parameter is case sensitive.  Operation names should be all uppercase.
    126127==== VERSION Parameter ==== #Version1.0
     128Version of operation to execute.  This version number corresponds to the version of !MapGuide where the operation was changed or introduced.
    127129==== SESSION Parameter ==== #Session1.0
     130Session identifier for the map.  The session identifier is typically created using MgSite::!CreateSession() or the CREATESESSION HTTP operation.
    128131==== MAPNAME Parameter ==== #MapName1.0
     132The map name is the resource name of the map.  For example "!WorldElevation" is the resource name for "!Library://Maps/World/WorldElevation.MapDefinition".
    129133==== FORMAT Parameter ==== #Format1.0
    130 Image format for the rendered image.  PNG8 support was added in !MapGuide 2.0.
     134Image 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.'''
    131138==== SELECTION Parameter ==== #Selection1.0
    132139==== KEEPSELECTION Parameter ==== #KeepSelection1.0
    133 
     140Determines whether the selection is visible outside of the scale range for the selected feature(s).  If "1", the selection will be visible even
     141when the feature scale range is outside of the current map scale.
    134142
    135143=== Usage ===
     144{{{
     145http://localhost/mapguide/mapagent.fcgi?OPERATION=GETDYNAMICMAPOVERLAYIMAGE&VERSION=1.0.0&SESSION=Session:d5d05422-5f75-102c-8000-02004c4f4f50_en_7F0000010AFC0AFB0AFA&MAPNAME=WorldElevation&FORMAT=PNG
     146}}}
     147Renders the !WorldElevation map from session Session:d5d05422-5f75-102c-8000-02004c4f4f50_en_7F0000010AFC0AFB0AFA as a 32 bit PNG image.
     148
    136149=== Technical Notes ===