# infra-structured-map **Repository Path**: mirrors_google/infra-structured-map ## Basic Information - **Project Name**: infra-structured-map - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-01-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README infra-structured-map is a tool for creating interactive maps of capital infrastructure projects in a given area. The tool consumes KML and Markdown to produce a web-based map. This is not an official Google product. ## Usage Document your projects in a Markdown file: ```markdown # The Bigger Dig This is a multi-century project to build a subway from New York to LA. ``` Next, define the geographic features of each project in KML: ```xml ... ProjectId ... ... ``` Tip: [Google My Maps](https://www.google.com/mymaps) is a great tool for maintaining your map data. It exports KML and you can even pass your KML download URL to the extract below. Next, build a JSON data file for powering your interactive map. ``` java com.google.infrastructuredmap.MapAndMarkdownExtractorMain \ -markdown project.md \ -kml project.kml \ -output output.js ``` Finally, display your data on a webpage: ```javascript var map = new google.maps.Map(element, options); var infraMap = new InfraStructuredMap({map: map}); infraMap.load(data); ```