-- 호출
LocationService.sendLocationInBackground(
["HelloWorld"] ,
function(result) {
alert("Success : \r\n" + result);
},
function(error) {
alert("Error : \r\n" + error);
}
);
--phonegap.js
var LocationService = {
sendLocationInBackground : function(types, success, fail) {
return PhoneGap.exec(success, fail, "com.phonegap.locationService", "startLocationService", types);
}
};