The Following User Says Thank You to rinigus For This Useful Post: | ||
|
2017-11-30
, 08:55
|
Posts: 1,746 |
Thanked: 1,832 times |
Joined on Dec 2010
|
#22
|
I see that you went C++ route and not simple QML way.
I would suggest to install
https://build.merproject.org/package...s/mapboxgl-qml and just use MapboxMap together with the gesture area as in https://github.com/rinigus/mapbox-de...y/MainPage.qml . Then you don't even need to include MapboxGL as a submodule, can use regular gcc, and its all very simple. mapboxgl-qml would register the module in the system and all should just work. Please report bugs if it doesn't.
C++ way, as you did, is also possible, but more complicated and will lead to all apps having different versions of the plugin (since you are compiling it in) and would end up having larger requirements in the root partition (everyone installing plugin under their /usr/share/harbour... folder). Note that QMaboxGL (which plugin interfaces), requires QLocation. So, there is no-go into Jolla Harbour until its allowed (Jolla's soon^TM comes into mind). So, I would suggest to go via QML plugin installation, enjoy programming and using it!
As for the error that you get, I think you are very close. You seem to miss c++14 in PRO configuration file, as I can deduce from compile messages. See https://github.com/rinigus/mapbox-de...x-sfos.pro#L15
|
2017-11-30
, 10:26
|
Posts: 1,414 |
Thanked: 7,547 times |
Joined on Aug 2016
@ Estonia
|
#24
|
hmm was missing the import and added it so MapboxMapGestureArea is recognised but not MapboxMap
The Following User Says Thank You to rinigus For This Useful Post: | ||
|
2017-12-03
, 15:53
|
Posts: 1,414 |
Thanked: 7,547 times |
Joined on Aug 2016
@ Estonia
|
#26
|
|
2017-12-03
, 16:15
|
Posts: 1,746 |
Thanked: 1,832 times |
Joined on Dec 2010
|
#27
|
Great to hear. An update from me as well regarding offline maps:
* as mentioned earlier, plane imported
* added support for Mapbox GL styles, fonts (glyphs), and icons (sprite).
* added support for distribution of tiles, fonts, styles, and icons
This means that all the main parts are in place, now I need to hook it all to GUI and test on device. After that, testing and releases with increased amount of polish
The Following User Says Thank You to m4r0v3r For This Useful Post: | ||
|
2017-12-10
, 20:55
|
Posts: 1,414 |
Thanked: 7,547 times |
Joined on Aug 2016
@ Estonia
|
#28
|
The Following 16 Users Say Thank You to rinigus For This Useful Post: | ||
|
2017-12-11
, 09:14
|
Posts: 1,746 |
Thanked: 1,832 times |
Joined on Dec 2010
|
#29
|
As of today, offline support for Mapbox GL vector tiles has been released as a part of OSM Scout Server and the first full-blown application using the widget has been released as a temporary fork of Poor Maps. So, it should be possible to use it daily and the infrastructure for this maps widget is all in place.
The Following 2 Users Say Thank You to m4r0v3r For This Useful Post: | ||
|
2017-12-11
, 09:22
|
Posts: 1,414 |
Thanked: 7,547 times |
Joined on Aug 2016
@ Estonia
|
#30
|
I've been quietly ripping off your poor-maps code :P Very handy. One thing I was confused about is the GPS itself, is there anyway to reliable check if it has lock since most flags come back as valid when lock hasn't actually been achieved yet
The Following 3 Users Say Thank You to rinigus For This Useful Post: | ||
I would suggest to install
https://build.merproject.org/package...s/mapboxgl-qml and just use MapboxMap together with the gesture area as in https://github.com/rinigus/mapbox-de...y/MainPage.qml . Then you don't even need to include MapboxGL as a submodule, can use regular gcc, and its all very simple. mapboxgl-qml would register the module in the system and all should just work. Please report bugs if it doesn't.
C++ way, as you did, is also possible, but more complicated and will lead to all apps having different versions of the plugin (since you are compiling it in) and would end up having larger requirements in the root partition (everyone installing plugin under their /usr/share/harbour... folder). Note that QMaboxGL (which plugin interfaces), requires QLocation. So, there is no-go into Jolla Harbour until its allowed (Jolla's soon^TM comes into mind). So, I would suggest to go via QML plugin installation, enjoy programming and using it!
As for the error that you get, I think you are very close. You seem to miss c++14 in PRO configuration file, as I can deduce from compile messages. See https://github.com/rinigus/mapbox-de...x-sfos.pro#L15