Using Custom KML Geomaps

Visualizer supports custom Geomaps. When built-in maps do not meet your needs, you can use a custom KML (Keyhole Markup Language) file to define your own geography or add pins.

KML file requirements:
  • File format: .kml
  • Maximum size: 20 MB
  • Structure:

    <Document>

    <Placemark>...</Placemark>

    </Document>

  • Supported Tags Under <Placemark>:
    • <name>: Label for the location.
    • <description>: Optional details.
    • <Point> with <coordinates>: Longitude, latitude (in that order).
  • Example of KML file
    
    <Document>
    
        <name>Customer Locations</name>
    
        <description>Custom pins for ship-to locations</description>
    
        <Placemark>
    
          <name>Customer A</name>
    
          <description>Ship-to Location: Ahmedabad</description>
    
          <Point>
    
          <coordinates>72.5714,23.0225</coordinates>
    
          </Point>
    
        </Placemark>
    
     
    
        <Placemark>
    
          <name>Customer B</name>
    
          <description>Ship-to Location: Mumbai</description>
    
          <Point>
    
            <coordinates>72.8777,19.0760</coordinates>
    
          </Point>
    
        </Placemark>
    
    </Document>