Fixed typo in flatbuffers: longitute -> longitude.

This commit is contained in:
Denis Chaplygin
2019-08-26 14:31:51 +03:00
parent b8182dd7ff
commit 0be87c73cf
6 changed files with 14 additions and 14 deletions
+1 -1
View File
@@ -72,7 +72,7 @@ module.exports = function () {
var fb = FBResult.getRootAsFBResult(buf);
var location = fb.waypoints(0).location();
coord = [location.longitute(), location.latitude()];
coord = [location.longitude(), location.latitude()];
var got = { in: row.in, out: row.out };