Skip to content

Commit

Permalink
Fixed altitude constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
MPriess committed Dec 9, 2015
1 parent 8ade572 commit 4710d68
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/geojson/geometry/Point.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public Point(double longtitude, double latitude, double altitude) {
coordinates = new double[3];
coordinates[0] = longtitude;
coordinates[1] = latitude;
coordinates[2] = latitude;
coordinates[2] = altitude;

}

Expand Down

0 comments on commit 4710d68

Please sign in to comment.