0

I have to include the google map API in j2me application. I want to change the route and change the center position dynamically. I have searched a lot. Now I am using google static map API but it shows the image statically. I want to show the map dynamically.

   Using javascript API v3  shall I implement google map API in j2me. But one of forums I have found we can't use javascript API in j2me application. Please Give clear idea about this why we can't implement in j2me.
seipl
  • 11
  • 3

2 Answers2

0

I haven't taken a deeper look, but I found these two links when searching Google.

http://www.developer.nokia.com/Community/Wiki/Archived:Google_Static_Maps_API_in_Java_ME http://www.jappit.com/blog/midmaps-google-maps-java-me-library/

mr_lou
  • 1,910
  • 2
  • 14
  • 26
0

Whereas it is technically possible to use a static mapping API to display an map in Java ME, If you want to dynamically update the map, you would be much better off using a library which uses a tile server, caches your map tiles and overlays objects on top of it.

This should result in a much lower data traffic overhead as explained here. Only use a Map Image API if all you need is a single map image.

The dynamic mapping library I would suggest is Nokia's HERE Maps API for Java ME, as you can tell from the name, the API is specifically designed to work with Java ME devices.

The API is currently bundled with the Nokia Asha SDK 1.0, but despite this, it is in reality a separate independent plugin and has been designed to work with the full range of standard Java ME devices.

A similar Stack Overflow question answered here describes how to download it.

As a notice of affiliation, I should mention in passing that I do work for Nokia.

Community
  • 1
  • 1
Jason Fox
  • 5,115
  • 1
  • 15
  • 34