Map To KML (Conversion)

Summary

Converts a map to a KML file containing geometries and symbology. The output file is compressed using ZIP compression, has a .kmz extension, and can be read by any KML client including ArcGIS Earth and Google Earth.

Learn more about KML support in ArcGIS

Usage

  • You can control the appearance of KML in the following two ways:

    • By default, the pop-up display is composed of all visible fields from the layer. Pop-up displays can also be set using the layer's customized pop-ups. If the layer pop-ups have not been customized, the values in the feature layer's PopupInfo field are shown in the pop-up when a KML feature is clicked. These values can be numeric or text attributes as well as HTML code stored in a text field.
    • When the layer properties are not set and the feature class contains certain attributes (fields), the field properties are used in creating the KML layers that were originally created using the KML To Layer tool including attributes that define how KML is created. See KML conversion for more information about creating KML from attributes.

  • You can reduce the size of the output KMZ document if the map has scale-dependent layer display properties and you choose an appropriate map output scale.

  • All .kml and .kmz files are created in the WGS84 coordinate system. Ensure that the layers will properly project if they aren't in WGS84. You can use the Project tool to reproject the data prior to KML conversion if the projection requires a transformation.

  • To output a single raster image draped over topography, use the Return single composite image parameter.

  • To output every layer as a separate raster image, use the Convert Vector to Raster parameter.

  • The Map Output Scale and Size of returned image (pixels) parameters are used together to create tiled output. For example, for an image with a size of 7000 by 5000 pixels, and a Size of returned image (pixels) parameter value of 1000 pixels, the output image will be composed of 7 x 5, or 35, subimages. If the Map Output Scale parameter value is set to 1, each subimage will be 1000 by 1000 pixels. If the Map Output Scale parameter value is set to 10, each subimage will be 100 by 100 pixels.

  • To include a legend in the output KML, specify a value for the Legend Layout Source parameter. You must have a legend element in a layout in the map.

    The output KML will include the legend as a screen overlay. Only legend elements will become screen overlays in KML. Each legend will become a subfolder under the main KML folder when viewing the KML data. Configure the position of the screen overlay by turning on the position in the KML folder tree.

Parameters

LabelExplanationData Type
Input Map

The map, scene or basemap to convert to KML.

Map
Output File

The output KML file. This file is compressed and has a .kmz extension. The file can be read by any KML client including ArcGIS Earthand Google Earth.

File
Map Output Scale
(Optional)

The scale at which each layer in the map will be exported.

This parameter is important with any scale dependency, such as layer visibility or scale-dependent rendering. If the layer is not visible at the output scale, it is not included in the output KML. Any value, such as 1, can be used if there are no scale dependencies.

For raster layers, a value of 0 can be used to create one untiled output image. If a value greater than or equal to 1 is used, it determines the output resolution of the raster. This parameter has no effect on layers that are not raster layers.

Only numeric characters are accepted; for example, enter 20000 as the scale, not 1:20000. In languages that use commas as the decimal point, 20,000 is also acceptable.

If you're exporting a layer that is to be displayed as 3D vectors and the Return single composite image parameter is checked, you can set this parameter to any value as long as the features do not have any scale-dependent rendering.

Double
Return single composite image
(Optional)

Specifies whether the output KML will contain a single composite image or separate layers.

  • Checked—The output KML will contain a single image that composites all the features in the map into a single raster image. The raster is draped over the terrain as a KML GroundOverlay. This option reduces the size of the output KML. Individual features and layers in the KML are not selectable.
  • Unchecked—The output KML will contain separate, individual layers. This is the default. Whether the layers are returned as rasters or as a combination of vectors and rasters is determined by the Convert Vector to Raster parameter.
Boolean
Convert Vector to Raster
(Optional)

Specifies whether each vector layer in the map will be converted to a separate raster image or preserved as vector layers.

This parameter is inactive if the Return single composite image parameter is checked.

  • Checked—Vector layers will be converted to a separate raster image in the KML output. Normal raster layers are also added to the KML output. Each output KML raster layer is selectable, and its transparency can be adjusted in certain KML clients.
  • Unchecked—Vector layers will be preserved as KML vectors. This is the default.
Boolean
Extent to Export
(Optional)

The geographic extent of the area to be exported. Specify the extent rectangle bounds as a space-delimited string of WGS84 geographic coordinates in the form left lower right upper (x-min, y-min, x-max, y-max).

  • Default—The extent will be based on the maximum extent of all participating inputs. This is the default.
  • Current Display Extent—The extent is equal to the data frame or visible display. The option is not available when there is no active map.
  • As Specified Below—The extent will be based on the minimum and maximum extent values specified.
  • Browse—The extent will be based on an existing dataset.
Extent
Size of returned image (pixels)
(Optional)

The size of the tiles for raster layers if the Map Output Scale parameter value is set to a value greater than or equal to 1. This parameter only has an effect on raster layers.

Long
DPI of output image
(Optional)

The device resolution for any rasters in the output KML document. Typical screen resolution is 96 dpi. If the data in the map supports a high resolution and the KML requires it, consider increasing the value. Use this parameter with the Size of returned image (pixels) parameter to control output image resolution. The default value is 96.

Long
Clamped features to ground
(Optional)

Specifies whether features will be clamped to the ground.

  • Checked—The z-values of the input features will be ignored and the KML output will be created with the features clamped to the ground. The features will be draped over the terrain. Use this option when features that do not have z-values. This is the default.
  • Unchecked—The z-values of the input features will be used when creating the KML output. The features will be drawn in KML clients relative to sea level.
