如何prepare KML文件Android模拟器控制?模拟器、文件、prepare、KML

由网友(心已死,不再为你痛)分享简介:我想测试我的位置信息的应用程序。你知道模拟器控制必须从KML文件加载的能力。 (Eclipse的 - > DDMS - >模拟器控制 - >位置控制 - > KML - >加载KML ...)我已经使用谷歌地球应用程序的添加路径prepared KML文件。然后将其保存以.kml扩展并加载它在Eclipse。...

我想测试我的位置信息的应用程序。 你知道模拟器控制必须从KML文件加载的能力。 (Eclipse的 - > DDMS - >模拟器控制 - >位置控制 - > KML - >加载KML ...) 我已经使用谷歌地球应用程序的添加路径prepared KML文件。然后将其保存以.kml扩展并加载它在Eclipse。 Eclipse中没有加载这个KML文件。

I am trying to test my application with location information. You know the Emulator Control has an ability to load from KML file. (Eclipse -> DDMS -> Emulator Control -> Location Controls -> KML -> Load KML...) I've prepared KML file using Google earth application with its "Add path". Then saved it by .kml extension and load it on the Eclipse. Eclipse didn't load this KML file.

如何prepare KML文件Android模拟器控制?

How to prepare KML file for Android Emulator Control?

推荐答案

我已经找到了解决方案: KML格式为:

I've found solution : KML format is :

<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.x">
<Placemark>
    <name>1</name>
        <Point><coordinates>-109.0450005395891,33.39487928579279,0</coordinates></Point>
</Placemark>
</kml>
阅读全文

相关推荐

最新文章