谁能告诉我如何在黑莓应用程序开发中使用谷歌地图而不是黑莓地图?
问问题
11064 次
3 回答
9
最近我有了一个使用Browser.Field中的Google Maps 网站的想法,但这是不可能的,因为 GMaps 基于 JavaScript 并且黑莓本机浏览器对它的支持很差。
实际上有两种在黑莓上使用谷歌地图的方法:
- 安装Google Maps Mobile应用程序(参见使用示例)
- 使用Google Static Maps API根据设备请求生成和发送图像。这将需要服务器端实施并注册 Google Maps API
于 2009-10-07T12:03:39.413 回答
0
这是一个小例子:
查看谷歌地图静态图片的表单:
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());
}
}
}
}
开始下载的 Button 动作和加载表单以查看图像的回调动作
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();
}
}
优化和编辑代码,使其符合您的需求。我花了一些时间才把它弄好。
于 2012-01-24T20:53:27.700 回答
0
现在可以使用谷歌地图而不是黑莓地图来处理我们自己的数据,就像图像中一样。
如果您希望使用谷歌地图来显示您自己的位置/标记,您可以ApplicationDescriptor
从您的应用程序中调用谷歌地图。检查设备上的谷歌地图使用CodeModuleManager.getModuleHandle("GoogleMaps");
它返回一个整数,其中非零表示它可用。然后您可以在KML
文件中添加位置,甚至可以使用 KML 文件标签自定义位置指针。
Max 链接的示例仅允许单个标记。因此,如果要添加多个标记,则需要一个 KML 文件。
您可以在此处查看针对初学者的简单教程。
于 2013-05-28T15:31:05.220 回答