How to get Location Using Location API JSR 179

/*
    * This Midlet is for getting the lat, lon and country info.
    @ author Senthil
*/
 
import javax.microedition.midlet.*;
import javax.microedition.lcdui.*;
import javax.microedition.location.*;
 
public class LocationMidlet
extends MIDlet
implements CommandListener
{
 
    Command Exit = new Command("Exit", Command.EXIT, 0);
    private StringItem location = new StringItem("/n Location:", "");
    public QualifiedCoordinates qc;
 
    public LocationMidlet()
    {
    }
 
    public void startApp()
    {
Form f = new Form("Location Demo");
f.append("Finding for location.../n");
f.addCommand(Exit);
f.setCommandListener(this);
Display.getDisplay(this).setCurrent(f);
try
{
    Criteria c = new Criteria();
    c.setHorizontalAccuracy(500);
    c.setVerticalAccuracy(500);
    c.setPreferredPowerConsumption(Criteria.POWER_USAGE_LOW);
    LocationProvider lp = LocationProvider.getInstance(c);
    Location loc = lp.getLocation(60);
    qc = loc.getQualifiedCoordinates();
    AddressInfo adinfo = loc.getAddressInfo();
    String place = "";
    if (adinfo != null)
    {
place = adinfo.getField(AddressInfo.COUNTRY);
    }
    f.append("Address: " + place + "/n");
    f.append("Alt: " + qc.getAltitude() + "/n");
    f.append("Lat: " + qc.getLatitude() + "/n");
    f.append("Long: " + qc.getLongitude() + "/n");
}
catch (Exception e)
{
    f.append("Exception: " + e);
}
    }
 
    public void pauseApp()
    {
    }
 
    public void destroyApp(boolean destroy)
    {
    }
 
    public void commandAction(Command c, Displayable s)
    {
if (c == Exit)
{
    destroyApp(true);
    notifyDestroyed();
}
    }
}

 

URL:http://wiki.forum.nokia.com/index.php/How_to_get_Location_Using_Location_API_JSR_179

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值