Tuesday 30 April 2013

Google Map Integration





<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<title>Google Maps JavaScript API Example</title>
<script src="http://maps.google.com/maps?file=api&amp;v=2&amp;key=ABQIAAAAmnOQlz4O2XMui-auz2pa9BQCy-*&sensor=false" type="text/javascript"></script>
<script type="text/javascript">
    var map;
    var geocoder;
    function initialize() {
        if (GBrowserIsCompatible()) {
            map = new GMap2(document.getElementById("map"));
            map.setCenter(new GLatLng(51.5, -0.1), 10);
            map.setUIToDefault();

            geocoder = new GClientGeocoder();
            showAddress();
        }
    }
    function showAddress() {
        var txtAddress = document.getElementById("<%=txtAddress.ClientID %>");
        var address = txtAddress.value;

        geocoder.getLatLng(
                address,
                function (point) {
                    if (!point) {
                        alert(address + " not found");
                    }
                    else {
                        map.setCenter(point, 15);
                        var marker = new GMarker(point);
                        map.addOverlay(marker);
                        marker.openInfoWindow(address);
                    }
                }
            );
    }
        </script>
</head>
<body onload="initialize()" onunload="GUnload()">
    <form id="form1" runat="server">
     <div>
            <asp:TextBox ID="txtAddress" runat="server" />                                          
            <input type="button" value="Find" onclick="showAddress();" />
        </div>
 
        <div id="map" style="width: 500px; height: 500px"></div>
</form>
</body>
</html>

No comments:

Post a Comment