Description
Class hierarchy
esri.layers.ImageParameters
Constructor
Properties
Constants
| LAYER_OPTION_EXCLUDE |
Shows all layers visible by default except the specified layer ID's. |
| LAYER_OPTION_HIDE |
Shows all layers except the specified layer ID's. |
| LAYER_OPTION_INCLUDE |
Shows specified layer ID's in addition to layers visible by default. |
| LAYER_OPTION_SHOW |
Shows only the specified layer ID's. |
Constructor Detail
esri.layers.ImageParameters()
Creates a new ImageParameters object. The constructor takes no parameters.
Properties Detail
Extent of map to be exported.
Map image format.
Known values: png | png8 | png24 | jpg | pdf | bmp | gif | svg
Default value: png8
Requested image height in pixels.
<String[]> layerDefinitions
Array of layer definition expressions that allows you to filter the features of individual layers in the exported map image.
A list of layer ID's, that represent which layers to include in the exported map.Use in combination with
layerOption
to specify how layer visiblity is handled.
Code snippets:
imageParameters.layerIds = [3,4,5];
imageParameters.layerOption = esri.layers.ImageParameters.LAYER_OPTION_SHOW;
The option for displaying or hiding the layer. See the Constants table for valid values.
Whether or not background of dynamic image is transparent.
Known values: true | false
Default value: true
Requested image width in pixels.