0

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

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

在导入期间,我选择了包含列名的行。

fusion 表中创建的列有:description、name 和 geometry

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

  • Fusion 表上的地理信息是否以几何类型融合?

  • 如果它是正确的,为什么它不起作用?

  • 如果错了,这些信息的正确类型映射是什么?

这里使用的 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>
4

1 回答 1

0

导入 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>
于 2015-02-14T00:40:00.697 回答