Mobile Map API

MGMaps Lib SDK is professional toolkit to develop mobile mapping applications.
Platforms: iPhone, Android, RIM BlackBerry, Java ME (J2ME)
Download maps API SDK »

Latest news

Last at Thu, 29 Jul 2010 19:38:21
Topic: New maps SDK release 1.1.0
See more news »

Nutiteq on Twitter

6 weeks 1 day ago Nutiteq is proud sponsor of StateOfTheMap 2010 #sotm10

JAR File from CloudMade

3 replies [Last post]
pasdeloup
User offline. Last seen 24 weeks 18 hours ago. Offline
Joined: 02/11/2010

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.

jaak
User offline. Last seen 11 hours 26 min ago. Offline
Joined: 06/19/2008

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

kibnelson
User offline. Last seen 1 week 6 days ago. Offline
Joined: 01/08/2010

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?

jaak
User offline. Last seen 11 hours 26 min ago. Offline
Joined: 06/19/2008

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));

/JaakL