- URL:https://<imageservice-url>/kml/image.kmz
- Required Capability:Image
- Version Introduced:10.0
Description
The KML Image resource represents a ground overlay document wrapped in a KMZ file. When using an image service, KML regions are not supported.
For more information about KML as an output option, see KML support.
Request parameters
Parameter | Details |
---|---|
size | The size (width and height) of the exported image in pixels. If the size is not specified, an image with a default size of 400x400 will be exported. Syntax: <width>, <height> Example: size=600,550 |
format | The format of the exported image. The default format is png. Values: png | png8 | png24 | jpg | bmp | gif |
pixelType | The pixel type, also known as data type, pertains to the type of values stored in the raster, such as signed integer, unsigned integer, or floating point. Integers are whole numbers; floating points have decimals. Values: C128 | C64 | F32 | F64 | S16 | S32 | S8 | U1 | U16 | U2 | U32 | U4 | U8 | UNKNOWN |
noData | The pixel value representing no information. Example: noData=0 |
interpolation | The resampling process of extrapolating the pixel values while transforming the raster dataset when it undergoes warping or when it changes coordinate space. Values: RSP_BilinearInterpolation | RSP_CubicConvolution | RSP_Majority | RSP_NearestNeighbor |
compressionQuality | Controls how much loss the image will be subjected to by the compression algorithm. Valid value ranges of compression quality are from 0 to 100. Example: compressionQuality=75 |
bandIds | If there are multiple bands, you can specify a single band to export, or you can change the band combination (red, green, blue) by specifying the band number. Example: bandIds=2,1,3 |
mosaicProperties | Controls what mosaic operation will be used to create the displayed raster from an image service. mosaicProperties is an XML-formatted string. Examples: <MosaicMethod>Center</MosaicMethod> <MosaicMethod>ByAttribute</MosaicMethod> <TileOrderField>Month</TileOrderField> <TileOrderBase>6</TileOrderBase> |
viewpointProperties | The viewpoint properties determine the desired viewing angle of a theoretical observer and subsequently the ordering of rasters in a given data frame extent. viewpointProperties is an XML-formatted string. Example: <ViewPointDefShiftX>0</ViewPointDefShiftX> <ViewPointDefShiftY>0</ViewPointDefShiftY> <ViewPointX>4489898.428</ViewPointX> <ViewPointY>5478905.02941413</ViewPointY> |
Example usage
Example: Request a KML ground overlay document for an image service.
https://myserver/ArcGIS/rest/services/myImageService/ImageServer/kml/image.kmz
KML response example
The following is a typical response KML document wrapped in an example KMZ response:
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="https://earth.google.com/kml/2.2">
<NetworkLink>
<open>1</open>
<name>Images/World</name>
<LookAt>
<longitude>0</longitude>
<latitude>0</latitude>
<range>23400000</range>
</LookAt>
<Region>
<LatLonAltBox>
<north>90</north>
<south>-90</south>
<east>180</east>
<west>-180</west>
</LatLonAltBox>
<Lod>
<minLodPixels>128</minLodPixels>
<maxLodPixels>-1</maxLodPixels>
</Lod>
</Region>
<Link>
<viewRefreshMode>onStop</viewRefreshMode>
<viewRefreshTime>2</viewRefreshTime>
<href>https://myserver:8399/arcgis/rest/services/Images/World/ImageServer/exportImage</href>
<viewFormat>
<![CDATA[
f=kmz&bboxSR=4326&imageSR=4326&bbox=[bboxWest],[bboxSouth],[bboxEast],[bboxNorth]&size=[horizPixels],[vertPixels]
]]>
</viewFormat>
</Link>
</NetworkLink>
</kml>