Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
sorce code of mobile location alarm
#1

sorce code of mobile location alarm

The Android location Alarm application provides some innovative featuresRetrieves the user s current geological coordinates.

The user may set an alarm for a particular geographical location through his android phone.

The android alarm can also be associated with a reminder message.

As the user reaches the destined location, the alarm rings and even the associated message flashes on your mobile screen.

The user may set, reset, disable, edit and set duration of the alarms as he wishes.

User may view the destined locations on a map to check how far he is from the desired location.

Get this software engineering project only on NevonProjects

Additional Benifits:
Blue book (basic introduction as per university format)
Powerpoint Presentation
Project Black book (complete guide of the project)

[Edit]
Hide Copy Code
var R = 6371; // earth's radius in kilometers (km)

var dLat = (lat2-lat1).toRad(); // Conversion to radians can also be achieved by lat1 * Math.PI / 180
var dLon = (lon2-lon1).toRad(); // Conversion to radians can also be achieved by lat1 * Math.PI / 180

var lat1 = lat1.toRad(); // Conversion to radians can also be achieved by lat1 * Math.PI / 180
var lat2 = lat2.toRad(); // Conversion to radians can also be achieved by lat2 * Math.PI / 180

var a = Math.sin(dLat/2) * Math.sin(dLat/2) +
Math.sin(dLon/2) * Math.sin(dLon/2) * Math.cos(lat1) * Math.cos(lat2);
var c = 2 * Math.atan2(Math.sqrt(a), Math.sqrt(1-a));
var d = R * c; // This now holds the distance expressed in km
Reply

#2
sorce code of mobile location alarm

Abstract
The application "Mobile Location Alarm" solves all these problems. It offers below services Retrieves the user's current geological coordinates.Allow user to enter new alarm for a particular location Alongwith alarm, user can optionally put the reminder text as well Once user is near the location, the alarm will ring and also if there is any reminder text it will be displayed to user.User can edit/delete/update/enable/disable the alarms.User can see the locations on Map to find out how far he is from the expected location.
Reply

#3

I want whole mobile location alarm project in java with source code.
Thnk you..!
Reply



Forum Jump:


Users browsing this thread:
1 Guest(s)

Powered By MyBB, © 2002-2024 iAndrew & Melroy van den Berg.