| Package | com.esri.ags.layers |
| Class | public class GPResultImageLayer |
| Inheritance | GPResultImageLayer DynamicMapServiceLayer Layer mx.core.UIComponent |
See also
| Property | Defined by | ||
|---|---|---|---|
| dpi : Number
The output dpi of the dynamic map service layer.
| GPResultImageLayer | ||
| imageFormat : String
The output image type.
| GPResultImageLayer | ||
| imageTransparency : Boolean
Whether or not the background of dynamic image is transparent.
| GPResultImageLayer | ||
![]() | initialExtent : Extent
The initial extent of the layer.
| Layer | |
![]() | isInScaleRange : Boolean
Returns true if the current scale of the map is between the maximum and minimum scale of the layer [added in version 1.3].
| Layer | |
| jobId : String
The jobId returned from JobInfo.
| GPResultImageLayer | ||
![]() | loaded : Boolean
When the layer is loaded, the value becomes "true" and layer properties can be accessed.
| Layer | |
![]() | map : Map
A reference to the Map this layer is in.
| Layer | |
![]() | maxScale : Number = 0
The maximum scale of the layer [added in version 1.3].
| Layer | |
![]() | minScale : Number = 0
The minimum scale of the layer [added in version 1.3].
| Layer | |
| parameterName : String
The name of the result parameter as defined in ArcGIS Services Directory.
| GPResultImageLayer | ||
| proxyURL : String
The URL to proxy the request through.
| GPResultImageLayer | ||
![]() | spatialReference : SpatialReference
The spatial reference of the layer.
| Layer | |
| token : String
Token for accessing a secure ArcGIS.
| GPResultImageLayer | ||
![]() | units : String
The units of the layer.
| Layer | |
| url : String
URL endpoint of a service.
| GPResultImageLayer | ||
| Method | Defined by | ||
|---|---|---|---|
|
GPResultImageLayer(url:String = null)
Creates a new GPResultImageLayer object.
| GPResultImageLayer | ||
![]() |
refresh():void
Causes the layer to redraw or reload its content.
| Layer | |
| dpi | property |
dpi:Number [read-write]The output dpi of the dynamic map service layer.
The default value is 96.
This property can be used as the source for data binding.
Implementation public function get dpi():Number
public function set dpi(value:Number):void
| imageFormat | property |
imageFormat:String [read-write]The output image type. Valid types are: png8 | png24 | png32 | jpg | gif.
The default value is png8.
This property can be used as the source for data binding.
Implementation public function get imageFormat():String
public function set imageFormat(value:String):void
| imageTransparency | property |
imageTransparency:Boolean [read-write]Whether or not the background of dynamic image is transparent.
The default value is true.
This property can be used as the source for data binding.
Implementation public function get imageTransparency():Boolean
public function set imageTransparency(value:Boolean):void
| jobId | property |
jobId:String [read-write]The jobId returned from JobInfo.
This property can be used as the source for data binding.
Implementation public function get jobId():String
public function set jobId(value:String):void
| parameterName | property |
parameterName:String [read-write]The name of the result parameter as defined in ArcGIS Services Directory.
This property can be used as the source for data binding.
Implementation public function get parameterName():String
public function set parameterName(value:String):void
| proxyURL | property |
proxyURL:String [read-write]The URL to proxy the request through.
This property can be used as the source for data binding.
Implementation public function get proxyURL():String
public function set proxyURL(value:String):void
| token | property |
public var token:StringToken for accessing a secure ArcGIS.
| url | property |
url:String [read-write]URL endpoint of a service. An example URL for a Geoprocessor task is http://sampleserver1.arcgisonline.com/ArcGIS/rest/services/Elevation/ESRI_Elevation_World/GPServer/Viewshed. However, in most cases you will not set this directly, but instead use Geoprocessor#getResultImageLayer.
This property can be used as the source for data binding.
Implementation public function get url():String
public function set url(value:String):void
See also
| GPResultImageLayer | () | constructor |
public function GPResultImageLayer(url:String = null)Creates a new GPResultImageLayer object.
Parametersurl:String (default = null) — ArcGIS Server REST API endpoint to the resource that receives the geoprocessing request.
|