我必须创建Mapbox Route对象。我需要在Mapbox导航SDK中使用第三方路线数据(例如:Google,Bings ..),而无需使用Mapbox的Direction API。在Android中,我们可以使用DirectionsRoute.Builder进行创建,但是在iOS中,我必须为此创建JSON(字典)。 像
let route = MapboxDirections.Route.init(json: json, waypoints: wayPoints, options: roptions);
有什么方法可以创建没有任何JSON的Route对象?