GPX文件无法在Android模拟器中加载

问题描述 投票:2回答:1

摘要:

我已经尝试将GPX文件加载到Android模拟器中,但是我收到错误消息“该表包含错误。没有发送任何位置”。

重现步骤:

  1. 打开模拟器
  2. 点击右侧垂直条带中的三个点
  3. 在“位置”选项卡下的“扩展控件”弹出窗口中,单击“加载GPX / KML”并选择GPX文件
  4. 点击“播放”按钮

Emulator Location

APS圆角(测试.gps):

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<gpx
xmlns="http://www.topografix.com/GPX/1/1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd"
version="1.1"
creator="gpx-poi.com">
   <wpt lat="28.0587" lon="-82.4139">
      <time>2015-12-01T03:01:44Z</time>
   </wpt>
</gpx>

预期行为:

应将位置发送到模拟器

观察到的行为:

错误消息“该表包含错误。未发送任何位置”:

设备和Android版本:

模拟器Nexus 5X API Level 23(Google API),1080 x 1920; Windows 7 Enterprise SP1 64位上的420 dpi,Android 6.0(Google API),x86,1GB

android android-emulator location gpx
1个回答
2
投票

截至2016年8月10日,仿真器看起来不支持GPX航点格式:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<gpx
xmlns="http://www.topografix.com/GPX/1/1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd"
version="1.1"
creator="gpx-poi.com">
   <wpt lat="28.0587" lon="-82.4139">
      <time>2015-12-01T03:01:44Z</time>
   </wpt>
</gpx>

但是,它似乎支持GPX轨道格式:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<gpx
xmlns="http://www.topografix.com/GPX/1/1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd"
version="1.1"
creator="gpx-poi.com">
   <trk>
      <name />
      <cmt />
      <trkseg>
        <trkpt lat="28.0587" lon="-82.4139">
          <ele>0</ele>
          <time>2015-12-01T03:01:44Z</time>
        </trkpt>
      </trkseg>
   </trk>
</gpx>

上述GPX轨道格式成功加载到仿真器并正确注入位置。

© www.soinside.com 2019 - 2024. All rights reserved.