I need to create a route in my mobile app, using the GPX route I received from the server. I couldn't find any guides on the official skobbler site, nor on the web.
This is what I tried, but failed
SKGPSFileElement* gpxFile;
gpxFile.type = SKGPSFileElementGPXRoute;
gpxFile.name = @"route";
gpxFile.extensions = @"gpx";
[[SKRoutingService sharedInstance] calculateRouteWithSettings:nil GPSFileElement:gpxFile];
Any hints?