Skip to content

Commit 0181bee

Browse files
author
David Collins
authored
Merge pull request #87 from GabrielePrestifilippo/patch-1
Fixed missing parenthesis in toString
2 parents 7cee62f + b7530e0 commit 0181bee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/geom/Position.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,8 +196,8 @@ define([
196196
*/
197197
Position.prototype.toString = function () {
198198
return "(" + this.latitude.toString() + "\u00b0, " + this.longitude.toString() + "\u00b0, "
199-
+ this.altitude.toString();
199+
+ this.altitude.toString() + ")";
200200
};
201201

202202
return Position;
203-
});
203+
});

0 commit comments

Comments
 (0)