convertMapCoordToPixelCoord(viewExtent:Envelope, mapImageSize:MapImageSize,
mapCoord:Point):PixelCoord
convertPixelCoordToMapCoord(viewExtent:Envelope,
mapImageSize:MapImageSize, mapClickPoint:PixelCoord):Point
getBestMap(mapImageOptions:MapImageOptions,
token:string):MapImageInfo
getBestMapEnvelope(mapImageOptions:MapImageOptions):Envelope
getLayerInfo(dataSource:string):Layer[]
getLayerInfoForExtent(dataSource:string, mapImageSize:MapImageSize,
mapExtent:Envelope):Layer[]
getMap(mapExtent:Envelope,
mapImageOptions:MapImageOptions,
token:string):MapImageInfo
getMarkerNames(iconDataSource:string):string[]
getMyMarkerNames(iconDataSource:string, token:string):string[]
getThematicFields(thematicDataSource:string):string[]
getThematicGeographiesForExtent(thematicDataSource:string, mapImageSize:MapImageSize, mapExtent:Envelope):string[]
getThematicMap(mapExtent:Envelope,
mapImageOptions:MapImageOptions,
thematicField:string, thematicOptions:ThematicOptions,
token:string):MapImageInfo
getThematicMap(mapExtent:Envelope,
mapImageOptions:MapImageOptions,
thematicData:KeyValue[], thematicOptions:ThematicOptions, token:string):MapImageInfo
getVersion:string
| Method Name | convertMapCoordToPixelCoord | ||||||
| Description | Converts x,y coordinate to image pixel coordinates. | ||||||
| Endpoint URL | http://arcweb.esri.com/services/v2/MapImage | ||||||
| Input Parameters |
| ||||||
| Valid Arguments |
| ||||||
| Output Parameter |
| ||||||
| Example (Java) |
IMapImage myMapImage = MapImageHelper.bind(); For myEnvelope, see Envelope. | ||||||
|
Example (VB.NET) |
Dim myMapImage As New MapImage() For myEnvelope, see Envelope. | ||||||
|
Example (C#.NET) |
MapImage myMapImage = new MapImage(); For myEnvelope, see Envelope. |
| Method Name | convertPixelCoordToMapCoord | ||||||
| Description | Converts image pixel coordinates to x,y coordinates. | ||||||
| Endpoint URL | http://arcweb.esri.com/services/v2/MapImage | ||||||
| Input Parameters |
| ||||||
| Valid Arguments |
| ||||||
| Output Parameter |
| ||||||
| Example (Java) |
IMapImage myMapImage = MapImageHelper.bind(); For myEnvelope, see Envelope. | ||||||
|
Example (VB.NET) |
Dim myMapImage As New MapImage() For myEnvelope, see Envelope. | ||||||
|
Example (C#.NET) |
MapImage myMapImage = new MapImage(); For myEnvelope, see Envelope. |
| Method Name | getBestMap | ||||
| Description | Returns the minimum map that contains all circles, geometry, and markers. | ||||
| Endpoint URL | http://arcweb.esri.com/services/v2/MapImage | ||||
| Input Parameters |
| ||||
| Valid Arguments |
| ||||
| Output Parameter |
| ||||
| Example (Java) |
IMapImage myMapImage = MapImageHelper.bind(); For myMapImageOptions, see MapImageOptions.
| ||||
|
Example (VB.NET) |
Dim myMapImage As New MapImage() For myMapImageOptions, see MapImageOptions.
| ||||
|
Example (C#.NET) |
MapImage myMapImage = new MapImage(); For myMapImageOptions, see MapImageOptions.
|
| Method Name | getBestMapEnvelope | ||
| Description | Returns the minimum Envelope of all the circles, geometry, and markers. | ||
| Endpoint URL | http://arcweb.esri.com/services/v2/MapImage | ||
| Input Parameters |
| ||
| Valid Arguments |
| ||
| Output Parameter |
| ||
| Example (Java) |
IMapImage myMapImage
= MapImageHelper.bind(); For myMapImageOptions, see MapImageOptions. | ||
|
Example (VB.NET) |
Dim myMapImage As New MapImage() For myMapImageOptions, see MapImageOptions. | ||
|
Example (C#.NET) |
MapImage myMapImage = new MapImage(); For myMapImageOptions, see MapImageOptions. |
| Method Name | getLayerInfo | ||
| Description | Returns a list of layers for a given data source. | ||
| Endpoint URL | http://arcweb.esri.com/services/v2/MapImage | ||
| Input Parameters |
| ||
| Valid Arguments |
| ||
| Output Parameter |
| ||
| Example (Java) |
IMapImage myMapImage = MapImageHelper.bind() ; | ||
|
Example (VB.NET) |
Dim myMapImage As New MapImage() | ||
|
Example (C#.NET) |
myMapImage = new MapImage(); |
| Method Name | getLayerInfoForExtent | ||||||
| Description | Returns a list of available layers for a given extent. | ||||||
| Endpoint URL | http://arcweb.esri.com/services/v2/MapImage | ||||||
| Input Parameters |
| ||||||
| Valid Arguments |
| ||||||
| Output Parameter |
| ||||||
| Example (Java) |
IMapImage myMapImage = MapImageHelper.bind() ; For myMapImageSize, see MapImageSize. | ||||||
|
Example (VB.NET) |
Dim myMapImage As New MapImage() For myMapImageSize, see MapImageSize. | ||||||
|
Example (C#.NET) |
myMapImage = new MapImage(); For myMapImageSize, see MapImageSize. |
| Method Name | getMap | ||||||
| Description | Gets the map for the particular envelope. | ||||||
| Endpoint URL | http://arcweb.esri.com/services/v2/MapImage | ||||||
| Input Parameters |
| ||||||
| Valid Arguments |
| ||||||
| Output Parameter |
| ||||||
| Example (Java) |
IMapImage myMapImage = MapImageHelper.bind(); For myEnvelope, see Envelope.
| ||||||
|
Example (VB.NET) |
Dim myMapImage As New MapImage() For myEnvelope, see Envelope.
| ||||||
|
Example (C#.NET) |
MapImage myMapImage = new MapImage(); For myEnvelope, see Envelope.
|
| Method Name | getMyMarkerNames | ||||
| Description | Returns the markers that you have uploaded. There is no credit charge for using this method. | ||||
| Endpoint URL | http://arcweb.esri.com/services/v2/MapImage | ||||
| Input Parameters |
| ||||
| Valid Arguments |
| ||||
| Output Parameter |
| ||||
| Example (Java) |
IMapImage myMapImage = MapImageHelper.bind(); For token, see getToken. | ||||
|
Example (VB.NET) |
Dim myMapImage As New MapImage() For token, see getToken. | ||||
|
Example (C#.NET) |
MapImage myMapImage = new MapImage(); For token, see getToken. |
| Method Name | getThematicFields | ||
| Description | Returns a list of available fields that you can use to create a thematic map with the basic getThematicMap method. See Thematic fields for descriptions of field names. | ||
| Endpoint URL | http://arcweb.esri.com/services/v2/MapImage | ||
| Input Parameters |
| ||
| Valid Arguments |
| ||
| Output Parameter |
| ||
| Example (Java) |
IMapImage myMapImage =
MapImageHelper.bind() ; | ||
|
Example (VB.NET) |
Dim myMapImage As New MapImage() | ||
|
Example (C#.NET) |
myMapImage = new MapImage(); |
| Method Name | getThematicGeographiesForExtent | ||||||
| Description | Returns a list of available geographies (e.g., ZIP Codes, BlockGroups) for a particular data source and extent. | ||||||
| Endpoint URL | http://arcweb.esri.com/services/v2/MapImage | ||||||
| Input Parameters |
| ||||||
| Valid Arguments |
| ||||||
| Output Parameter |
| ||||||
| Example (Java) |
IMapImage myMapImage = MapImageHelper.bind() ; For myMapImageSize, see MapImageSize. | ||||||
|
Example (VB.NET) |
Dim myMapImage As New MapImage() For myMapImageSize, see MapImageSize. | ||||||
|
Example (C#.NET) |
myMapImage = new MapImage(); For myMapImageSize, see MapImageSize. |
| Method Name | getThematicMap | ||||||||||
| Description |
Returns a thematic map based on an ESRI demographic variable. Use getThematicFields to get back a list of available thematic variable names to use with thematicField. See Thematic variables for descriptions of the names. | ||||||||||
| Endpoint URL | http://arcweb.esri.com/services/v2/MapImage | ||||||||||
| Input Parameters |
| ||||||||||
| Valid Arguments |
| ||||||||||
| Output Parameter |
| ||||||||||
| Example (Java) |
getThematicMap(myEnvelope, myMapImageOptions, myThematicField,
myThematicOptions, token); For myEnvelope, see Envelope.
| ||||||||||
|
Example (VB.NET) |
Dim myMapImage As New MapImage() For myEnvelope, see Envelope.
| ||||||||||
|
Example (C#.NET) |
myMapImage = new MapImage(); For myEnvelope, see Envelope.
|
| Method Name | getThematicMap | ||||||||||
| Description | Returns a thematic map based on values you have defined for the data in the map. | ||||||||||
| Endpoint URL | http://arcweb.esri.com/services/v2/MapImage | ||||||||||
| Input Parameters |
| ||||||||||
| Valid Arguments |
| ||||||||||
| Output Parameter |
| ||||||||||
| Example (Java) |
KeyValue myThematicData[] = new KeyValue[2]; For myThematicData, see KeyValue. | ||||||||||
|
Example (VB.NET) |
Dim myMapImage As New MapImage() For myThematicData, see KeyValue. | ||||||||||
|
Example (C#.NET) |
MapImage myMapImage = new MapImage(); For myThematicData, see KeyValue. |
| Method Name | getVersion | ||
| Description | Returns the version number of Map Image Web Service. | ||
| Endpoint URL | http://arcweb.esri.com/services/v2/MapImage | ||
| Output Parameter |
| ||
| Example (Java) |
Image myMapImage = MapImageHelper.bind(); | ||
|
Example (VB.NET) |
MapImage myMapImage = New MapImage(); | ||
|
Example (C#.NET) |
MapImage myMapImage = new MapImage(); |
Map Image overview
Map Image data sources and credits
SOAP samples
Object model