|
2011-02-06
, 12:04
|
Posts: 650 |
Thanked: 497 times |
Joined on Oct 2008
@ Ghent, Belgium
|
#502
|
So its a Google provided location sharing service ? Looks like they even have native pure-Python bindings for it But still, I think I can't manage to integrate it to be ready tomorrow
The Following User Says Thank You to petur For This Useful Post: | ||
|
2011-02-06
, 12:25
|
Posts: 650 |
Thanked: 497 times |
Joined on Oct 2008
@ Ghent, Belgium
|
#503
|
The Following User Says Thank You to petur For This Useful Post: | ||
|
2011-02-06
, 12:45
|
Posts: 1,548 |
Thanked: 7,510 times |
Joined on Apr 2010
@ Czech Republic
|
#504
|
Yes, it is a Google service with a public API. It would need to log into it (ie provide credentials).
I'm only interested in showing them on the map, not sending in your own position (already having the latitude daemon doing that - its map part sucks though), and be able to get a route to one of them (click on one and use that as some kind of temporary POI)
Not urgent, I'm not needing it in the near future, would have been nice here on Fosdem
Martin, I found this to work fine when standing still, but when walking or driving I still sometimes leave centering mode. So I guess the vibrations are bigger than your treshold :/
Any way to increase this or make it configurable or whatever solution you can come up with?
|
2011-02-06
, 14:39
|
Posts: 838 |
Thanked: 292 times |
Joined on Apr 2010
|
#505
|
|
2011-02-06
, 18:28
|
Posts: 1,341 |
Thanked: 708 times |
Joined on Feb 2010
|
#506
|
Just quick question, is the ability to talk your destination into modrana planned or even possible on the n900?
|
2011-02-06
, 19:06
|
Posts: 1,548 |
Thanked: 7,510 times |
Joined on Apr 2010
@ Czech Republic
|
#507
|
this app has saved me now on several occasions much much thanks. Just quick question, is the ability to talk your destination into modrana planned or even possible on the n900?
Again thanks, this app to me shows how this community succeeded where nokia failed...
If, then this speech recognition, I think, should be done in a separate module, which communicates with DBUS and other applications could use it also.
My modrana is currently full of old traces and I do not know how to clear them from the map.
|
2011-02-08
, 03:18
|
Posts: 110 |
Thanked: 127 times |
Joined on May 2010
|
#508
|
|
2011-02-08
, 05:14
|
|
Posts: 1,455 |
Thanked: 3,309 times |
Joined on Dec 2009
@ Rochester, NY
|
#509
|
1) The GPS device is a battery muncher. When the screen is locked, or the proximity sensor is on for either pocket or phone-call or media playing, the GPS should turn off.
|
2011-02-08
, 13:04
|
Posts: 2,829 |
Thanked: 1,459 times |
Joined on Dec 2009
@ Finland
|
#510
|
The Following User Says Thank You to slender For This Useful Post: | ||
Tags |
bada rox, martin_rocks, modrana, navigation, openstreetmap, the best, wehasgps |
|
I have made short survey into available acceleration methods a while ago.
First I have looked on plain OpenGL (this is what CloudGPS uses), there is even a short (working) Python example in the Maemo wiki. But it uses xlib directly and I haven't found any way how to integrate it with the rest of modRana, that uses GTK+Cairo. Also, OpenGL ES (1.1 & 2.0) available on Maemo (and also on most other devices with mobile GPUs) is generally not compatible with the OpenGL available on "normal" PC - and I would like modRana to stay as multi-platform as possible (BTW, it runs just fine on Linux PC, even through X forwarding .
Next I looked at Clutter - this is what Maemo 5 uses for all those fancy animations There are Python bindings for clutter 0.8 - which are outdated and have a nasty bug preventing GTK integration
Fortunately, I have succeeded in compiling bindings for clutter-1.0, that are not that ancient and don't have that GTK related bug.
Simple performance tests look promising - I can make multiple tile images move smoothly across the screen (although there is some tearing from time to time), with simultaneous rotation and scaling...hmm looks like I can do this even with full page manga scans Of course, it remains to be seen how it performs in a real life scenario.
Also, Clutter supports both OpenGL ES and "normal" OpenGL all the work done towards acceleration would be usable across multiple platforms.
tl,dr: modRana will use Clutter to make dragging the map smoother
ModRana now actually supports SVG icons (also JPEG and some more exotic ones too) but I have found that the re-rendering takes too long vs using appropriately sized pre-rendered PNGs. It took over a second just to render the icons for the main menu - they are cached after that, but a first time render is needed up to four time (fullscreen, non-fullscreen, rotated fullscreen, rotated non-fullscreen) and the PNGs look just as good
modRana: a flexible GPS navigation system
Mieru: a flexible manga and comic book reader
Universal Components - a solution for native looking yet component set independent QML appliactions (QtQuick Controls 2 & Silica supported as backends)
Last edited by MartinK; 2011-02-04 at 21:04. Reason: add forgotten quote