Googlemaps plugin
-
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? -
@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?
@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) -
@raven-worx Thank you.
I got it. I will ckeck and report the result here -
@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?@Naser-0
copy it to<QTDIR>/plugins/geoservices
The .pro file has an install target specified which also copies it there -
@raven-worx thank you so much
I will check and report the result -
@raven-worx thank you so much.
i solved my problem with your solution.