Googlemaps plugin
-
wrote on 6 Feb 2020, 20:01 last edited by Naser 0 5 Aug 2020, 07:53
Hello every body.
I am developing a qml project that in that want to track a car motion on my map.I want to use googlemap plugin in my map object.
I searched a lot and relized that there is no official plugin for googlemap in the qt.
I found an implmentation of googlemaps for qt in this link :
https://github.com/vladest/googlemaps
But i have no any idea about using it.
Can you guid me to add this plugin to my qt project? -
Hello every body.
I am developing a qml project that in that want to track a car motion on my map.I want to use googlemap plugin in my map object.
I searched a lot and relized that there is no official plugin for googlemap in the qt.
I found an implmentation of googlemaps for qt in this link :
https://github.com/vladest/googlemaps
But i have no any idea about using it.
Can you guid me to add this plugin to my qt project? -
wrote on 7 Feb 2020, 09:07 last edited by
@Pl45m4 yeah .i asked similar question in github.
i imported QtLocation in my project(QT += location) but when i run my project it says that (QtLocation/private/qgeotiledmap_p.h: No such file or directory).
i dont know what is my problem. -
@Pl45m4 yeah .i asked similar question in github.
i imported QtLocation in my project(QT += location) but when i run my project it says that (QtLocation/private/qgeotiledmap_p.h: No such file or directory).
i dont know what is my problem. -
@Pl45m4 no i had not add this modules. My problem is about the adding googlemap plugin to qt. somebody told me that i should firstly compile this plugin.but i dont know how to do it.can you help me?
Moderatorswrote on 7 Feb 2020, 18:12 last edited by raven-worx 2 Jul 2020, 18:13@Naser-0
open the .pro file with QtCreator and build it (with the same Qt kit and release/debug mode you want to use it with) -
wrote on 7 Feb 2020, 20:23 last edited by Naser 0 2 Jul 2020, 20:23
@raven-worx Thank you.
I got it. I will ckeck and report the result here -
wrote on 7 Feb 2020, 20:37 last edited by
@raven-worx I have an other question.
which directory should i copy the built plugin after building ? in qt plugins directory? -
@raven-worx I have an other question.
which directory should i copy the built plugin after building ? in qt plugins directory?Moderatorswrote on 7 Feb 2020, 23:11 last edited by raven-worx 2 Jul 2020, 23:12@Naser-0
copy it to<QTDIR>/plugins/geoservices
The .pro file has an install target specified which also copies it there -
wrote on 8 Feb 2020, 09:13 last edited by
@raven-worx thank you so much
I will check and report the result -
wrote on 9 Feb 2020, 17:59 last edited by Naser 0 2 Sept 2020, 18:00
@raven-worx thank you so much.
i solved my problem with your solution.
8/11