Rev 1563 | Rev 1568 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1563 | Rev 1565 | ||
---|---|---|---|
Line 64... | Line 64... | ||
64 | public static void main(String[] args) { |
64 | public static void main(String[] args) { |
65 | GPSPosition upperLeft = new GPSPosition(); |
65 | GPSPosition upperLeft = new GPSPosition(); |
66 | GPSPosition lowerRight = new GPSPosition(); |
66 | GPSPosition lowerRight = new GPSPosition(); |
67 | GPSPosition highlight = new GPSPosition(); |
67 | GPSPosition highlight = new GPSPosition(); |
Line 68... | Line 68... | ||
68 | 68 | ||
69 | upperLeft.setLatitude((int)(47.327450 * 1E7)); |
69 | upperLeft.setLatitude(47.327450); |
Line 70... | Line 70... | ||
70 | upperLeft.setLongitude((int)(8.521657 * 1E7)); |
70 | upperLeft.setLongitude(8.521657); |
71 | 71 | ||
72 | // * l/r: geotagged geo:lat=47.321749 geo:lon=8.534403 |
72 | // * l/r: geotagged geo:lat=47.321749 geo:lon=8.534403 |
Line 73... | Line 73... | ||
73 | lowerRight.setLatitude((int)(47.321749 * 1E7)); |
73 | lowerRight.setLatitude(47.321749); |
74 | lowerRight.setLongitude((int)(8.534403 * 1E7)); |
74 | lowerRight.setLongitude(8.534403); |
75 | 75 | ||
Line 76... | Line 76... | ||
76 | // geotagged geo:lat=47.324614 geo:lon=8.528202 |
76 | // geotagged geo:lat=47.324614 geo:lon=8.528202 |
77 | highlight.setLatitude((int)(47.324714 * 1E7)); |
77 | highlight.setLatitude(47.324714); |
Line 78... | Line 78... | ||
78 | highlight.setLongitude((int)(8.528102 * 1E7)); |
78 | highlight.setLongitude(8.528102); |