Hi Guys i'm looking for some help or guidance on a project i'm doing. Basically i'm creating a website where it's a simple site with a map on it something like a Google map. What I want to do is then on my laptop have a what i'm thinking will be a script that runs and can then update its place on the websites map using geolocation whenever it connects to a network. Where im stuck is implementing this script to be able to update the map, is a script even the way to do it? so any help would be welcomed thanks
Heres the code in the html of the webpage which shows me where I am, but its running in the html of the site, and not in a script on my laptop updating the map, which is what I need it to do
script type="text/javascript">
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(function(position){
var latitude = position.coords.latitude;
var longitude = position.coords.longitude;
var coords = new google.maps.LatLng(latitude, longitude);
var mapOptions = {
zoom: 15,
center: coords,
mapTypeControl: true,
navigationControlOptions: {
style: google.maps.NavigationControlStyle.SMALL
},
mapTypeId: google.maps.MapTypeId.ROADMAP
};
map = new google.maps.Map(
document.getElementById("mapContainer"), mapOptions
);
var marker = new google.maps.Marker({
position: coords,
map: map,
title: "Your current location!"
});
});
}else {
alert("Geolocation API is not supported in your browser.");
}
</script>
<style type="text/css">
#mapContainer {
height: 500px;
width: 800px;
border:10px solid #eaeaea;
}
</style>