Boolean
Legend Layout Source
(Optional)

The name of a layout that contains legend elements that will be included in the KML output as screen overlays.

String

arcpy.conversion.MapToKML(in_map, out_kmz_file, {map_output_scale}, {is_composite}, {is_vector_to_raster}, {extent_to_export}, {image_size}, {dpi_of_client}, {ignore_zvalue}, {layout})
NameExplanationData Type
in_map

The map, scene or basemap to convert to KML.

Map
out_kmz_file

The output KML file. This file is compressed and has a .kmz extension. The file can be read by any KML client including ArcGIS Earthand Google Earth.

File
map_output_scale
(Optional)

The scale at which each layer in the map will be exported.

This parameter is important with any scale dependency, such as layer visibility or scale-dependent rendering. If the layer is not visible at the output scale, it is not included in the output KML. Any value, such as 1, can be used if there are no scale dependencies.

For raster layers, a value of 0 can be used to create one untiled output image. If a value greater than or equal to 1 is used, it determines the output resolution of the raster. This parameter has no effect on layers that are not raster layers.

Only numeric characters are accepted; for example, enter 20000 as the scale, not 1:20000. In languages that use commas as the decimal point, 20,000 is also acceptable.

If you're exporting a layer that is to be displayed as 3D vectors and the is_composite parameter is set to NO_COMPOSITE, you can set this parameter to any value as long as the features do not have any scale-dependent rendering.

Double
is_composite
(Optional)

Specifies whether the output KML will contain a single composite image or separate layers.

  • COMPOSITEThe output KML will contain a single image that composites all the features in the map into a single raster image. The raster is draped over the terrain as a KML GroundOverlay. This option reduces the size of the output KML. Individual features and layers in the KML are not selectable.
  • NO_COMPOSITEThe KML contains separate, individual layers. This is the default. Whether the layers are returned as rasters or as a combination of vectors and rasters is determined by the is_vector_to_raster parameter.
Boolean
is_vector_to_raster
(Optional)

Specifies whether each vector layer in the map will be converted to a separate raster image or preserved as vector layers.

This parameter is disabled if the is_composite parameter is set to COMPOSITE.

  • VECTOR_TO_IMAGEVector layers will be converted to a separate raster image in the KML output. Normal raster layers are also added to the KML output. Each output KML raster layer is selectable, and its transparency can be adjusted in certain KML clients.
  • VECTOR_TO_VECTORVector layers will be preserved as KML vectors. This is the default.
Boolean
extent_to_export
(Optional)

The geographic extent of the area to be exported. Specify the extent rectangle bounds as a space-delimited string of WGS84 geographic coordinates in the form left lower right upper (x-min, y-min, x-max, y-max).

  • MAXOF—The maximum extent of all inputs will be used.
  • MINOF—The minimum area common to all inputs will be used.
  • DISPLAY—The extent is equal to the visible display.
  • Layer name—The extent of the specified layer will be used.
  • Extent object—The extent of the specified object will be used.
  • Space delimited string of coordinates—The extent of the specified string will be used. Coordinates are expressed in the order of x-min, y-min, x-max, y-max.
Extent
image_size
(Optional)

The size of the tiles for raster layers if the map_output_scale parameter value is set to a value greater than or equal to 1. This parameter only has an effect on raster layers.

Long
dpi_of_client
(Optional)

The device resolution for any rasters in the output KML document. Typical screen resolution is 96 dpi. If the data in the map supports a high resolution and the KML requires it, consider increasing the value. Use this parameter with the image_size parameter to control output image resolution. The default value is 96.

Long
ignore_zvalue
(Optional)

Specifies whether features will be clamped to the ground.

  • CLAMPED_TO_GROUND The z-values of the input features will be ignored and the KML output will be created with the features clamped to the ground. The features will be draped over the terrain. Use this option when features that do not have z-values. This is the default.
  • ABSOLUTEThe z-values of the features will be used when creating the KML output. The features will be drawn in KML clients relative to sea level.
Boolean
layout
(Optional)

The name of a layout that contains legend elements that will be included in the KML output as screen overlays.

String

Code sample

MapToKML example 1 (Python window)

The following Python window script demonstrates how to use the MapToKML function in immediate mode.

import arcpy
arcpy.env.workspace = "C:/data"
arcpy.conversion.MapToKML("cities.mapx", "cities.kmz")
MapToKML example 2 (stand-alone script)

The following Python script demonstrates how to use the MapToKML function in a stand-alone script.

# Import system modules
import arcpy

# Set environment settings
arcpy.env.workspace = "C:/data"

# Use ListFiles to identify all map files in workspace
files = arcpy.ListFiles('*.mapx') 
if len(files) > 0:
    for map_file in files:
        # Set Local Variables
        composite = 'NO_COMPOSITE'
        vector = 'VECTOR_TO_VECTOR'
        pixels = 2048
        dpi = 96
        clamped = 'ABSOLUTE'
        for scale in range(10000, 20000, 30000):
            # Strips the '.mapx' part of the name and appends '.kmz'
            outKML = map_file[:-5]+'.kmz'

            #Run MapToKML	
            arcpy.conversion.MapToKML(map_file, outKML, scale, composite, 
                                      vector, '', pixels, dpi, clamped)
else:
    arcpy.AddMessage('There are no map files (*.mapx) in {}.'.format(arcpy.env.workspace))

Environments

This tool does not use any geoprocessing environments.

Licensing information

  • Basic: Yes
  • Standard: Yes
  • Advanced: Yes

Related topics