Version
NetMode
Battery
Owner's Details: John Irvine, Tel: +447849125489
Web: https://www.a0.artisme.co.uk
Latutude
Longitude
Date
Latitude
Longitude
Date Time
Accuracy
Time Still
Last Location Fix:
Center Marker
Mark Route
Activity
//=========================================================================================== // Only available on Cordova version as PWA app not allowed access to SMS functions // 09/06/22 - v2 Adds a new slide for direct control of tracker app //=========================================================================================== var tracker = "+447368979373"; function AlarmOff(){ SendSMS( tracker, "Alarm Off") } function AlarmOff(){ SendSMS( tracker, "Alarm On") } function sendSMS( sendto , textmsg ) { Log("Sending text to "+sendto+" :-\n'"+textmsg); if(sendto.indexOf(";") >=0) { sendto = sendto.split(";"); for(var i in sendto) { sendto[i] = sendto[i].trim(); } } if(SMS) SMS.sendSMS(sendto, textmsg, function(){}, function(str){alert(str);}); }