QML-Maps-Qt,用地图点击屏幕,处理并获取坐标
Posted
技术标签:
【中文标题】QML-Maps-Qt,用地图点击屏幕,处理并获取坐标【英文标题】:QML-Maps-Qt, tap the screen with a map, processing and obtain the coordinates 【发布时间】:2016-04-09 03:39:44 【问题描述】:我正在制作一个支持 android 版 Qt Creator (Community) 5.5.1 地图的项目。我使用了 QML,现在我需要一些帮助,因为我不知道我会进一步做什么。
首先,我在 QML 和关联地图中确定了我的位置。 QML 代码在这里: main.qml:
import QtQuick 2.0
import QtPositioning 5.3
import QtLocation 5.3
Item
PositionSource
active: true
onPositionChanged:
console.log(position.coordinate);
Map
id: map
anchors.fill: parent
plugin: Plugin name: "osm"
center: QtPositioning.coordinate(44.561083, 33.530209)
zoomLevel: 14
以及main.cpp的代码:
#include <QGuiApplication>
#include <QQuickView>
int main(int argc, char **argv)
QGuiApplication app(argc, argv);
QQuickView view;
view.setSource(QUrl::fromLocalFile("main.qml"));
view.setResizeMode(QQuickView::SizeRootObjectToView);
view.resize(300, 400);
view.show();
return app.exec();
项目正在桌面上构建和运行,它正在运行并且地图显示在屏幕上。但是在 Armeabi (android) 上没有显示它们。我正在真实设备上测试我的程序。 My deviceDesktop是的,它正在运行和构建,但是屏幕是白色的,并且有一些红色的日志:
E/Zygote (23941):Zygote:错误关闭描述符 E/Zygote (23941):libcore.io.ErrnoException:关闭失败:EBADF(坏文件 编号)E/Zygote(23941):在 libcore.io.Posix.close(本机方法) E/Zygote (23941):在 libcore.io.BlockGuardOs.close(BlockGuardOs.java:75) E/Zygote (23941): 在 com.android.internal.os.ZygoteInit.closeServerSocket(ZygoteInit.java:224) E/Zygote (23941):在 com.android.internal.os.ZygoteConnection.handleChildProc(ZygoteConnection.java:879) E/Zygote (23941):在 com.android.internal.os.ZygoteConnection.runOnce(ZygoteConnection.java:242) E/Zygote (23941):在 com.android.internal.os.ZygoteInit.runSelectLoop(ZygoteInit.java:704) E/Zygote (23941):在 com.android.internal.os.ZygoteInit.main(ZygoteInit.java:640) E/Zygote (23941): 在 dalvik.system.NativeStart.main(Native Method)
E/ (23941): appName=org.qtproject.example.LOCATIONQML, acAppName=/system/bin/surfaceflinger E/ (23941): 0
W/libLOCATIONQML.so(23941): file:///data/data/org.qtproject.example.LOCATIONQML/files/main.qml:-1 ((空值)): file:///data/data/org.qtproject.example.LOCATIONQML/files/main.qml: 找不到文件 E/ (23941): appName=org.qtproject.example.LOCATIONQML, acAppName=/system/bin/surfaceflinger E/ (23941): 0
W/ResourceType(23941):获取名称时没有包标识符 资源号0x00000001
我有两个问题:
-
我必须做什么才能在真实设备 Android 上运行我的程序,地图将显示在智能手机的屏幕上?
如果我点击智能手机的屏幕,地图和该区域的坐标被记住了,该怎么办?更进一步,我可以比较用户的当前位置和在地图屏幕上点击的点的位置?
【问题讨论】:
发布一个独立的例子。这可能是某种包装问题。 【参考方案1】:您的 qml 使用最新的 Qt 可以正常工作。
尝试使用 qt creator 为您生成的标准 main(),使用 QQmlApplicationEngine 而不是 QQuickView。
【讨论】:
以上是关于QML-Maps-Qt,用地图点击屏幕,处理并获取坐标的主要内容,如果未能解决你的问题,请参考以下文章