Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Google Map Integration in PHP- Display Latitude and Longitude On Google Map

    • 0
    • 1
    • 1
    • 2
    • 0
    • 0
    • 0
    • 0
    • 3.42k
    Comment on it

    This code will point the Latitude and Longitude On Google Map with a marker. For this include a script: <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>

    Here is the code hope it may help you somewhere

    <html>
        <head>       
            <script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
            <script type="text/javascript">
                var map;
                var geocoder;
                function loadMap() {
                    // Using the lat and lng of Dehradun.
                    var latitude = 30.3164945; 
                    var longitude = 78.03219079999996;
                    var latlng = new google.maps.LatLng(latitude,longitude);
                    var feature = {
                        zoom: 10,
                        center: latlng,
                        mapTypeId: google.maps.MapTypeId.ROADMAP
                    };
                    map = new google.maps.Map(document.getElementById("map_canvas"), feature);
                    geocoder = new google.maps.Geocoder();
    
                    var marker = new google.maps.Marker({
                        position: latlng,
                        map: map,
                        title: "Test for Location"
                    });
    
                }
    
            </script>
        </head>
    
        <body onload="loadMap()">
            <div id="map" style="width:600px; height:400px">
                <div id="map_canvas" style="width:100%; height:200px"></div>
            </div>
        </body>
    </html>
    

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: