Fact-checked by Grok 2 weeks ago

Keyhole Markup Language

Keyhole Markup Language (KML) is an XML-based notation for expressing geographic and , enabling the of features such as points, lines, polygons, images, and 3D models on two-dimensional maps and three-dimensional browsers. Originally developed by Keyhole, Inc., as a proprietary format for its Earth Viewer software, KML was introduced to support interactive geospatial data sharing and over the . In 2004, acquired Keyhole, Inc., integrating the technology into its platforms and rebranding Earth Viewer as , which popularized KML for creating and sharing custom geographic content. Google submitted KML to the Open Geospatial Consortium (OGC) for standardization in 2007, leading to its adoption as an official OGC standard in 2008 with version 2.2, which harmonized it with other geospatial standards like (GML). Subsequent versions, including 2.3, have expanded support for advanced features while maintaining . KML's key features include hierarchical data structures for organizing geographic elements, support for styling and theming (e.g., colors, icons, and labels), time-based animations, and network links for dynamic content retrieval. It is widely used in applications beyond , such as and , for tasks including overlaying data on satellite imagery, route planning, and environmental monitoring, promoting interoperability across geospatial tools.

Introduction

Definition and Purpose

Keyhole Markup Language (KML) is an XML-based schema designed for expressing geographic annotations and visualizations in two-dimensional maps and three-dimensional Earth browsers. It originated from the EarthViewer software developed by Keyhole Inc., which was acquired by in 2004, leading to its integration into . KML serves as an maintained by the Open Geospatial Consortium (OGC), facilitating the encoding and transport of geographic data for display in compatible applications. The primary purpose of KML is to store and represent various geographic elements, including locations (points), paths (lines), polygons, images (overlays), and models, enabling users to annotate and visualize spatial information effectively. It supports the creation of placemarks to highlight specific sites, tours to guide users through narrated sequences of views, and network links to dynamically fetch and integrate external KML content from remote sources. These capabilities make KML ideal for applications ranging from personal to scientific , allowing seamless exchange of geospatial information across platforms. Key features of KML include support for styling to customize the appearance of geographic elements, such as colors and icons for placemarks or line widths for paths; timestamps to associate time-based data with features, enabling animations like historical imagery or tracked movements via time sliders; and camera views to define precise observer perspectives, including and altitude for immersive . These elements allow KML files to control not only what geographic data is displayed but also how users interact with and navigate through it in Earth browsers.

Development History

Keyhole, Inc. was founded in 2001 in , by and a team of engineers with backgrounds in and software. The company developed Keyhole Markup Language (KML) as an XML-based format to handle and display geospatial data within its flagship product, EarthViewer 2.0, which allowed users to interact with 3D and terrain models over the . This initial implementation of KML focused on enabling placemarks, paths, and overlays to visualize locations and routes, marking the beginning of a proprietary system for geospatial annotation. In October 2004, Google acquired Keyhole, Inc. for an undisclosed amount, integrating its technology into 's ecosystem to enhance mapping capabilities. The acquisition paved the way for the public release of in June 2005, which adopted KML as its core for and data interchange. With this launch, KML version 2.0 was introduced, supporting expanded features such as nested folders, styles, and network links for dynamic content updates, and it underwent refinements through subsequent releases to improve compatibility and performance. Recognizing the need for broader interoperability, Google submitted KML to the Open Geospatial Consortium (OGC) in early 2007, initiating a standards development process. By April 2008, KML 2.2 was approved as an official OGC standard, transitioning it from a proprietary format to an open international specification while maintaining backward compatibility. In October 2015, KML 2.3 was adopted as an updated OGC standard, adding support for advanced features such as improved 3D modeling and extensions. Following its standardization, KML has seen minor enhancements integrated into updates, with ongoing support for advanced through features like photogrammetry-derived buildings and extrusion up to 7.3 in 2017 and beyond via web-based iterations. These developments have included cloud-based integration to support collaborative mapping and AI-driven visualizations, with updates as of 2024 enabling import and storage of KML datasets in projects via for enhanced analysis.

Syntax and Structure

Core Elements and Schema

Keyhole Markup Language (KML) is structured as an XML 1.0 application, adhering to the outlined in the Open Geospatial Consortium (OGC) KML 2.3 Encoding Standard, with the core schema defined in ogckml23.xsd. This schema enforces a namespace of http://www.opengis.net/kml/2.2 for standard elements (maintained for ), ensuring interoperability in geographic data representation. Google extensions, which build upon the OGC core, are defined in the additional schema kml22gx.xsd under the namespace http://www.google.com/kml/ext/2.2, but the fundamental structure remains rooted in the OGC specification. The of any KML is <kml>, which serves as the for all content and must include the appropriate xmlns attribute to reference the . Within this root, KML documents typically include <Document> elements to group related features or standalone <Placemark> elements for individual geographic annotations. The <Placemark> element is the primary building block for representing spatial features, such as points of interest, paths, or areas; it can contain descriptive like <name> and <description>, along with a element and optional styling. Geometry in KML is specified through elements that extend the abstract <Geometry> type in the schema, including <Point> for single locations, <LineString> for linear paths composed of connected segments, and <Polygon> for enclosed areas defined by an outer boundary and optional inner boundaries (using <LinearRing>). Coordinates within these geometries are provided via the <coordinates> element, which requires tuples in the order longitude, latitude [,altitude], expressed in decimal degrees for longitude (-180 to 180) and latitude (-90 to 90), with altitude in meters relative to the WGS84 datum if specified. Multiple coordinate tuples are separated by spaces, and the schema mandates comma separation within each tuple without intervening spaces; altitude is optional and defaults to clamping to the ground if omitted. Positioning modes are controlled by the <altitudeMode> attribute on geometry elements, supporting values such as clampToGround (default, snaps to terrain), relativeToGround (height above terrain), or absolute (height above sea level). Appearance and rendering are governed by the <Style> element, which can be defined inline within a <Placemark> or shared via <Style> within a <Document> using the <styleUrl> reference. Key sub-elements of <Style> include <IconStyle> for point icons and colors (using ABGR hexadecimal values, e.g., ffff0000 for opaque blue), <LineStyle> for line width and color, and <PolyStyle> for polygon fill and outline properties. The schema requires that styles conform to the <StyleSelector> type, allowing selectors like <StyleMap> for conditional rendering based on normal or highlight states. The following example illustrates a basic KML structure with a <Placemark> containing a <Point> geometry, demonstrating the schema's coordinate and element constraints:
xml
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
  <Placemark>
    <name>Sample Point</name>
    <description>A simple geographic point.</description>
    <Point>
      <altitudeMode>clampToGround</altitudeMode>
      <coordinates>-122.371,37.816,0</coordinates>
    </Point>
  </Placemark>
</kml>
This snippet validates against the ogckml23.xsd schema, with the coordinate specifying a location near San Francisco clamped to the ground surface.

Document Organization

KML documents are structured as XML files with a hierarchical organization that enables the creation of complex geographic visualizations. The root element is <kml>, which encapsulates all content and declares the core namespace (xmlns="http://www.opengis.net/kml/2.2") along with optional extensions such as the Google namespace (xmlns:gx="http://www.google.com/kml/ext/2.2"). Within this root, the <Document> element serves as a primary container for organizing collections of features, styles, and schemas, allowing for shared definitions across the file. <Folder> elements provide further grouping and nesting capabilities, enabling hierarchical arrangements of related features to build logical structures like categorized maps or layered data sets. Additionally, <NetworkLink> elements facilitate dynamic loading by referencing remote KML files via URLs, supporting modular and updatable content without embedding everything in a single document. The feature hierarchy in KML builds upon this foundation, with core features like <Placemark>—which represent points, lines, or polygons—often nested within <Folder> or <Document> elements to create organized, reusable assemblies. This nesting supports complex documents by allowing features to inherit styles and visibility settings from parent containers. For imagery, <GroundOverlay> elements drape raster images onto the terrain or ground plane, defined by bounding boxes, while <PhotoOverlay> elements position photos relative to the viewpoint with additional shape and rotation controls, both integrable into the hierarchy for enhanced visual layers. KML also supports interactive elements through the <Tour> feature (kml:Tour), a core element in KML 2.3 that defines guided animations and narratives. This element contains a <Playlist> that sequences actions such as <gx:FlyTo>, which smoothly transitions the view to specified coordinates over a duration, and <gx:Wait>, which introduces pauses between steps, all nested within the document hierarchy for seamless integration into broader feature sets. Files are saved with the .kml extension for plain-text XML or as .kmz for compressed archives that bundle the KML with supporting assets like images and models, preserving the hierarchical structure during distribution. declarations, particularly the gx: for extensions like , ensure while allowing proprietary enhancements without conflicting with the core OGC .

Geodetic Reference Systems

Keyhole Markup Language (KML) employs the 1984 (WGS 84) as its default coordinate reference system, specifically utilizing a geocentric framework defined by the OGC URN http://www.opengis.net/def/crs/EPSG/0/4978, which corresponds to EPSG:4978 for geospatial positioning. This system specifies longitude and latitude in , with longitude ranging from -180 to 180 degrees (positive eastward from the ) and latitude from -90 to 90 degrees (positive northward from the ). Altitude is measured in meters, interpreted relative to the WGS 84 EGM96 as the , enabling accurate representations of geographic features. Coordinates in KML are encoded as space-separated tuples within the <coordinates> element, following the order longitude, latitude, and optional altitude (e.g., -122.207881 37.371915 156.0). For geometries such as points, linestrings, and polygons, multiple tuples form arrays separated by spaces, with no commas between values within a tuple and a single space between tuples (e.g., -122.207881 37.371915 0 -122.207639 37.792136 0). The <Location> element, used in features like placemarks and models, similarly structures coordinates as separate <longitude>, <latitude>, and optional <altitude> child elements, each as double-precision floating-point values. Interpolation between coordinate tuples in 3D geometries, such as linestrings, occurs along straight-line segments in the WGS 84 geocentric system to maintain geometric fidelity. Altitude interpretation is controlled by the <altitudeMode> element, which supports three values: clampToGround (default, positions features on the terrain surface without elevation), relativeToGround (altitude above the ground surface, suitable for relative heights like building elevations), and absolute (altitude above the sea level geoid, for fixed elevations independent of terrain). This flexibility allows KML to represent both 2D overlays and 3D volumes accurately within the WGS 84 framework. For , KML includes the <extrude> element in geometries like <Polygon> and <LineString>, which, when set to true, extends features vertically from their coordinates to the ground level (using clampToGround semantics), enabling visualizations such as extruded or walls. The <Orientation> element, applied to <Model> features, defines rotations with three attributes: <heading> ( in degrees, 0 north, positive ), <tilt> ( in degrees, 0 , positive forward), and <roll> ( in degrees, 0 level, positive ), allowing precise orientation of imported models relative to the WGS 84 coordinates. KML does not support alternative projections or coordinate reference systems beyond WGS 84; all geographic data must be provided in this native geographic format, with any necessary reprojection handled by the client application during rendering. This design simplifies data exchange but requires consuming software, such as Earth browsers, to perform transformations for display in projected views like plate carrée.

Standardization

OGC Adoption Process

In May 2007, Google submitted Keyhole Markup Language (KML) to the Open Geospatial Consortium (OGC) for evolution through its consensus process, initially proposing it as an OGC to facilitate broader adoption and interoperability in geographic visualization. This submission followed Google's acquisition of Keyhole Inc. and the integration of its Earth Viewer software into , aiming to standardize KML's XML-based format for encoding geographic features like placemarks, paths, and overlays. The standardization process began with approval of KML 2.1 as an OGC during the April 2007 OGC Committee meetings, marking the start of formal review by the OGC membership. A dedicated Standards (SWG) for KML 2.2 was formed to manage development, incorporating from the OGC Committee, public requests for comments, and interoperability experiments involving GIS vendors to ensure compatibility with existing OGC standards. These experiments focused on testing KML's integration with services like (WMS) and (WFS), promoting seamless data exchange in earth browsers and mapping applications. KML 2.2.0 was approved as an official OGC implementation standard on April 14, 2008, after rigorous review and voting by the OGC membership, with full documentation and schema release completing the adoption by late 2008. This elevated KML to the OGC standards suite, enabling its use alongside protocols like WMS and WFS for enhanced geospatial interoperability. Subsequent efforts included a draft of KML 2.3 in 2014, which underwent public comment and was approved as an OGC standard in October 2015, introducing features like 1.1 support for better extensibility, though it saw limited widespread adoption compared to version 2.2.

Versions and Extensions

