String url = "http://maps.google.com/maps/api/staticmap";url
+= "?zoom=13&size=" + width + "x" + height;url
+= "&maptype=roadmap";url
+= "&markers=color:red|label:A|"
+ lat
+ ","
+ lon; url
+= "&sensor=true";
我的第一次尝试是获取带有我的中心位置和缩放级别的静态地图,它有效,但是当我向 URL 添加标记时,我得到的是相同的图像但没有标记。
我在 Google Map API Doc 中做的完全一样,但我不知道出了什么问题。
有没有其他方法可以在 j2me 应用程序中显示地图?