Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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>
share|improve this question
What have you tried? – zakang Feb 13 at 21:26
Hey, so far what ive got is on the html side I have code used to locate my laptop, but the problem is that this code is in the html and runs from there so it only shows where the website is and not where my laptop is, if that makes sense, ive tried making similar versions of this code and making a script out of it but have failed – Jack W Feb 13 at 21:33
Show what you've tried and where you're stuck. – C. Lang Feb 13 at 21:44

closed as not a real question by John Conde, bensiu, Ram kiran, Sudarshan, Druid Feb 14 at 5:56

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

im not sure what you are trying to do but

Using geolocation you can extract a city and country from the geolocation database.

You can upload/store those to a server, and show a search in google maps in an iframe based upon those variables. Does it really need to be an image?

share|improve this answer
Basically the idea is from a problem, brothers laptop was stolen, to cut a long story short no backups,data lost,and it cant be found. I know there are tools out there to do what im doing, but I wanted to take this project on and understand more about html programming and scripting along the way, by making a very crude but hopefully working solution. Ive done Java programming in college but i'm blank at html and making something on a laptop make contact/communicate to a website. So far the html i've got that tracks the website works perfectly to what I need, its just that this code is runni – Jack W Feb 13 at 21:48
Then you do not need the map, you need the coordinates right? With a geolocation database you would not get the coordinates, you would at best get the city. Also a geo location db only translates the IP to a city so what you think you need is the ip, to get the ip all you need is to make a request from that computer, you can do that with a simple wget towards a website you have set up to record the adresses which tries to reach it. Also this would not be HTML programming If you were yo ask how to publish the image it would be html. – Iesus Sonesson Feb 13 at 21:58
Easiest way i can think of is to put a small command file in the startup folder, which when it runs makes a request to a server which records the IP from the request. – Iesus Sonesson Feb 13 at 22:05
But doing it this way wouldnt show visually where my laptop has been, id have to manually go and check for myself where the ip's come from, is there no way to just push my co-ordinates onto the map on the site? – Jack W Feb 13 at 22:11
That would be the next step to the matter, you will need to pull the last IP from that request, translate into city and show on a map It is really the only way to get the location, but you are far better off by getting the location someway else then with an IP for example with a built in GPS, but you would still need to push those coordinates to a server to get a hold of where it is. – Iesus Sonesson Feb 13 at 22:15

Not the answer you're looking for? Browse other questions tagged or ask your own question.