Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | 1x 1x 1x 1x 1x 1x 1x | /** * Single Route Instruction object. * * @property {String} code - Instruction code : * * - "F" : Straight forward * - "B" : U-turn * - "L" : turn left * - "R" : turn right * - "BL" : turn left strongly * - "BR" : turn right strongly * - "FL" : turn lightly to the left * - "FR" : turn lightly to the right * - "round_about_entry" : round about entry * - "round_about_exit" : round about exit * * @property {String} instruction - Instruction text : translated code + street name * @property {Object} geometry - Geometry (expressed in [GeoJSON]{@link http://geojson.org/}) of the street. * @property {Float} distance - Length of the instruction. Expressed in km or m, depending on distanceUnit parameter. * @property {Float} duration - Instruction duration in seconds. * * @namespace * @alias Gp.Services.Route.RouteInstruction */ function RouteInstruction () { Iif (!(this instanceof RouteInstruction)) { throw new TypeError("RouteInstruction constructor cannot be called as a function."); } this.duration = null; this.distance = null; this.code = null; this.instruction = null; this.geometry = null; // FIXME can be null if option 'geometryInInstructions' is false ! } RouteInstruction.prototype = { constructor : RouteInstruction }; export default RouteInstruction; |