Keyhole Markup Language (KML) has evolved through several versions since its inception, with early iterations developed by prior to formal standardization by the Open Geospatial Consortium (OGC). Version 2.0 was introduced in 2005 alongside the initial release of , providing foundational support for geographic annotations and visualizations in 3D Earth browsers. Version 2.1 followed in 2006, adding features such as level-of-detail (LOD) controls for efficient rendering of large datasets and enhanced altitude modes for 3D positioning. In 2008, the OGC adopted KML 2.2 as an official implementation standard, establishing it as the baseline for interoperability across geospatial applications and incorporating geometry elements derived from (GML) 2.1.2, including Point, LineString, LinearRing, and . This version emphasized backward compatibility and became the reference for OGC-compliant tools. The subsequent KML 2.3, adopted by the OGC in October 2015, introduced enhancements such as support for 1.1 in extensions, new time-based geometries like and MultiTrack for dynamic paths, and the element for guided virtual navigation sequences. Although a draft of 2.3 in 2014 proposed formalizing superoverlay mechanisms using ImagePyramid for hierarchical image tiling, this remains primarily a Google implementation rather than a core OGC addition. Google has extended KML beyond the OGC core through the gx namespace (http://www.google.com/kml/ext/2.2), enabling advanced features not included in standard specifications. Notable gx elements include gx:Tour for creating interactive playlists of fly-to animations and waits, gx:TimeSpan enhancements for time-specific views in abstract elements like Camera and LookAt, and gx:balloonVisibility within to dynamically control information popup display. These extensions, such as gx:FlyTo for smooth transitions and gx:duration for timing controls, are supported in but may not be rendered in OGC-compliant software without specific handling. KML enforces across , requiring parsers to process documents based on the attribute in the root element (e.g., version="2.2"), while ignoring unrecognized elements from later . Tools must validate against the specified schema to ensure interoperability, with deprecated features like certain handling in 2.3 migrated from prior releases. As of November 2025, the OGC maintains KML 2.3 as the current standard, with 2.2 serving as a stable reference for legacy implementations, while continues to support 2.3 features and gx extensions informally for enhanced functionality in its ecosystem. No major revisions have been adopted since , though ongoing work in OGC working groups explores harmonization with other standards like GML.

Applications and Usage

Integration with Google Earth

Keyhole Markup Language (KML) serves as the native file format for , enabling the visualization of geographic data across its desktop, web, and mobile versions since the application's public release in 2005. parses KML and KMZ files to render elements such as placemarks, ground overlays, and tours, allowing users to annotate the globe with points of interest, paths, polygons, and immersive narratives. This integration originated from Keyhole, Inc.'s technology, acquired by in 2004, and has made KML central to 's functionality for displaying static and dynamic geospatial content. Rendering in Google Earth supports advanced KML features that enhance interactivity and realism. Dynamic styling allows for shared styles across elements, with options for highlighted icons, color-coded lines, and opacity adjustments to emphasize data layers. Photo overlays, implemented via ground overlays and PhotoOverlay elements, drape images directly onto the terrain, creating realistic billboards or expansive scenic views that align with the Earth's curvature and elevation. Network links enable live data integration, such as real-time weather updates or traffic feeds, by periodically refreshing external KML sources through view-based queries or scripting, ensuring content remains current without manual intervention. Google Earth provides built-in tools for importing, creating, and exporting KML files, streamlining workflows for users. Files can be imported directly into projects or opened as local KML, supporting placemarks, paths, polygons, and simple network links, while complex features may require the desktop version for full compatibility. Editing occurs through the interface, where users add and modify elements, then export as KML or compressed KMZ for sharing. Integration with Google My Maps extends this to web-based creation, allowing KML imports for lines, shapes, and places, which can then be viewed or further edited in . Post-2020 developments have emphasized cloud-based enhancements for KML handling in . Projects now store KML data in , enabling automatic syncing across desktop, web, and mobile devices for collaborative access and real-time updates. This shift supports importing KML from Drive directly into cloud projects, preserving features like image overlays and tours while facilitating seamless multi-device workflows.

Support in Other GIS Software

Keyhole Markup Language (KML) has seen widespread adoption in third-party (GIS) software due to its standardization by the Open Geospatial Consortium (OGC), enabling interoperability across various platforms. Esri's , for instance, has supported KML import and export since version 9.2 released in 2007, leveraging Safe Software's Feature Manipulation Engine (FME) for handling KML files in geoprocessing workflows. Similarly, the open-source provides comprehensive KML support through dedicated plugins such as KML Tools, which facilitate fast , and conversion of KML/KMZ files while preserving attributes like description fields and ground overlays. In web-based GIS applications, KML rendering is enabled by JavaScript libraries that extend browser capabilities for geospatial visualization. CesiumJS, an open-source for 3D globes and maps, includes a KmlDataSource module that supports major KML elements such as placemarks, polylines, polygons, and text, though coverage of the full OGC standard and extensions remains incomplete. Leaflet, a lightweight for interactive maps, achieves KML compatibility via plugins like leaflet-kml and leaflet-omnivore, allowing users to overlay KML on web maps with support for points, lines, and polygons. For 3D applications, NASA's WorldWind platform offers robust KML parsing and rendering through its OGC KML package, enabling the import of KML/KMZ files as layers with tree-based navigation of features. Despite its broad compatibility, KML adoption in open-source GIS tools often encounters limitations, particularly with proprietary extensions and complex features like 3D models or time-based animations, which may not render fully in environments such as CesiumJS or plugins. To address these gaps, conversion tools like the Geospatial Data Abstraction Library (GDAL) provide essential utilities, including the ogr2ogr command for transforming KML files to shapefiles while retaining geometry and attributes, facilitating integration with other GIS formats. As of 2025, KML continues to gain traction in specialized domains beyond general GIS, including software where CityEngine supports direct import of KML/KMZ for points, lines, and polygons to aid in city modeling and procedural design. In mapping applications, KML's structured format enables real-time feeds through dynamic network links and conversions, integrating geospatial data from sensors into platforms like for live visualization in sectors such as and . The August 2025 update to Earth further enhanced KML support with multi-geometry editing tools, such as combine and split, for improved handling of complex features.

References

  1. [1]
    Keyhole Markup Language (KML) Standard | OGC Publications
    KML. Originating as a community standard, this standard defines an XML language focused on geographic visualization, including annotation of maps and images ...
  2. [2]
    KML, Version 2.2 - The Library of Congress
    Apr 14, 2025 · Keyhole was acquired by Google in 2004, and the product became Google Earth. KML, version 2.2. was adopted as an international standard in 2008 ...
  3. [3]
    Google buys satellite image firm Keyhole - CNET
    Oct 27, 2004 · Search giant Google said Wednesday that it has acquired Keyhole, a company specializing in Web-based software that allows people to view satellite images from ...Missing: KML | Show results with:KML
  4. [4]
    KML Reference | Keyhole Markup Language - Google for Developers
    (OGC). The complete specification for OGC KML can be found at http://www.opengeospatial.org/standards/kml/. The complete XML schema for KML is located at ...KML Extension Namespace... · KML fields · gx:balloonVisibility> · Feature>
  5. [5]
    What is KML?—ArcGIS Pro | Documentation
    KML Version 2.2 has been adopted as an Open Geospatial Consortium (OGC) standard. The complete KML specification can be found at https://www.opengeospatial.org/ ...
  6. [6]
    KML Tutorial | Keyhole Markup Language - Google for Developers
    Nov 3, 2023 · These features include placemarks, descriptions, ground overlays, paths, and polygons. The second section describes features that require ...
  7. [7]
    Time and Animation | Keyhole Markup Language
    Nov 3, 2023 · Any Feature in KML can have time data associated with it. This time data has the effect of restricting the visibility of the data set to a given time period or ...
  8. [8]
    Origins of Google Earth - History of Information
    Google acquired Keyhole in 2004, and Keyhole's Earth Viewer reached a wide public as Google Earth in 2005. Other aspects of Keyhole technology were incorporated ...Missing: KML | Show results with:KML
  9. [9]
    Keyhole Markup Language (KML) - Natural Resources Canada
    Jan 8, 2025 · A formal definition of the coordinate reference system used by KML (encoded as GML) is contained in the OGC® KML 2.2 specification. KML ...
  10. [10]
    GOOGLE ACQUIRES KEYHOLE CORPORATION - IQT
    Oct 27, 2004 · October 27, 2004. Mountain View, CA. Google Inc. (Nasdaq: GOOG) today announced it acquired Keyhole Corp., a Mountain View, Calif.Missing: KML | Show results with:KML
  11. [11]
    GOOGLE EARTH VIRTUAL GLOBE - The History of Domains
    The release of Google Earth in June 2005 to the public caused a more than tenfold increase in media coverage on virtual globes between 2004 and 2005, driving ...
  12. [12]
    [PDF] OGC® KML Standard Development Best Practices
    Jul 7, 2008 · In early 2007, Google proposed to the OGC that KML be submitted to the OGC to become an OGC standard. In June 2007, KML 2.1 was approved as an ...
  13. [13]
    [PDF] OGC® KML
    Jan 4, 2020 · Google submitted KML (formerly Keyhole Markup Language) to the Open Geospatial. Consortium (OGC) to be evolved within the OGC consensus ...
  14. [14]
    Earth Versions – Google Earth
    This version automatically installs recommended updates. If you'd like previous versions of Google Earth Pro, please visit the Direct Installers page. Help make ...
  15. [15]
    Look back at a year of earth engine advancements - Google Cloud
    Dec 11, 2024 · 2024 has been a landmark year for Google Earth Engine, marked by significant advancements in platform management, cloud integration, and core functionality.Missing: KML 2008 3D
  16. [16]
    New Google Earth capabilities empower professionals and explorers
    Sep 24, 2024 · You can also now utilize Google's cloud-based data import and storage to easily add your own KML datasets, such as parcel maps, proposed ...Missing: 2008 enhancements<|control11|><|separator|>
  17. [17]
  18. [18]
    OGC 12-007r2
    KML 2.3 uses the W3C XML 1.1 Schema language to describe the grammar of conformant KML data instances. The KML schema document is hosted in the OGC KML schema ...
  19. [19]
  20. [20]
  21. [21]
  22. [22]
  23. [23]
  24. [24]
  25. [25]
  26. [26]
  27. [27]
  28. [28]
  29. [29]
  30. [30]
    [PDF] KML 2.1 Reference – An OGC Best Practice
    May 2, 2007 · Google submitted KML (formerly Keyhole Markup Language) to the Open Geospatial. Consortium (OGC) to be evolved within the OGC consensus ...
  31. [31]
    OGC® adopts updated KML Earth browser standard – KML 2.3
    Jun 18, 2015 · KML 2.3 is now based on XML Schema 1.1 enabling authors of KML Application Profile extensions to experimentally add foreign element and attribute content.Missing: draft 2014
  32. [32]
    [PDF] KML 2.1 Tag Index - Google Earth
    Jun 23, 2006 · Use a placemark to describe a point (Icon), line, path, or polygon on the planet surface. You can define a number of other elements for ...Missing: xsd | Show results with:xsd<|control11|><|separator|>
  33. [33]
  34. [34]
    10 years of Google Earth innovation
    Jun 29, 2015 · Keyhole Markup Language (KML) is named for Google Earth's predecessor Keyhole Earthviewer. ... First introduced with version 5 in February 2009, ...
  35. [35]
    KML Documentation Introduction | Keyhole Markup Language
    Nov 3, 2023 · You can create KML files with the Google Earth user interface, or you can use an XML or simple text editor to enter "raw" KML from scratch. KML ...KML Tutorial · KML Reference · Sky Data in KML · Developer's Guide
  36. [36]
    Adding PhotoOverlays | Keyhole Markup Language
    Nov 3, 2023 · PhotoOverlays are photographs that are directly embedded in the Earth's landscape. They can be 2D rectangles, adding scenic "billboards" that expand the base ...Key Concepts · Field Of View · Adding Very Large Photos<|separator|>
  37. [37]
    Using Network Links Effectively – Google Earth Outreach
    In the most generic sense, a KML file with a network link acts as a gateway into the content on your server. Your users download your KML file just once, but ...Missing: definition | Show results with:definition
  38. [38]
    Import KML into an Earth project or a local KML file | Google Earth
    To upload a KML or KMZ file to Google Earth, upload your file into a project or open it as a local KML file. A project is stored in Google Drive, while a local ...
  39. [39]
  40. [40]
    Learn about Earth projects and local KML files - Google for Developers
    Earth projects support KML features like: Placemarks, lines and paths, and polygons; Image overlays; Simple network links. Learn more about which imported KML ...
  41. [41]
    [PDF] Whats New In ArcGIS 9.2 - Esri
    Mar 5, 2007 · Now based on Safe Software's FME 2006 release which supports Google Earth KML & OGC GML 3.1.1, etc. Now supports ArcGIS Server & ArcGIS Engine.
  42. [42]
    KML Tools — QGIS Python Plugins Repository
    Fast KML/KMZ importer, exporter, with description field expansion and ground overlay to GeoTIFF conversions.
  43. [43]
    KmlDataSource - Cesium Documentation
    KML support in Cesium is incomplete, but a large amount of the standard, as well as Google's gx extension namespace, is supported. See Github issue #873 for ...Missing: rendering | Show results with:rendering
  44. [44]
    Plugins - Leaflet - a JavaScript library for interactive maps
    Loads & converts CSV, KML, GPX, TopoJSON, WKT formats for Leaflet. ✔️, Demo · Mapbox · Leaflet-WFST · WFS client layer with transaction support.Basemap providers · Basemap formats · Overlay data formats · Markers & renderers
  45. [45]
    gov.nasa.worldwindx.examples.kml (NASA World Wind)
    KMLViewer is an example application that allows the user to import a KML file into a WorldWind layer. The contents of the file are displayed in a tree.Missing: support | Show results with:support
  46. [46]
    KML - Keyhole Markup Language — GDAL documentation
    Keyhole Markup Language (KML) is an XML-based language for managing the display of 3D geospatial data. KML has been accepted as an OGC standard.
  47. [47]
    Import KML / KMZ (Keyhole Markup Language) - Esri Documentation
    For KMZ as well as KML files, the easiest way to import is by first dragging either the KMZ file(s) or the folder containing the KML file and associated files ...
  48. [48]
    What's New in ArcGIS Earth (April 2025) - Esri
    Apr 24, 2025 · With this release, you can now visualize and interact with real-time data by connecting to stream service feeds from ArcGIS GeoEvent Server or ...