|
| |
"The Location API"
Vol. 8, Issue 10, p. 56
Listing 1
try {
// Creation of a Criteria-Object
Criteria cr = new Criteria();
// Adjusting the horizontal accuracy to 500 meters
// besides that, no standard values are changed
cr.setHorizontalAccuracy(500);
LocationProvider lp = LocationProvider.getInstance(cr);
// Request the location, we are willing to wait for 60 seconds
Location l = lp.getLocation(60);
Coordinates c = l.getQualifiedCoordinates();
if (c != null) {
// use the information...
...
}
} catch (LocationException e) {
// Display an error message
...
}
|
|
All Rights Reserved
Copyright © 2004 SYS-CON Media, Inc.
E-mail: info@sys-con.com
Java and Java-based marks are trademarks or registered trademarks of Sun Microsystems, Inc. in the United States and other countries. SYS-CON Publications, Inc. is independent of Sun Microsystems, Inc.
|