Geolocation Tracker
About this app
Track user movements using geolocation
Geolocation Tracker Geolocation Tracker
Related apps
Put this on your site
Source
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<title>Geolocation Tracker</title>
<meta name="description" content="Track user movements using geolocation">
<meta name="keywords" content="geolocation, tracking, map">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<script type="text/javascript">
try {
// App Javascript Goes Here. Place your entire script content inside the try block for error handling.
// This will run when the DOM is ready.
document.addEventListener("DOMContentLoaded", function() {
// Define an array to store user locations
var userLocations = [];
// Function to add a new location
function addLocation(id, lat, long, time) {
userLocations.push({id: id, lat: lat, long: long, time: time});
}
// Function to display the map
function displayMap() {
// Get the container element
var container = document.getElementById("map-container");
// Create a new map instance
var map = new google.maps.Map(container, {
center: {lat: 0, lng: 0},
zoom: 2
});
// Loop through user locations and add markers to the map
for (var i = 0; i < userLocations.length; i++) {
var location = userLocations[i];
var marker = new google.maps.Marker({
position: {lat: location.lat, lng: location.long},
map: map,
title: "User " + location.id + " - " + location.time
});
}
}
// Add sample locations for testing
addLocation(1, 40.7128, -74.0060, "12:00 PM");
addLocation(2, 51.5074, -0.1278, "01:30 PM");
addLocation(3, 48.8566, 2.3522, "02:15 PM");
// Display the map
displayMap();
});
} catch (error) {
// This will throw the error to the parent window.
throw error;
}
</script>
<style>
#map-container {
height: 400px;
width: 100%;
}
</style>
</head>
<body>
<div id="main-container" class="container">
<h1>Geolocation Tracker</h1>
<div id="map-container"></div>
</div>
</body>
</html>
NEW APPS
These are apps made by the community!