![]() |
Re: Plans for Maemo Mapper v2.0
Quote:
|
Re: Plans for Maemo Mapper v2.0
I can only imagine that the next version will be selling even more hardware. As I was researching prior to buying my n800, this was the program that put opened the wallet. I have enjoyed it very much so far, and will continue too, I am sure. I like the database approach, especially when scanning the "disks", etc. I think it will increase performance in other applications.
Otherwise, keep up the good work! Even my wife likes it, and seeing she is not a gadget nut that is saying a lot. Regards, Thor |
Re: Plans for Maemo Mapper v2.0
Like a lot of other folks on this thread, I want to start off by saying thank you for the app and all of your wonderful support. It truly makes the n800 an indispensable tool. My friends always marvel "that thing does GPS too!" Yup, thanks to our good friend Gnuite!
My $0.02 cents would be to have mapper temporarily override any other running program when a waypoint was approached, come to the foreground and mute other apps (ie. Canola or media player) so that the upcoming directions could be heard/seen, then resume business as usual (send mapper back to it's original state and unmute apps). Aside from that, perspective and rotational maps would be killer, but I LOVE the program as is, so anything above and beyond that is fine with me. I'm probably one of the few that doesn't really care how the db is managed. As long as I can still download maps of anywhere in the world (via virtual earth or google) my needs are most definetly covered. |
Re: Plans for Maemo Mapper v2.0
Quote:
First off Hi gnuite, Outstanding effort with this program! It works very well. I saw this thread this morning and have been thinking about my response all day. Sorry if I'm a bit late to the party. I have been using Navicore for the past week or so and as far as a paradigm shift with your program goes it has already happened for me. I found that both apps can share the BT GPS receiver concurrently. What this means to the user is that by simply switching tasks you get two views of the road ahead. In this role Maemo Mapper is very good companion software for Navicore and in fact makes the N800 an in car navigator that has features no one else offers. I can rely on Navicore for detailed street views, rerouting, and voice directions and use M/M for tracking where I've been, a north oriented street map to show what roadways lie ahead, and my position in relationship to pre-loaded poi's. I do like the idea of a stand alone converter for a DB. As it is right now I have one drive pretty much dedicated to M/M because of its format. Being able to construct a personal DB is also a plus because now with Navicore's detailed street maps on board I am using M/M mostly at zooms above 4, for level 4 and below I use the hybrid satellite maps as they may show landmarks that will help during the trip. I download them to a separate cache then merge them together later. It sounds like this converter will allow me to continue doing this. It occurred to me that by going in the direction as competition for existing navigators you may always find yourself behind the curve as far as users go and will be bombarded with requests to make the program act like the latest commercial offering. Rather than going that route I was hoping that M/M's direction would be more toward on-line connectivity and public POI DB's. That is, having the ability to connect and find POI's based on simple search criteria like "plumber" followed by a zip code and have the program plot all the plumbers on the map along with their addy's and phone numbers. Or when no zip code is given it returns all plumbers within the current map view. Functions like these would make M/M and the N770/800 quite the travel aid. Examples of Goggle's efforts for WinMo and Palm can be found here >> http://www.google.com/gmm/index.html J2ME jar file here >> http://my.opera.com/yodude/blog/show.dml/375005 Whatever happens... rock on dude. You have made my N800 more enjoyable to use and as I use it more and more that means a lot. http://www.clicksmilies.com/auswahl/ernaehrung004.gif |
Re: Plans for Maemo Mapper v2.0
Quote:
|
Re: Plans for Maemo Mapper v2.0
Hi,
One feature that I would like to see (and it may already be implemented, and I haven't noticed it) is the ability to specify the main locations to pass through. What I mean is that I want to go from point A to point D, but I want to vistit points B and C along the way. This something like Google's new Add Destination feature. This way I can get a map that goes to all of the places I want to see. To date, I have been adding multiple routes to do this, but I think it would be simpler if this information could be input in a simpler fashion. Thanks |
Re: Plans for Maemo Mapper v2.0
I think the best addition to v2 would be an enhancement to the route generation capability. Right now, everything depends on your server - a backup server, perhaps on maemo.org would be useful. Also, the program is effected by any changes to the directions file generated by google. (This happened twice in the last few weeks.) Perhaps the gpx file generator could be made more robust, or maybe you could have a program running on your server that regularly downloaded a test route. While this won't fix anything, it would alert you to the problem, and allow for a better error message.
The program is great as is. I drove 1800 miles over the last 3 weeks, and the only hiccup was with the route generation. Howard |
Re: Plans for Maemo Mapper v2.0
Quote:
That should give you what you want, and you never have to enter any addresses more than once. |
Re: Plans for Maemo Mapper v2.0
Quote:
For v2, I am considering trying both: implement the parser internally and try that first, and if that doesn't work, try the web service. Quote:
Downloading a test route occasionally is a good idea, though, and I've been meaning to set it up for some time. |
Re: Plans for Maemo Mapper v2.0
routing and auto-rerouting without needing network access. ie. the device does the routing itself. not sure how this can be done, since its raster maps.
|
Re: Plans for Maemo Mapper v2.0
Quote:
|
Re: Plans for Maemo Mapper v2.0
Here is an idea.
Make in the db where you want to keep the map tiles two tables. one coordinates and CRC of the image tile and in the second table the CRC of the image and the image. This way you can exclude duplicates, we'll have only one tile that is blue... or white... or whatever. you make the CRC as a unique key in the images table. when you insert, you insert in both tables, in the image table the insert will fail (if the CRC is already there). this way you won't have to check if the image is already in the table before inserting. What do you think? -ioan |
Re: Plans for Maemo Mapper v2.0
Quote:
|
Re: Plans for Maemo Mapper v2.0
Maemo Mapperi is great because as far as I know it is currenlty the only available native WMS-client for maemo platform. And WMS allows me to serve my own maps quite easily. Plans for db-utilization sound great, expect that features of PostGIS are perhaps too far from here.
WFS-support for MM would be nice :rolleyes: |
Re: Plans for Maemo Mapper v2.0
Quote:
Or, if there's some fast way to detect if an image is just a single color one while retrieving it, avoid storing it in the database and store just the corresponding color information. So, imagine a table with fields: coordinates | display "display" is a short string: when it does begin with "#", the value is considered as a color (to render a monocolor tile for that coordinates), otherwise it is considered as the id of the image to render (picking it from a second table with fields: id | image). |
Re: Plans for Maemo Mapper v2.0
I did a test with creating a table just for the tile image and the crc32, the table looks like this:
CREATE TABLE testtable ([crc32] VARCHAR (8) PRIMARY KEY UNIQUE, [maptile] BLOB COLLATE NOCASE); I didn't do anything for coordinates, nothing special to see there. I ran the test on 213304 map tiles, and at the end, in the database I had 135417 unique tiles (77887 were duplicates!). The 213304 tiles on my computer use 897MB (size on disk), and the database, after excluding the duplicates is about 290 MB. I used sqlite3. -ioan |
Re: Plans for Maemo Mapper v2.0
Quote:
|
Re: Plans for Maemo Mapper v2.0
Quote:
http://ioanghip.googlepages.com/crc.jpg the caption shows the number of processed files, the list, first field is the size, the second how many duplicates with that size... I suppose on windows we have 106 bytes not 103. -ioan |
Re: Plans for Maemo Mapper v2.0
Any plans for adding a Golf Course GPS program that would allow for course maps to be built, shared or downloaded from a respository? Possibly a program similar to Sky Caddie. This would be a superb mapping application.
I really appreciate your present Maemo Mapper program and look forward to version 2.0 |
Re: Plans for Maemo Mapper v2.0
Quote:
Google Streets: 103 bytes Virtual Earth Streets: 106 bytes Virtual Earth Satellite or Hybrid: 1652 bytes Among my Google Satellite downloads, I have a lot of duplicate 1755 byte files, which in fact are NOT maps, even though they commonly appear clustered in featureless ocean areas. (Some of the true satellite map files are actually smaller.) Opening these files as text reveals the following HTML error page, saved under the target JPG filename: Code:
<html> |
Re: Plans for Maemo Mapper v2.0
John, do you have any plans on when to release it? (I know, I'm running a bit too fast ;) )
Omar |
Re: Plans for Maemo Mapper v2.0
Quote:
|
Re: Plans for Maemo Mapper v2.0
An important feature to add would be the ability to import maps. I have been able to get a very good map of my area from a government agency, but was unable till now to import it to maemo mapper. I mean.. i did important, but aligning it is impossible. The only way I can imagine of being able to align a map would be to go to a place with a gps receiver, and pointing on the map where you are.. then drive some 50 miles, opening the same map, and pointing once again where you are located. The application would then calculate the scale and align the map accordingly. Resizing may not really be a requirement as the application would know what scale the map is using and calculate using that scale. The current fixed increments are too restrictive. The way it works right now makes importing large scale maps from alternative sources virtually impossible.
|
Re: Plans for Maemo Mapper v2.0
Quote:
|
Feature Request
New POI Category: WiFi Locations. The extra Caveat? MM plots the coordinates of WiFi locations you've entered as a POI location, and when inside 200 ft from any angle or direction of any WiFi-labelled POI, MM connects your N800 to that WiFi automatically, and beeps to warn that you've entered a WiFi hotspot. Just driving through an area would allow you to be reminded that a hotspot is nearby, giving you the option of stopping at it to send emails or update the RSS reader.
|
Re: Plans for Maemo Mapper v2.0
The important feature for me is autosave current track. May be every 10(20|30) sec. ?
|
Re: Feature Request
Quote:
|
Re: Plans for Maemo Mapper v2.0
Quote:
|
Re: Feature Request
Quote:
There's a way to do that and let MM remain strictly an application program. Suppose there were a number of ways for MM to signal that it's near a particular POI or class of POIs, such as play a sound, pop up a little window that describes the POI, or run another program. You could choose to have MM run the "Select Connection" program. |
Re: Feature Request
Quote:
1. Importing a POI database of "unknown" wifi hotspots, so that one could connect to hotspots not yet encountered. 2. Adding this functionality to the 770. 3. Not having to wait for the N800's "periodic attempts" - getting immediate connection when you are within range. Besides the ethical (and legal) issues of #1, these advantages (except maybe for #3) require functionality that should be implemented in a separate, possibly-background application. #3 is just not worth incorporating such complex functionality into Maemo Mapper - how much are you going to be able to download when passing a wifi hotspot on the road? Now, this doesn't disallow the possibility of Maemo Mapper providing some indication of the presence of a nearby POI - talmage's suggestion is certainly a good one. It's feasible that a popup or sound could be presented when you near a POI (such as a hotspot, or a gas station) within a certain radius. This would notify you of a nearby hotspot, at which point you could utilize the rest of the device's capabilities to connect to the hotspot and download whatever you like. |
Re: Feature Request
Quote:
Making the "POI nearby" selectable by type of POI wiuld be great! |
Re: Plans for Maemo Mapper v2.0
hi gnuite. i love you're program and i like your ideas for 2.0. i'm interested in hearing how you plan to implement rotation and perspective.
i also have a few ideas for 2.0: - allow importing large images (scanned maps for instance) into the map database. when importing it would ask for a couple lat/long points within the image for calibration and could crop & scale for various zoom levels. - fix the crash that occurs when the gps is turned off while connected to maemo mapper - consider breaking maemo-mapper.c into multiple files. at nearly 15000 lines of code, people may be less intimidated to help on the project if it were more modular. mike morrison |
Re: Plans for Maemo Mapper v2.0
Quote:
Quote:
Quote:
Quote:
Thanks for the feedback. |
Re: Plans for Maemo Mapper v2.0
i found a minor bug in mm. when you have a "&" ampersand in the name of a POI, an click on the POI to display its name, you only get the "i" icon, and not the name of the POI. replacing the "&" with "and" will display the name of the POI.
|
Re: Plans for Maemo Mapper v2.0
Quote:
|
Re: Plans for Maemo Mapper v2.0
This might be slightly off topic, if so I appologize - I'm new to the n800 and gps functionality.
Anyways.. Does MaemoMapper offer any sort of waypoint creation stuff via the camera? I'm interested in being able to use the gps data to mark when/where I took a picture or video (I'm off on an expedition with my new n800 to explore some mayan ruins and it'd be awesome to be able to easily take that kind of 'notes' without having to mess with the on screen keyboard etc). If there's some other type of software that does that then I appologize for intruding on the thread. Thx, Fer |
Re: Plans for Maemo Mapper v2.0
Problem with the latest Maemo Mapper. Finally got my GPSlim236 and tested it out had the program up and quit on me twice.
|
Re: Plans for Maemo Mapper v2.0
Quote:
|
Re: Plans for Maemo Mapper v2.0
This is by far my top used app on my 770. One thing I would like to see is a distance count-down window to each way point. I know you can do that by clicking on the waypoint, but that's hard to do when driving and I find flite to be hard to understand plus it seems to cause stability problems for me.
On another note, while I look forward to version 2.0 and probably giving another monetary donation on top of that, I also hope the original design concept of mameo mapper stays in tack in terms of being a quick, small and nibble application and doesn't grow to include a ton of features that maybe 1% of people asked for but 99% us will never be used. While the golf course suggestion was a nice idea I believe this falls in to my prior statement. With all the ideas and suggestion that seem to come in for Maemo mapper, maybe it would be a good idea to create a poll to see which one's people are looking for the most and concentrate on those initially; my 2 cents. |
Re: Plans for Maemo Mapper v2.0
I don't really have anything to say/suggest other than I have no issues with a total change of the way it stores maps, and to simply thank you for your time and effort in creating meamo mapper. Which is by far the best and most used application on my n800 and I wish you all the best with 2.0
|
All times are GMT. The time now is 21:10. |
vBulletin® Version 3.8.8