如何在 Fusion Table 上导入位置历史 KML 文件的所有信息?

How import all information of location history KML file on Fusion Table?

我从 google 地图的位置历史中导出了 KML 文件。

因此,我尝试使用 Google 驱动器创建 Fusion Table 并导入此文件。

在导入过程中,我选择了包含列名称的行。

在融合中创建的列 table 是: 描述、名称和几何形状

Fusion Table 仅导入一行,其中填充了描述和名称,而几何字段为空。

此处使用的 KML 文件(删除了一些关于 gx:coord 的条目):

<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom">
<Document>
<name>Location history from 09/21/2014 to 09/28/2014</name>
<open>1</open>
<description/>
<StyleMap id="multiTrack">
<Pair>
<key>normal</key>
<styleUrl>#multiTrack_n</styleUrl>
</Pair>
<Pair>
<key>highlight</key>
<styleUrl>#multiTrack_h</styleUrl>
</Pair>
</StyleMap>
<Style id="multiTrack_n">
<IconStyle>
<Icon>
<href>http://earth.google.com/images/kml-icons/track-directional/track-0.png</href>
</Icon>
</IconStyle>
<LineStyle>
<color>99ffac59</color>
<width>6</width>
</LineStyle>
</Style>
<Style id="multiTrack_h">
<IconStyle>
<scale>1.2</scale>
<Icon>
<href>http://earth.google.com/images/kml-icons/track-directional/track-0.png</href>
</Icon>
</IconStyle>
<LineStyle>
<color>99ffac59</color>
<width>8</width>
</LineStyle>
</Style>
<Placemark>
<name>Latitude User</name>
<description>Location history for Latitude User from 09/21/2014 to 09/28/2014</description>
<styleUrl>#multiTrack</styleUrl>
<gx:Track>
<altitudeMode>clampToGround</altitudeMode>
<when>2014-09-21T15:23:46.249-07:00</when>
<gx:coord>99.99999 41.99999 0</gx:coord>
<when>2014-09-21T15:23:47.249-07:00</when>
<gx:coord>99.99999 41.99999 0</gx:coord>
</gx:Track>
</Placemark>
</Document>
</kml>

导入 KML 时支持的几何类型是线串、多边形和点(参见:https://support.google.com/fusiontables/answer/174680

这可行:

<Placemark>
  <name>Latitude User</name>
  <description>Location history for Latitude User from 09/21/2014 to 09/28/2014</description>
  <Point>
    <coordinates>99.99999,41.99999,0</coordinates>
  </Point>
</Placemark>