mirror of
https://github.com/apache/cordova-android.git
synced 2025-04-03 13:28:06 +08:00
124 lines
4.0 KiB
HTML
Executable File
124 lines
4.0 KiB
HTML
Executable File
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width,height=device-height,user-scalable=no,maximum-scale=1.0,initial-scale=1.0" />
|
|
<meta http-equiv="Content-type" content="text/html; charset=utf-8"> <!-- ISO-8859-1 -->
|
|
<title>PhoneGap</title>
|
|
<link rel="stylesheet" href="../master.css" type="text/css" media="screen" title="no title" charset="utf-8">
|
|
<script type="text/javascript" charset="utf-8" src="../phonegap.js"></script>
|
|
|
|
|
|
<script type="text/javascript" charset="utf-8">
|
|
|
|
var deviceReady = false;
|
|
|
|
//-------------------------------------------------------------------------
|
|
// Location
|
|
//-------------------------------------------------------------------------
|
|
var watchLocationId = null;
|
|
|
|
/**
|
|
* Start watching location
|
|
*/
|
|
var watchLocation = function() {
|
|
console.log("watchLocation()");
|
|
|
|
// Success callback
|
|
var success = function(p){
|
|
document.getElementById('latitude').innerHTML = p.coords.latitude;
|
|
document.getElementById('longitude').innerHTML = p.coords.longitude;
|
|
};
|
|
|
|
// Fail callback
|
|
var fail = function(e){
|
|
console.log("watchLocation fail callback with error code "+e);
|
|
stopLocation();
|
|
};
|
|
|
|
// Get location
|
|
watchLocationId = navigator.geolocation.watchPosition(success, fail, {enableHighAccuracy: true});
|
|
setLocationStatus("Running");
|
|
};
|
|
|
|
/**
|
|
* Stop watching the location
|
|
*/
|
|
var stopLocation = function() {
|
|
setLocationStatus("Stopped");
|
|
if (watchLocationId) {
|
|
navigator.geolocation.clearWatch(watchLocationId);
|
|
watchLocationId = null;
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Get current location
|
|
*/
|
|
var getLocation = function() {
|
|
console.log("getLocation()");
|
|
|
|
// Stop location if running
|
|
stopLocation();
|
|
|
|
// Success callback
|
|
var success = function(p){
|
|
document.getElementById('latitude').innerHTML = p.coords.latitude;
|
|
document.getElementById('longitude').innerHTML = p.coords.longitude;
|
|
setLocationStatus("Done");
|
|
};
|
|
|
|
// Fail callback
|
|
var fail = function(e){
|
|
console.log("getLocation fail callback with error code "+e.code);
|
|
setLocationStatus("Error: "+e.code);
|
|
};
|
|
|
|
// Get location
|
|
navigator.geolocation.getCurrentPosition(success, fail, {enableHighAccuracy: true}); //, {timeout: 10000});
|
|
setLocationStatus("Retrieving location...");
|
|
|
|
};
|
|
|
|
/**
|
|
* Set location status
|
|
*/
|
|
var setLocationStatus = function(status) {
|
|
document.getElementById('location_status').innerHTML = status;
|
|
};
|
|
|
|
/**
|
|
* Function called when page has finished loading.
|
|
*/
|
|
function init() {
|
|
document.addEventListener("deviceready", function() {
|
|
deviceReady = true;
|
|
console.log("Device="+device.platform+" "+device.version);
|
|
}, false);
|
|
window.setTimeout(function() {
|
|
if (!deviceReady) {
|
|
alert("Error: PhoneGap did not initialize. Demo will not run correctly.");
|
|
}
|
|
},1000);
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
<body onload="init();" id="stage" class="theme">
|
|
|
|
<h1>Location</h1>
|
|
<div id="info">
|
|
<b>Status:</b> <span id="location_status">Stopped</span>
|
|
<table width="100%">
|
|
<tr><td><b>Latitude:</b></td><td id="latitude"> </td></tr>
|
|
<tr><td><b>Longitude:</b></td><td id="longitude"> </td></tr>
|
|
</table>
|
|
</div>
|
|
<h2>Action</h2>
|
|
<a href="javascript:" class="btn large" onclick="getLocation();">Get Location</a>
|
|
<a href="javascript:" class="btn large" onclick="watchLocation();">Start Watching Location</a>
|
|
<a href="javascript:" class="btn large" onclick="stopLocation();">Stop Watching Location</a>
|
|
<h2> </h2><a href="javascript:" class="backBtn" onclick="backHome();">Back</a>
|
|
</body>
|
|
</html>
|