JavaScript – Google Maps With Pointer

Google Map API is an interface for you to put maps on your webpage. It also can be used as an input method for a user to select his address exactly on a map. So, the user does not only type in his address, city, country and other location information as we can found generally on ordinary submit forms. They mark their exact address on the map. Sounds great, isn’t it? Google map API is generally used in real estates websites to provide a more informative and readable detail.

Demo

To move the marker, you may perform a single right click on a new location.

Source Code

<html>
    <head>
        <title>Google Maps API Example</title>
        <script
            src="http://maps.google.com/maps?file=api&v=1&key=<your api key>"
            type="text/javascript">
        </script>
        <!--
            <your api key> is a unique key provided by google map
            You have to replace <your api key> with your api key
            You can get your API key at
http://code.google.com/apis/maps/signup.html
        -->
    </head>
    <body>
        <div id="map" style="width:400px;height:400px"></div>
        To move the marker, you may perform a single right click
        on a new location.
        <script language="JavaScript">
            //By    : Xhanch Studio
            //URL   : http://xhanch.com/
            var map;
            // Define default marker location
            var default_longitute = "-122.141944";
            var default_latitute = "37.441944";
            // Marker/Pointer moved handler
            function move_marker(latlng){
                if(latlng){
                    //Get the selected corrdinate
                    lng = latlng.lng();
                    lat = latlng.lat();
                    //Remove all markers
                    map.clearOverlays();
                    //Set new marker
                    var point = new GPoint(lng, lat);
                    var marker = new GMarker(point);
                    map.addOverlay(marker);
                }
            }
            // Google Map initialize
            if (GBrowserIsCompatible()) {
                map = new GMap(document.getElementById("map"));
                map.addControl(new GLargeMapControl());
                map.addControl(new GMapTypeControl());
                //Set default marker, the zoom we set to 7
                var point = new GPoint(default_longitute, default_latitute);
                map.centerAndZoom(point,7);
                var marker = new GMarker(point);
                map.addOverlay(marker);
                // Assign a single right click event handle
                GEvent.addListener(map, "singlerightclick", function(point){
                    var latlng = map.fromContainerPixelToLatLng(point);
                    move_marker(latlng);
                });
            }
        </script>
    </body>
</html>

Incoming Search Terms

source code php right click and add marker place to google map, fromcontainerpixeltolatlng, google map pointer, google maps pointer, gevent addlistener right click, google pointer, google map php moving marker, javascript pointers for google maps, \singlerightclick\ point, google maps pointer javascript, google maps with pointer, gevent addlistener rightclick, javascript google maps pointers, google maps marker click singlerightclick, javascript pointer map, map pointer script, wordpress pointer api, map pointer javascript, Google map with pointer, how to put pointers on google Map, map fromContainerPixelToLatLng, map fromContainerPixelToLatLng(point), javascript pointer google, map fromcontainerpixeltolatlng in javascript, location pointer in google map in javasript, javascript search google maps, javascript mark point, javascript map single address, how to add pointers in google maps, how to put a pointer on a map, how to puy destination pointers on google maps, how to show maps with pointers in java script, include google maps with pointers in website, java script for put pointer in google map, javascript code to search location in google map, javascript coding for displaying source and destination in google map, javascript for google maps, javascript google map, javascript google map location pointer, javascript goolge maps, how to add google map pointer in java, map pointer in javascript, map pointer javascripy, right click on google earth to put a marker, right click on google map java script code, script search point nya google map, search as google maps in php javascript, Search marker GEvent addListener, select javascript:marker click, singlerightclick, singlerightclick get latlng, singlerightclick google maps, singlerightclick google maps api, url(#default-marker) javascript, using the blue ball google maps api, ver pointer de google maps javascript, get singlerightclick latlng, put pointer on google maps, put pointer on googl emap, move marker with google map api, map singlerightclick, map singlerightclick point, maps with pointers, mark a single address in google map api javascript, mark point google maps, mark point on google maps javascript, mark setinfo google maps, marker pointer on google map, php google map move marker, php suburb location select script, put a marker googlemaps javascript, put map with pointer on site, wordpress google maps move pointer, how to add a pointer to google map api, add pointers location in google map using javascript, gevent addlistener singlerightclick, GEvent addListener(marker singlerightclick function(), gevent listener right click, gmarker rightclick, google api move pointer, google api pointer, google api source to destination code in javascript, google code map api pointer array, google com pojnter, google gevent rightclick, google map api and pointer, google map api singlerightclick point get lat, google map get location singlerightclick, gevent addlistener marker right click, get latlng singlerightclick, addlistener mouse actionscript right gevent, addlistener right click, addlistener(marker rightclick, api google pointers, build google map with pointers, city pointer for google map api, code for mark location on google map in php, code toadd pointers in google maps, coding for move pointer from source to destination in google map, comment submit real estates, Xhanch, Xhanch Studio


Posted on 2010-03-08 by Susanto BSc in Free Script, JavaScript
Javascript, Google, Code, Script, Google Maps, Free, Map, Maps, Pointer, Coordinate, Xhanch, Xhanch Studio

Tagged as: , , , , , , , , ,

2 Responses to “JavaScript – Google Maps With Pointer”

  1. tanvir says:

    Can i use this code commercially ?

    thank you

Leave a Reply

You must be logged in to post a comment.