Hi,
we are interested in using this SDK to have offline map.
What is the simpler way to get the needed JAR file of the area?
We would like to use CloudMade stylised map.
Or maybe should I ask it to them?
Thanks for your help.
Hi?
I have followed the example from cloudmade sample map,but when I run my app i get a red screen what could be the problem.I have key from cloudmade and also from Nutiteq here is a portion of my code
mapItem = new MapItem("Map", "ec8ce6abb3e952a85b8551ba726a12274bf3ba82c54b48.44943243", this, 300, 150, new WgsPoint(24.764580, 59.437420), 12);
mapItem.setMap(new CloudMade("57dfd21545274059869ff5ccb155d69c", 64, 1279));
mMainForm = new Form("Hello map");
mMainForm.append(new StringItem(null, "Hello, map!\n"));
mMainForm.append(mapItem);
mMainForm.addCommand(new Command("Exit", Command.EXIT, 0));
mMainForm.setCommandListener(this);
mapItem.startMapping();
Can anyone please help me?
CloudMade API has changed. Please use latest beta version of SDK from http://nutiteq.com/beta/lib and also code has one minor change. You should provide end-user ID as String (generated automatically or from device), and provide this as parameter to CloudMade map also. Something like:
mapItem.setMap(new CloudMade("57dfd21545274059869ff5ccb155d69c", 64, 1279,endUserId));
For license/permission you should ask from them first. To get the map files (for jar file) we have a tool to make it easy: you define area and zoom range, and it downloads all needed tiles from CloudMade. Email to support@nutiteq.com to get URL of it.
/JaakL