PMManeuver
data class PMManeuver(val coordinates: PMGeoCoordinates? = null, val maneuverType: PMManeuverType, val distance: Int = 0, val distanceFromStart: Int = 0, val road: PMRoad? = null, val nextRoad: PMRoad? = null, val exitNumber: String? = null, val roundaboutExit: Int = 0)
Represents information about maneuver on the route
Constructors
Link copied to clipboard
fun PMManeuver(coordinates: PMGeoCoordinates? = null, maneuverType: PMManeuverType, distance: Int = 0, distanceFromStart: Int = 0, road: PMRoad? = null, nextRoad: PMRoad? = null, exitNumber: String? = null, roundaboutExit: Int = 0)