01/10/2013, 05:40 AM
|
#1201 (permalink) | |
|
Member
![]()
Posts: 9
|
Quote:
Then, do you think you could ever consider the possibility to develop even google earth app for the touchpad?? (Something similar to the ipad one?) |
|
01/12/2013, 08:42 AM
|
#1203 (permalink) | |
|
Homebrew Developer
![]()
Posts: 405
|
Quote:
Answer is YES, I can make a function for tiles storing to database... we share the same idea and now it is not a secret ![]() Sent from ICOO D70GT tablet |
|
01/12/2013, 08:58 AM
|
#1204 (permalink) | |
|
Homebrew Developer
![]()
Posts: 405
|
Quote:
Anyway, yesterday i tested my new app wInNeR ported to Enyo 2, I'm falling in love to Enyo 2, because I bundled the framework with application, and it works on webOS 1.x, 2.x, 3.x, desktop Linux, desktop Windows and on my Android tablet as well. Included some webos compatibility libraries it handles screen orientation and backswipe too. More, I can use Mojo functions. Disadvantage is that Mojo is significantly faster on webOS phones than Enyo, mainly scroller performance. But the future is Enyo 2, I think it can run on new FirefoxOS or Ubuntu for phones as well. Sent from ICOO D70GT tablet |
|
01/12/2013, 10:10 AM
|
#1205 (permalink) | |
|
Member
|
Quote:
A related idea that I thought of last night, is the option of installing a base set of tiles of the entire planet (perhaps 1cm = 500km?), so when you're on a long plane trip and no internet access you can see where you are. (I have no idea how much space that would take up). |
|
01/12/2013, 03:53 PM
|
#1206 (permalink) | |
|
Member
|
Quote:
For me this dir has a size of 1.65GB and i'm not traveling that much. So is that possible in a database? Could it perhaps be possible to share one directory with both apps (i know not that easy for bug tracking at users)? Btw. MapTool Pro has a build-in maptile downloader: Save maps for offline use with MapTool Pro | webOS Nation and there is an desktop jtiledownloader: L\'Haut-Parleur » WebOS: MapTool 0.9.6 on PreCentral, Wikay 1.0.1 in the AppCatalog, Match This! Pro in the AppCatalog And some more info, what can happen downloading many files ![]() http://forums.webosnation.com/webos-...ml#post3206263
__________________
Patch Enhancing vCard Export -|- Your own cloud with Zarafa (EAS sync) -|- Tasks-app of 2.x on 3.x incl.EAS sync -|- SYM key in Enyo on phones -|- My hidden webOS Tips and Tricks - like it ?
|
|
01/12/2013, 05:03 PM
|
#1207 (permalink) | |
|
Member
|
Quote:
Tirex/Overview - OpenStreetMap Wiki
__________________
Patch Enhancing vCard Export -|- Your own cloud with Zarafa (EAS sync) -|- Tasks-app of 2.x on 3.x incl.EAS sync -|- SYM key in Enyo on phones -|- My hidden webOS Tips and Tricks - like it ?
|
|
01/13/2013, 03:32 AM
|
#1208 (permalink) | |
|
Homebrew Developer
![]()
Posts: 405
|
Quote:
Sure only for devices with FileMgr service, but FileMgr is must have service for each webOS user. |
|
01/22/2013, 12:23 AM
|
#1209 (permalink) |
|
Homebrew Developer
![]()
Posts: 405
|
Hi,
I tried to use MapTool Pro tiles cache as source in Google Maps... worked for the first try, very nice! The issue what I have to resolve, is the "smart cache" ... I tried make check if the tile exist in cache or not, it works.. but the filemgr or ajax call is asynchronous and thats the problem. The Google tile url getter needs the respond synchronized. Thus, at this time, I can only switch between online or offline tiles.... I have to found some solution how to do the "smart caching" Smart caching means to get from offline first and the online if doesn´t exist and then save them for offline use. |
01/22/2013, 12:47 AM
|
#1210 (permalink) |
|
Member
|
So i assume Metaview (dev of MapTool Pro) has no issue with it, cause he only uses OSM and no google tile getter involved?
Else you could ask him for some support, even if he perhaps has some not so good feelings about your free and his paid app. But you could do some cross advertise as his app is still number one in OSM (different tile servers and downloader) and GPX track recording and track viewing field. [/ advertise off]
|
01/22/2013, 04:29 AM
|
#1211 (permalink) |
|
Member
![]()
Posts: 36
|
Hi 72ka,
I am beta-testing zhepree's new version of neato. In case you do not know it, it is an app that allows you to send text/links from one device to another. e.g. from the webbrowser to the phone or touchpad (and the new version is even cross-platform, supporting android and IOS). Apparently when the old/original version of Google Maps was present on the devices before it was replaced with Bing maps, there were URL triggers, that fired up the Google Maps app when a Google Maps URL was received. When I send such an URL to my Pre3 now, all that opens is the Google Maps page in the browser. Would it be possible for you to include such URL triggers in you app? That would be awesome! |
01/22/2013, 05:55 AM
|
#1212 (permalink) | |
|
Homebrew Developer
![]()
Posts: 405
|
Quote:
|
|
01/22/2013, 06:01 AM
|
#1213 (permalink) | |
|
Homebrew Developer
![]()
Posts: 405
|
Quote:
Second issue.. the MapTool use tiles with different style.. if my app use MapTool tiles and other default styled tiles, then the map looks horrible ![]() Conclusion... the best way could be the own directory with tiles only for my app, with variable containing their availability. OR just switch between online map and offline MapTool pro map... But... I´m still trying to get managed this using more elegant way... |
|
01/23/2013, 02:53 AM
|
#1214 (permalink) |
|
Homebrew Developer
![]()
Posts: 405
|
BINGO! I found the most elegant way how to do smart caching! If some thing can´t do from front... you can always to try it from back
and this is the right way now ![]() Instead of check if the tile is in cache and then make decision to load cached or online tile, what is impossible with async call, I just at first set hard path to all tiles from cache. If the tile is in cache, it shows and vice versa. Then I do the check if the tile is in cache and if not, the tile is downloaded on the background and at the same time, I change the same tile source path to online path and the tile is refreshed. All this can be asynchronous and works well. Only it tooks a bit longer to show uncached tiles, but cached tiles are loaded immediatelly and thats the point. It was a hard work, because for direct acces to tile div, I had to rewrite all the OSM background (again) from ImageMapType to CustomMapType... It is sooooo neat to have offline tiles... sadly that this can´t be done with Google tiles, but that´s the terms. EDIT: just added the floppy disc icon for tiles, which are downloading for user information until the tile is saved Last edited by 72ka; 01/23/2013 at 03:12 AM. |
01/23/2013, 03:25 AM
|
#1215 (permalink) |
|
Member
![]()
Posts: 864
|
Congratulations! By the way, yesterday I discovered you were also into music some time go. Also, that you, you consider yourself an "INTJ", which I didn't have an idea of what it was, but after some reading, I think I am too!
Cheers! (what a great place this is!)
__________________
Pre 3 on GSM Movistar: UberKernel, Muffle logging & friends, Mode Switcher, Advanced System Menus & Prefs, and then some more. Proudly choosing the loser side since 1982: Commodore VIC-20, C-64, Amiga 1000 & 3000, bPlan Pegasos & MorphOS, Psion Revo, Palm Pre... |
01/23/2013, 05:10 AM
|
#1216 (permalink) | |
|
Homebrew Developer
![]()
Posts: 405
|
Quote:
funny, it´s not me! My name is Jan Heřman, not Jan Hermann. Just similar names...I hope that nobody can´t find any info about my person, because I´m always trying to protect my personality, it means, no social networks, no photos, no info about my relatives. I use internet as tool, not as book where I can save everything about me. |
|
01/23/2013, 06:59 AM
|
#1217 (permalink) | ||
|
Member
![]()
Posts: 864
|
Quote:
Quote:
By the way, the other day I discovered that, actually, I'm on Facebook: There's a guy there whose name is exactly the same as mine. So now I can finally end discussion with my friends as why I'm not on Facebook: Because I'm already! ![]() PUBS are the social network. For anything else, there's e-mail. (by the way, if somebody finds this too personal and off topic, I can delete my last two posts)
__________________
Pre 3 on GSM Movistar: UberKernel, Muffle logging & friends, Mode Switcher, Advanced System Menus & Prefs, and then some more. Proudly choosing the loser side since 1982: Commodore VIC-20, C-64, Amiga 1000 & 3000, bPlan Pegasos & MorphOS, Psion Revo, Palm Pre... |
||
01/23/2013, 08:03 AM
|
#1219 (permalink) |
|
Member
![]() |
Is the second toggle primarily for use if you also have MapTool installed and use it (and therefore may have cached tiles already in it)? The tiles would then be shared between the two apps? I confess I haven't been following the thread as very close recently, so I apologize if you already explained it.
__________________
Matt Williams Developer of: SMS Auto Forward/Reply, GPS Viewer, Keyring converters for CSV, eWallet, & CodeWallet Touchpad Patches: Keyring HD, ClassicNote HD, YouTube HD (for 2.1 app) |
![]() |
|
| Thread Tools | |
| Display Modes | |
|
|



