谁能告诉我如何使用谷歌地图在黑莓应用程序的开发,而不是黑莓地图?
Answer 1:
最近我有一个主意,用谷歌地图网站从Browser.Field但由于GMaps是基于JavaScript这是不可能的,它的严重黑莓自带浏览器的支持。
其实有在BlackBerry上使用谷歌地图的2种方式:
- 安装谷歌手机地图应用程序(参见例如使用 )
- 使用谷歌静态地图API生成和设备请求发送图像。 这将需要在服务器端执行,并注册了谷歌地图API
Answer 2:
这里是一个小例子:
形式查看谷歌地图静态图片:
public class frmMap extends Form implements CommandListener {
Command _back;
MIDlet midlet;
Form dis;
public frmMap(String title, ImageItem img, MIDlet m, Form d){
super(null);
this.midlet = m;
this.dis = d;
_back = new Command("Back", Command.BACK, 1);
addCommand(_back);
append(img);
setCommandListener(this);
}
public void commandAction(Command c, Displayable d) {
if(c == _back){
Display.getDisplay(midlet).setCurrent(dis);
}
}
}
类INET类下载静止图像:
public class INETclass implements Runnable {
private String _location = null;
private HttpConnection inet;
private Pispaal _m;
public String url = null;
public INETclass(String location, Pispaal m){
_location = location;
_m = m;
}
public void run() {
try
{
//Setup the connection
inet = (HttpConnection)Connector.open(url);
inet.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
int rc = inet.getResponseCode();
//Responsecode controleren
if(rc == HttpConnection.HTTP_OK){
//Open input stream to read the respone
DataInputStream is = new DataInputStream(inet.openInputStream());
StringBuffer sb = new StringBuffer();
int ch;
long len = -1;
byte[] buffer = null;
if(_location == null){
len = is.available();
}
if(len != -1){
if(_location == null){
buffer = IOUtilities.streamToBytes(is);
}else{
while((ch = is.read()) != -1){
sb.append((char)ch);
}
}
}
is.close();
if(_location == null){
_m.OnINETComplete(buffer);
}else{
_m.Alert(sb.toString());
}
}else{
_m.Alert("URL " + url + " geeft response code: " + rc);
try
{
inet.close();
}catch(Exception e){
_m.Alert("Error: " + e.getMessage());
}
}
}
catch(Exception e)
{
_m.Alert("Error: " + e.getMessage());
System.out.println("Error: " + e.getMessage());
}
finally
{
try
{
if(inet != null){ inet.close(); }
Thread.currentThread().join(); //Making sure this thread dies
}catch(Exception e){
_m.Alert("Error: " + e.getMessage());
System.out.println("Error: " + e.getMessage());
}
}
}
}
启动加载的形式查看图像下载和回调操作的按钮动作
public void commandAction(Command c, Displayable d) {
synchronized(c){
String loc = _location.getText();
if(loc.indexOf(",") > 0){
//if(c == _strCommand){
//INETclass inet = new INETclass(loc, this);
//Thread tInet = new Thread(inet);
//tInet.start();
//Alert("Locatie word doorgestuurd. Even geduld");
//}else
if(c == _mapView){
INETclass inet = new INETclass(null, this);
inet.url = "http://www.qeueq.com/gmap.php?location=" + this.lat + "," + this.lon + "&size=" + this.width + "x" + this.height + ";deviceside=true";
Thread tInet = new Thread(inet);
tInet.start();
}
}else{
Alert("GPS locatie is nog niet beschikbaar.");
}
}
}
public void UpdateLocation(double lat, double lon){
String location = lat + "," + lon;
this.lat = lat;
this.lon = lon;
synchronized(location){
_location.setText(location);
INETclass inet = new INETclass(location, this);
Thread tInet = new Thread(inet);
tInet.start();
}
}
缩小,所以它适合您的需要编辑代码。 我花了一些时间来得到它的权利。
Answer 3:
现在可以在图像中使用谷歌地图,而不是黑莓地图与我们自己的数据等。
如果你正在寻找使用谷歌地图,以显示自己的位置/标记,你可以使用调用谷歌地图ApplicationDescriptor
从您的应用程序。 检查用于使用设备上的谷歌地图CodeModuleManager.getModuleHandle("GoogleMaps");
它返回一个整数,其中非零意味着它是可用的。 然后你就可以在你的添加位置KML
文件,你甚至可以使用自定义的KML文件标记位置的指针。
的例子如由最大连接只允许一个单一的标志物。 因此,如果多个标记将被添加KML文件成为必要。
你可以看一下简单的教程这里适合初学者。
文章来源: Use Google Map in Blackberry application