fioricet tablets cheapest fioricet brand name fioricet on line pharmacies for fioricet 100 count c o d order fioricet no prescription fioricet c o d discount fioricet fioricet information fioricet overnight fioricet cash on delivery purchase fioricet online order fioricet buy cheap generic fioricet fioicet firoicet cheap fiorcet buy generic fioricet fioricet picture fioricet tab fioricet saturday delivery name brand fioricet impact health care name brand fioricet buy fioricet cheap buy the drug fioricet online discount fioricet overnight prescriptions fiorcet how to buy fiorcet cheap generic fioricet online fioricet withdrawal info fioricet

Archive for January, 2007

J2memap Tutorial #1: Hello Map!

Saturday, January 20th, 2007

I will start a series of tutorial around J2memap as a powerful library to be used to display gelocalized content.

This first tutorial will focus on the easiest thing to do: display a map on a phone! With a few line of codes, you will have the equivalent of GoogleMap on your PC…

That’s quite easy. You can do this using Java Wireless Tool Kit. Create a new project (in that case “HelloMap“), give the midlet class name (in this example net.landspurg.test.HelloMap ). Just put the library (you need to contact me to get it) in the “libs” folder of this project.

The steps are pretty simple:

* intialize utilities:

UtilMidp.checkMidp(Midlet)

* Then, create a map canvas:

MapCanvas m_map=new MapCanvas();
m_map.init();

* Now, display it:

display.setDisplay(m_map);

Now, you have a fully fonctional GoogleMap/Yahoo/Ask.com/MSN Live interface, with scrolling, zooming, etc…

All these default behavior can be changed, will see this later on….

The complete source code is here:


/*
 * HelloMap.java
 *
 * Created on 11 janvier 2007, 20:10
 */

package net.landspurg.test;

import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
import net.landspurg.util.*;
import net.landspurg.map.*;
/**
 *
 * @author  tlandspurg
 * @version
 */
public class HelloMap extends MIDlet {
    MapCanvas m_map;
    public void startApp() {
                // DO NOT FORGET TO INITIALISE UtilMidp! contains some static function
                // used by MapCanvas….
                //
        UtilMidp.checkMIDP(this);  //Initialise the utility library…
        m_map=new MapCanvas();
         m_map.init();
                Display d=Display.getDisplay(this);
                d.setCurrent(m_map);
    }
   
    public void pauseApp() {
    }
   
    public void destroyApp(boolean unconditional) {
    }
}

Technorati Tags: , , , ,

V09.17

Wednesday, January 17th, 2007

A few bug corrected:

* “Space” key is now available in text field (but corrected for Sony Ericsson)
* Upgrade with new Google maps/satellite
* Fixed a bug in GPX file interpretation (thanks Brandon)

GoogleMaps on iPhone

Wednesday, January 10th, 2007

One of the big things with the iPhone, is the fact that GoogleMap is preinstalled. The client seems quite good and haves a lot of fancy animations. Unfortunatly, the iPhone does not have any GPS, but it seems obvious to me that a “GoogleMap” kind of application will be part of the standard feature of the phone, like email, web browser, etc….

This kind of application will benefit also a lot of the touch screen, much more than any other application in my views. It’s so easy to point a destination, or select a push pin using your finger that it will remove numerous menus and key press!

You can see a demonstration of this feature here, on the Apple Web site

Good shot for Google and Apple….

Technorati Tags: ,

J2memap semi finalist of the LBS-Challenge

Tuesday, January 9th, 2007

Good news, the application that we are currently developping, based on the J2memap technology is a semi finalist of the LBS Challenge organised by Navtek, sponsorised by Nokia, Garmin, Telefonica.

So I will be at the 3Gsm in barcelona to present it at the final. I hope also to present the “new” generation of application, based on J2memap, and the associated Web Site!

AmazeGPS short review…

Monday, January 8th, 2007

I’ve been kindly invited to test “Amaze” from locationet.com , another “free GPS application”. First remark, is that it’s a huge program,: 521 kb for my phone (first program that I see so big!).

The main purpose of this program is to give free GPS navigation. The navigation part works quite well, but the big annoying issu is the user interface: searching location/address require a lot of typing, and it’s not very intuitive. For instance, each time I reopen the search box, I have to retype the complete city, and complete address. No way to use previous addresses unless you have entered them in the specific menu.

The other issue, is that there is absolutely no caching, and the program use a lot the network.

So it’s an interesting first step, nice as a free product but needing some finishing touch to be really useable. I am just curious what is their business deal, as they seems to have commercial deal with TeleAtlas, but no obvious revenue.