在撰写本文时,我意识到在移动应用程序中使用Google Static Maps API存在一些许可限制…无论如何,我只是出于研究目的而发布它,但我必须警告您注意以下限制:
http://code.google.com/intl/zh-CN/apis/maps/faq.html#mapsformobile
Google Static Maps API快速审核
使用此API,您可以基于URL和一些参数(可以传入以获得个性化地图)来获取图像。 您可以使用缩放,地图类型,图像大小(宽度,高度),地图位置处的标记等来玩。您必须记住一个限制,使用API需遵守每天每位查看者最多只能查询1000个独特(不同)图像请求,其中包含大量图像…但是如果您需要更多图像,还可以使用Premium许可证。 欲获得更多信息:
http://code.google.com/intl/zh-CN/apis/maps/documentation/staticmaps/
好的,我们要做的是:
- 创建一个方法,该方法接收纬度和经度点以及图像的大小作为参数。
- 使用以下网址请求地图图像: http : //maps.googleapis.com/maps/api/staticmap ,并添加一些参数。
- 创建一个Image对象并返回它,以便我们可以在屏幕上显示它。
动手实验室
以下是我们正在谈论的方法。 它具有用于纬度和经度的参数,也用于我们请求的图像的宽度和高度的参数。 可以使用Location API检索纬度和经度,并可以使用Canvas类检索宽度和高度。
public Image getMap(double lat, double lon, int width, int height)
throws IOException
{String url = "http://maps.google.com/maps/api/staticmap";url += "?zoom=15&size=" + width + "x" + height;url += "&maptype=roadmap";url += "&markers=color:red|label:A|" + lat + "," + lon;url += "&sensor=true";HttpConnection http = (HttpConnection) Connector.open(url);InputStream in = null;byte[] imgBytes = null;try {http.setRequestMethod(HttpConnection.GET);in = http.openInputStream();ByteArrayOutputStream bos = new ByteArrayOutputStream();byte[] buffer = new byte[1024];int n = 0;while ((n = in.read(buffer)) != -1) {bos.write(buffer, 0, n);}imgBytes = bos.toByteArray();} finally {if (in != null) {in.close();}http.close();}Image img = Image.createImage(imgBytes, 0, imgBytes.length);return img;
}
如您所见,获取地图图像非常简单。 检索的是纯HTTP请求。
接下来,您可以找到Google静态地图从我家乡的某个位置检索到的图像。
好的,您刚刚看到如果不存在限制,那将是多么简单……您如何看待该限制? 这有点令人困惑,不是吗?
无论如何,我们将需要寻找另一种在我们的移动应用程序上显示地图的方法。
参考:来自Java和ME博客的JCG合作伙伴 Alexis Lopez的Google Static Maps API和JavaME 。
翻译自: https://www.javacodegeeks.com/2012/05/javame-google-static-maps-api.html