Click here to Skip to main content
15,885,546 members
Articles / Programming Languages / PHP

Google Maps in HTML, ASP.NET, PHP, JSP, etc. with Ease

Rate me:
Please Sign up or sign in to vote.
4.84/5 (119 votes)
1 Dec 2009CPOL16 min read 920.2K   17.2K   356  
The article will guide you with complete knowledge of how to add a Google map in your webpage with knowledge of JavaScript, use of Geocoder, use of InfoWindow, use of Marker, Tabbed Markers, Maximising marker, creating context menu, streetview in your map
<!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>My Locations</title>
    
    <script src="Contextmenu_files/maps" type="text/javascript"></script><script src="Contextmenu_files/main.js" type="text/javascript"></script><style type="text/css">@media print{.gmnoprint{display:none}}@media screen{.gmnoscreen{display:none}}</style>
    <script type="text/javascript">
    
    var map = null;
    var geocoder = null;
    var contextmenu;
    function load(loc) {
      if (GBrowserIsCompatible()) {
        var point;
        map=new GMap2(document.getElementById("map"));
     
        map.addControl(new GOverviewMapControl());
		map.enableDoubleClickZoom();
	    map.enableScrollWheelZoom();
		map.addControl(new GMapTypeControl());
        map.addControl(new GLargeMapControl());
        createContextMenu(map); 
        var address='<font size="2" face="Arial"><b>INDIA</b><br/><br/>XYZ Inc.<br/>New York City <br/>America<br/>Ph.: 343254543</font>';
        point = new GLatLng(22.592057,88.421815);
               
        var marker = new GMarker(point);
        map.setCenter(point,17);
        map.addOverlay(marker);
        map.setMapType(G_HYBRID_MAP);
        GEvent.addListener(marker, "click", function() {marker.openInfoWindowHtml(address);});
        marker.openInfoWindowHtml(address); 
           
      }
    }   
  
  function createContextMenu(map)
   {
      contextmenu = document.createElement("div");
      contextmenu.style.visibility="hidden";
      contextmenu.style.background="#ffffff";
      contextmenu.style.border="1px solid #8888FF";

      contextmenu.innerHTML = '<a href="javascript:zoomIn()"><div class="context">&nbsp;&nbsp;Zoom in&nbsp;&nbsp;</div></a>'
                            + '<a href="javascript:zoomOut()"><div class="context">&nbsp;&nbsp;Zoom out&nbsp;&nbsp;</div></a>'
                            + '<a href="javascript:zoomInHere()"><div class="context">&nbsp;&nbsp;Zoom in here&nbsp;&nbsp;</div></a>'
                            + '<a href="javascript:zoomOutHere()"><div class="context">&nbsp;&nbsp;Zoom out here&nbsp;&nbsp;</div></a>'
                            + '<a href="javascript:centreMapHere()"><div class="context">&nbsp;&nbsp;Centre map here&nbsp;&nbsp;</div></a>';

      map.getContainer().appendChild(contextmenu);
      GEvent.addListener(map,"singlerightclick",function(pixel,tile) 
      {
          clickedPixel = pixel;
          var x=pixel.x;
          var y=pixel.y;
          if (x > map.getSize().width - 120) 
          { 
            x = map.getSize().width - 120 
          }
          if (y > map.getSize().height - 100) 
          { 
            y = map.getSize().height - 100 
          }
          var pos = new GControlPosition(G_ANCHOR_TOP_LEFT, new GSize(x,y));  
          pos.apply(contextmenu);
          contextmenu.style.visibility = "visible";
     });
     GEvent.addListener(map, "click", function() 
     {
          contextmenu.style.visibility="hidden";
     });
 }
 function zoomIn() 
 {
            map.zoomIn();
            contextmenu.style.visibility="hidden";
 }      
 function zoomOut() 
 {
           map.zoomOut();
           contextmenu.style.visibility="hidden";
 }      
 function zoomInHere() 
 {
           var point = map.fromContainerPixelToLatLng(clickedPixel)
           map.zoomIn(point,true);
           contextmenu.style.visibility="hidden";
 }      
 function zoomOutHere() 
 {
          var point = map.fromContainerPixelToLatLng(clickedPixel)
          map.setCenter(point,map.getZoom()-1); 
          contextmenu.style.visibility="hidden";
 }      
 function centreMapHere() 
 {
         var point = map.fromContainerPixelToLatLng(clickedPixel)
         map.setCenter(point);
         contextmenu.style.visibility="hidden";
 }
   
   //]]>
    </script><script src="Contextmenu_files/mod_scrollwheelmod_jslinkermod_extended_dommod_dragmod_contro.js" charset="UTF-8" type="text/javascript"></script><script src="Contextmenu_files/vp_002" charset="UTF-8" id="_1frx4y5un" type="text/javascript"></script><script src="Contextmenu_files/vp" charset="UTF-8" id="_2frx4y7up" type="text/javascript"></script><script src="Contextmenu_files/mod_display_manager.js" charset="UTF-8" type="text/javascript"></script></head><body onload="load('1');" onunload="GUnload()" style="background-color: transparent;">
  <div id="map" style="width: 900px; height: 500px; position: relative; background-color: rgb(229, 227, 223);"><div style="overflow: hidden; position: absolute; left: 0px; top: 0px; width: 100%; height: 100%;"><div style="position: absolute; left: 0px; top: 8px; z-index: 0; cursor: url(http://maps.google.com/intl/en_ALL/mapfiles/openhand.cur), default;"><div style="position: absolute; left: 0px; top: 0px; display: none;"><div style="position: absolute; left: 0px; top: 0px; z-index: 0;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 1;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"></div></div><div style="position: absolute; left: 0px; top: 0px;"><div style="position: absolute; left: 0px; top: 0px; z-index: 0;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: -164px; top: -174px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/v36hlencookiefzwq2vole4YxGKruebLxt1Im9s2hG9ZB0c2qzwx97727sy5.jpg" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: -164px; top: 82px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/v36hlencookiefzwq2vole4YxGKruebLxt1Im9s2hG9ZB0c2qzwx9772_007.jpg" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: -164px; top: 338px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/v36hlencookiefzwq2vole4YxGKruebLxt1Im9s2hG9ZB0c2qzwx9772_009.jpg" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: -164px; top: 594px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/v36hlencookiefzwq2vole4YxGKruebLxt1Im9s2hG9ZB0c2qzwx9772_002.jpg" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 92px; top: -174px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/v36hlencookiefzwq2vole4YxGKruebLxt1Im9s2hG9ZB0c2qzwx97728sy5.jpg" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 92px; top: 82px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/v36hlencookiefzwq2vole4YxGKruebLxt1Im9s2hG9ZB0c2qzwx9772_005.jpg" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 92px; top: 338px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/v36hlencookiefzwq2vole4YxGKruebLxt1Im9s2hG9ZB0c2qzwx9772_003.jpg" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 92px; top: 594px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/v36hlencookiefzwq2vole4YxGKruebLxt1Im9s2hG9ZB0c2qzwx9772_008.jpg" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 348px; top: -174px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/v36hlencookiefzwq2vole4YxGKruebLxt1Im9s2hG9ZB0c2qzwx97729sy5.jpg" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 348px; top: 82px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/v36hlencookiefzwq2vole4YxGKruebLxt1Im9s2hG9ZB0c2qzwx9772_006.jpg" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 348px; top: 338px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/v36hlencookiefzwq2vole4YxGKruebLxt1Im9s2hG9ZB0c2qzwx9772_004.jpg" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 348px; top: 594px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/v36hlencookiefzwq2vole4YxGKruebLxt1Im9s2hG9ZB0c2qzwx9773_002.jpg" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 604px; top: -174px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/v36hlencookiefzwq2vole4YxGKruebLxt1Im9s2hG9ZB0c2qzwx9773_004.jpg" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 604px; top: 82px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/v36hlencookiefzwq2vole4YxGKruebLxt1Im9s2hG9ZB0c2qzwx9773_003.jpg" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 604px; top: 338px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/v36hlencookiefzwq2vole4YxGKruebLxt1Im9s2hG9ZB0c2qzwx97730sy5.jpg" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 604px; top: 594px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 860px; top: -174px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/v36hlencookiefzwq2vole4YxGKruebLxt1Im9s2hG9ZB0c2qzwx97731sy5.jpg" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 860px; top: 82px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/v36hlencookiefzwq2vole4YxGKruebLxt1Im9s2hG9ZB0c2qzwx9773_006.jpg" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 860px; top: 338px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 860px; top: 594px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/v36hlencookiefzwq2vole4YxGKruebLxt1Im9s2hG9ZB0c2qzwx9773_005.jpg" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 1116px; top: -174px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/v36hlencookiefzwq2vole4YxGKruebLxt1Im9s2hG9ZB0c2qzwx9773_007.jpg" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 1116px; top: 82px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/v36hlencookiefzwq2vole4YxGKruebLxt1Im9s2hG9ZB0c2qzwx97732sy5.jpg" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 1116px; top: 338px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 1116px; top: 594px; width: 256px; height: 256px; -moz-user-select: none;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 1;"><img src="Contextmenu_files/vapt_007.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: -164px; top: -174px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt_014.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: -164px; top: 82px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt_016.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: -164px; top: 338px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt_022.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: -164px; top: 594px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt_018.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 92px; top: -174px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt_023.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 92px; top: 82px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt_013.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 92px; top: 338px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 92px; top: 594px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt_003.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 348px; top: -174px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt_024.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 348px; top: 82px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt_008.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 348px; top: 338px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt_012.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 348px; top: 594px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt_021.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 604px; top: -174px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt_019.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 604px; top: 82px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt_017.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 604px; top: 338px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt_015.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 604px; top: 594px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt_009.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 860px; top: -174px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt_010.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 860px; top: 82px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt_004.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 860px; top: 338px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt_011.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 860px; top: 594px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt_020.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 1116px; top: -174px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt_005.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 1116px; top: 82px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt_006.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 1116px; top: 338px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vapt_002.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 1116px; top: 594px; width: 256px; height: 256px; -moz-user-select: none;"></div></div><div style="position: absolute; left: 0px; top: 0px; z-index: 100;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 101;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 102;"><img class="gmnoprint" src="Contextmenu_files/shadow50.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 441px; top: 216px; width: 37px; height: 34px; -moz-user-select: none; z-index: -72294592;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 103;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 104; cursor: default;"><img class="gmnoprint" src="Contextmenu_files/marker.png" style="border: 0px none ; margin: 0px; padding: 0px; width: 20px; height: 34px; -moz-user-select: none; position: absolute; left: 441px; top: 216px; z-index: -72294592;"><img class="gmnoscreen" src="Contextmenu_files/markerff.gif" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 441px; top: 216px; width: 20px; height: 34px; -moz-user-select: none; z-index: -72294592;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 105;"><div class="gmnoprint" style="position: absolute; left: 394px; top: 112px;"><div style="overflow: hidden; width: 70px; height: 30px; z-index: 1; position: absolute; left: 60px; top: 0px;"><img src="Contextmenu_files/iws2.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 1044px; height: 370px; -moz-user-select: none;"></div><div style="overflow: hidden; width: 70px; height: 30px; z-index: 1; position: absolute; left: 289px; top: 0px;"><img src="Contextmenu_files/iws2.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: -710px; top: 0px; width: 1044px; height: 370px; -moz-user-select: none;"></div><div style="overflow: hidden; width: 70px; height: 60px; z-index: 1; position: absolute; left: 0px; top: 61px;"><img src="Contextmenu_files/iws2.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: -3px; top: -310px; width: 1044px; height: 370px; -moz-user-select: none;"></div><div style="overflow: hidden; width: 70px; height: 60px; z-index: 1; position: absolute; left: 259px; top: 61px;"><img src="Contextmenu_files/iws2.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: -373px; top: -310px; width: 1044px; height: 370px; -moz-user-select: none;"></div><div style="overflow: hidden; width: 140px; height: 60px; z-index: 1; position: absolute; left: 70px; top: 61px;"><img src="Contextmenu_files/iws2.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: -470px; top: -310px; width: 1044px; height: 370px; -moz-user-select: none;"></div><div style="overflow: hidden; position: absolute; left: 130px; top: 0px; width: 159px; height: 30px;"><div style="overflow: hidden; width: 640px; height: 30px;"><img src="Contextmenu_files/iws2.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: -70px; top: 0px; width: 1044px; height: 370px; -moz-user-select: none;"></div></div><div style="overflow: hidden; width: 101px; height: 31px; bottom: -1px; position: absolute; left: 29px; top: 30px;"><img src="Contextmenu_files/iws2.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: -242px; top: -30px; -moz-user-select: none; width: 1044px; height: 370px;"></div><div style="overflow: hidden; width: 101px; height: 31px; bottom: -1px; position: absolute; left: 288px; top: 30px;"><img src="Contextmenu_files/iws2.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: -982px; top: -30px; -moz-user-select: none; width: 1044px; height: 370px;"></div><div style="overflow: hidden; position: absolute; left: 70px; top: 61px; width: 0px; height: 60px;"><div style="overflow: hidden; width: 320px; height: 60px;"><img src="Contextmenu_files/iws2.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: -73px; top: -310px; width: 1044px; height: 370px; -moz-user-select: none;"></div></div><div style="overflow: hidden; position: absolute; left: 210px; top: 61px; width: 49px; height: 60px;"><div style="overflow: hidden; width: 320px; height: 60px;"><img src="Contextmenu_files/iws2.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: -73px; top: -310px; width: 1044px; height: 370px; -moz-user-select: none;"></div></div><div style="overflow: hidden; position: absolute; left: 130px; top: 30px; width: 158px; height: 31px;"><div style="overflow: hidden; width: 640px; height: 598px;"><img src="Contextmenu_files/iws2.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: -360px; top: -30px; width: 1044px; height: 370px; -moz-user-select: none;"></div></div></div></div><div style="position: absolute; left: 0px; top: 0px; z-index: 106;"><img usemap="#gmimap0" class="gmnoprint" src="Contextmenu_files/markerTransparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 441px; top: 216px; width: 20px; height: 34px; -moz-user-select: none; z-index: -72294592;"><map id="gmimap0" name="gmimap0"><area id="mtgt_unnamed_0" href="javascript:void(0)" alt="" shape="poly" coords="9,0,6,1,4,2,2,4,0,8,0,12,1,14,2,16,5,19,7,23,8,26,9,30,9,34,11,34,11,30,12,26,13,24,14,21,16,18,18,16,20,12,20,8,18,4,16,2,15,1,13,0" log="miw"></map></div><div style="position: absolute; left: 0px; top: 0px; z-index: 107; cursor: default;"><div class="gmnoprint" style="position: absolute; left: 369px; top: -5px;"><div class="gmnoprint" style="position: relative; left: 0px; top: 0px; z-index: 10; width: 249px; height: 152px;"><img src="Contextmenu_files/iw_close.gif" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 225px; top: 11px; width: 12px; height: 12px; -moz-user-select: none; cursor: pointer; z-index: 10000;"><img src="Contextmenu_files/iw_plus.gif" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 12px; height: 12px; -moz-user-select: none; cursor: pointer; z-index: 10000; display: none;"><a href="javascript:void(0)" style="position: absolute; left: 0px; top: 0px; text-decoration: none; white-space: nowrap; cursor: pointer; z-index: 10000; display: none;"><img src="Contextmenu_files/iw_fullscreen.gif" style="border: 0px none ; margin: 0px; padding: 0px; position: relative; left: 0px; top: 0px; width: 15px; height: 12px; -moz-user-select: none; vertical-align: top;"><span style="overflow: hidden; font-size: small; text-decoration: underline; padding-left: 5px; position: relative; top: -6px;">Full-screen</span></a><img src="Contextmenu_files/iw_minus.gif" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 12px; height: 12px; -moz-user-select: none; cursor: pointer; z-index: 10000; display: none;"><div style="position: absolute; left: 16px; top: 16px; width: 217px; height: 120px; z-index: 10;"><div><font face="Arial" size="2"><b>INDIA</b><br><br>XYZ Inc.<br>New York City <br>America<br>Ph.: 343254543</font></div></div></div><div style="overflow: hidden; width: 25px; height: 25px; z-index: 1; position: absolute; left: 0px; top: 0px;"><img src="Contextmenu_files/iw2.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 690px; height: 786px; -moz-user-select: none;"></div><div style="overflow: hidden; width: 25px; height: 25px; z-index: 1; position: absolute; left: 224px; top: 0px;"><img src="Contextmenu_files/iw2.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: -665px; top: 0px; width: 690px; height: 786px; -moz-user-select: none;"></div><div style="overflow: hidden; width: 98px; height: 96px; z-index: 1; position: absolute; left: 76px; top: 127px;"><img src="Contextmenu_files/iw2.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: -690px; width: 690px; height: 786px; -moz-user-select: none;"></div><div style="overflow: hidden; width: 25px; height: 25px; z-index: 1; position: absolute; left: 0px; top: 127px;"><img src="Contextmenu_files/iw2.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: -665px; width: 690px; height: 786px; -moz-user-select: none;"></div><div style="overflow: hidden; width: 25px; height: 25px; z-index: 1; position: absolute; left: 224px; top: 127px;"><img src="Contextmenu_files/iw2.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: -665px; top: -665px; width: 690px; height: 786px; -moz-user-select: none;"></div><div style="border-top: 1px solid rgb(171, 171, 171); position: absolute; left: 25px; top: 0px; width: 199px; height: 24px; background-color: white;"></div><div style="border-left: 1px solid rgb(171, 171, 171); border-right: 1px solid rgb(171, 171, 171); position: absolute; left: 0px; top: 25px; width: 247px; height: 102px; background-color: white;"></div><div style="border-bottom: 1px solid rgb(171, 171, 171); position: absolute; left: 25px; top: 127px; width: 199px; height: 24px; background-color: white;"></div><map name="iwMap0" id="iwMap0"><area coords="0,0,0,152,129,152,80,223,174,152,249,152,249,0" href="javascript:void(0)" shape="poly"><area coords="81,221,78,222,76,223,74,225,72,229,72,233,73,235,74,237,77,240,79,244,80,247,81,251,81,255,83,255,83,251,84,247,85,245,86,242,88,239,90,237,92,233,92,229,90,225,88,223,87,222,85,221" href="javascript:void(0)" shape="poly"></map><img usemap="#iwMap0" style="border: 0px none ; margin: 0px; padding: 0px; -moz-user-select: none; position: absolute; left: 0px; top: 0px; width: 128px; height: 128px;" src="Contextmenu_files/transparent.gif"></div></div></div></div><div style="-moz-user-select: none; position: absolute; left: 2px; bottom: 2px;" class="gmnoprint"><a target="_blank" href="http://maps.google.com/maps?ll=22.592141,88.42181&amp;spn=0.004953,0.009656&amp;t=h&amp;z=17&amp;key=ABQIAAAAclK0B2lXQwV5lPy1rLiTFBSN1aiKepvDswXjKa4j2DDWdYvOjhQMO1tywqS8ObgP5dtO70AyyArhzA&amp;oi=map_misc&amp;ct=api_logo" title="Click to see this area on Google Maps"><img src="Contextmenu_files/poweredby.png" style="border: 0px none ; margin: 0px; padding: 0px; width: 62px; height: 30px; -moz-user-select: none; cursor: pointer;"></a></div><div dir="ltr" style="-moz-user-select: none; position: absolute; right: 123px; bottom: 2px; color: white; font-family: Arial,sans-serif; font-size: 11px; white-space: nowrap; text-align: right;" class="gmnoprint"><span></span><span>Imagery ©2009  DigitalGlobe, GeoEye, Map data ©2009  AND, Europa Technologies - </span><a style="color: white;" target="_blank" href="http://www.google.com/intl/en_ALL/help/terms_maps.html">Terms of Use</a></div><div id="map_overview" style="-moz-user-select: none; position: absolute; right: 0px; bottom: 0px;" class="gmnoprint"><div style="border-top: 1px solid rgb(151, 151, 151); border-left: 1px solid rgb(151, 151, 151); overflow: hidden; width: 120px; height: 120px; background-color: rgb(232, 236, 248); position: absolute; right: 0px; bottom: 0px;"><div style="border: 1px solid rgb(151, 151, 151); overflow: hidden; width: 111px; height: 111px; position: absolute; left: 7px; top: 7px; background-color: rgb(229, 227, 223);"><div style="overflow: hidden; position: absolute; left: 0px; top: 0px; width: 100%; height: 100%;"><div style="position: absolute; left: 0px; top: 1px; z-index: 0; cursor: url(http://maps.google.com/intl/en_ALL/mapfiles/openhand.cur), default;"><div style="position: absolute; left: 0px; top: 0px; display: none;"><div style="position: absolute; left: 0px; top: 0px; z-index: 0;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/transparent.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; width: 256px; height: 256px; -moz-user-select: none;"></div></div><div style="position: absolute; left: 0px; top: 0px;"><div style="position: absolute; left: 0px; top: 0px; z-index: 0;"><img src="Contextmenu_files/vap_004.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: -222px; top: -211px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vap_002.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: -222px; top: 45px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vap_003.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 34px; top: -211px; width: 256px; height: 256px; -moz-user-select: none;"><img src="Contextmenu_files/vap.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 34px; top: 45px; width: 256px; height: 256px; -moz-user-select: none;"></div></div><div style="position: absolute; left: 0px; top: 0px; z-index: 100;"><div style="border-style: solid; border-color: rgb(136, 136, 255) rgb(17, 17, 85) rgb(17, 17, 85) rgb(136, 136, 255); border-width: 1px; width: 57px; height: 32px; position: absolute; left: 27px; top: 38px;"><div style="border: 1px solid rgb(68, 68, 187); overflow: hidden; width: 55px; height: 30px;"><div style="width: 55px; height: 30px; background-color: rgb(102, 102, 204); opacity: 0.3;"></div></div></div><div style="border-style: solid; border-color: rgb(136, 136, 255) rgb(17, 17, 85) rgb(17, 17, 85) rgb(136, 136, 255); border-width: 1px; width: 57px; height: 32px; position: absolute; left: 27px; top: 38px; cursor: url(http://maps.google.com/intl/en_ALL/mapfiles/openhand.cur), default;"><div style="border: 1px solid rgb(68, 68, 187); overflow: hidden; width: 55px; height: 30px;"><div style="width: 55px; height: 30px; background-color: rgb(102, 102, 204); opacity: 0.01;"></div></div></div></div><div style="position: absolute; left: 0px; top: 0px; z-index: 101;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 102;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 103;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 104; cursor: default;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 105;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 106;"></div><div style="position: absolute; left: 0px; top: 0px; z-index: 107; cursor: default;"></div></div></div><div style="border-style: solid; border-color: rgb(136, 136, 255) rgb(17, 17, 85) rgb(17, 17, 85) rgb(136, 136, 255); border-width: 1px; width: 57px; height: 31px; position: absolute; left: 27px; top: 39px; cursor: url(http://maps.google.com/intl/en_ALL/mapfiles/closedhand.cur), move; visibility: hidden;"><div style="border: 1px solid rgb(68, 68, 187); overflow: hidden; width: 55px; height: 29px;"><div style="width: 55px; height: 29px; background-color: rgb(102, 102, 204); opacity: 0.01;"></div></div></div></div></div><div style="overflow: hidden; width: 15px; height: 15px; cursor: pointer; position: absolute; right: 0px; bottom: 0px;"><img src="Contextmenu_files/mapcontrols3d2.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: -428px; -moz-user-select: none; width: 59px; height: 492px;"></div></div><div style="-moz-user-select: none; position: absolute; right: 7px; top: 7px; color: black; font-family: Arial,sans-serif; font-size: small; width: 200px; height: 19px;" class="gmnoprint"><div id="amtc_option_0" title="Show street map" style="border: 1px solid black; position: absolute; background-color: white; text-align: center; width: 5em; cursor: pointer; right: 10.2em;"><div style="border-style: solid; border-color: white rgb(176, 176, 176) rgb(176, 176, 176) white; border-width: 1px; font-size: 12px;">Map</div></div><div id="amtc_option_1" title="Show satellite imagery" style="border: 1px solid black; position: absolute; background-color: white; text-align: center; width: 5em; cursor: pointer; right: 5.1em;"><div style="border-style: solid; border-color: white rgb(176, 176, 176) rgb(176, 176, 176) white; border-width: 1px; font-size: 12px;">Satellite</div></div><div id="amtc_option_2" title="Show imagery with street names" style="border: 1px solid black; position: absolute; background-color: white; text-align: center; width: 5em; cursor: pointer; right: 0em;"><div style="border-style: solid; border-color: rgb(52, 86, 132) rgb(108, 157, 223) rgb(108, 157, 223) rgb(52, 86, 132); border-width: 1px; font-size: 12px; font-weight: bold;">Hybrid</div></div></div><div class="gmnoprint" style="overflow: hidden; width: 59px; height: 272px; -moz-user-select: none; position: absolute; left: 7px; top: 7px; text-align: left;"><div style="overflow: hidden; position: absolute; left: 0px; top: 0px; width: 59px; height: 62px;"><div style="overflow: hidden; width: 59px; height: 62px;"><img src="Contextmenu_files/mapcontrols2.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: 0px; -moz-user-select: none; width: 59px; height: 458px;"></div><div log="pan_up" title="Pan up" style="position: absolute; left: 20px; top: 0px; width: 18px; height: 18px; cursor: pointer;"></div><div log="pan_lt" title="Pan left" style="position: absolute; left: 0px; top: 20px; width: 18px; height: 18px; cursor: pointer;"></div><div log="pan_rt" title="Pan right" style="position: absolute; left: 40px; top: 20px; width: 18px; height: 18px; cursor: pointer;"></div><div log="pan_down" title="Pan down" style="position: absolute; left: 20px; top: 40px; width: 18px; height: 18px; cursor: pointer;"></div><div log="center_result" title="Return to the last result" style="position: absolute; left: 20px; top: 20px; width: 18px; height: 18px; cursor: pointer;"></div></div><div style="overflow: hidden; position: absolute; left: 0px; top: 62px; width: 59px; height: 180px;"><div style="overflow: hidden; width: 59px; height: 292px;"><img src="Contextmenu_files/mapcontrols2.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: -62px; -moz-user-select: none; width: 59px; height: 458px;"></div><div log="zi" title="Zoom In" style="position: absolute; left: 20px; top: 0px; width: 18px; height: 18px; cursor: pointer;"></div></div><div style="position: absolute; left: 0px; top: 242px; width: 59px; height: 354px; text-align: left;"><div style="overflow: hidden; width: 59px; height: 30px; position: absolute;"><img src="Contextmenu_files/mapcontrols2.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: -354px; -moz-user-select: none; width: 59px; height: 458px;"></div><div log="zo" title="Zoom Out" style="position: absolute; left: 20px; top: 11px; width: 18px; height: 18px; cursor: pointer;"></div></div><div style="position: absolute; left: 19px; top: 86px; width: 22px; height: 166px; cursor: pointer;"><div title="Drag to zoom" style="overflow: hidden; width: 22px; height: 14px; position: absolute; left: 0px; top: 16px; cursor: url(http://maps.google.com/intl/en_ALL/mapfiles/openhand.cur), default;"><img src="Contextmenu_files/mapcontrols2.png" style="border: 0px none ; margin: 0px; padding: 0px; position: absolute; left: 0px; top: -384px; -moz-user-select: none; width: 59px; height: 458px;"></div></div></div><div style="border: 1px solid rgb(136, 136, 255); background: rgb(255, 255, 255) none repeat scroll 0%; visibility: hidden; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"><a href="javascript:zoomIn()"><div class="context">&nbsp;&nbsp;Zoom in&nbsp;&nbsp;</div></a><a href="javascript:zoomOut()"><div class="context">&nbsp;&nbsp;Zoom out&nbsp;&nbsp;</div></a><a href="javascript:zoomInHere()"><div class="context">&nbsp;&nbsp;Zoom in here&nbsp;&nbsp;</div></a><a href="javascript:zoomOutHere()"><div class="context">&nbsp;&nbsp;Zoom out here&nbsp;&nbsp;</div></a><a href="javascript:centreMapHere()"><div class="context">&nbsp;&nbsp;Centre map here&nbsp;&nbsp;</div></a></div><div id="map_magnifyingglass" class="gmnoprint" style="border: medium none ; width: 60px; height: 40px; -moz-user-select: none; visibility: hidden;"><div style="border-style: solid none none solid; border-color: rgb(255, 0, 0) -moz-use-text-color -moz-use-text-color rgb(255, 0, 0); border-width: 2px 0px 0px 2px; width: 6px; height: 4px; line-height: 1px; font-size: 1px;"></div><div style="border-style: solid solid none none; border-color: rgb(255, 0, 0) rgb(255, 0, 0) -moz-use-text-color -moz-use-text-color; border-width: 2px 2px 0px 0px; width: 6px; height: 4px; line-height: 1px; font-size: 1px;"></div><div style="border-style: none solid solid none; border-color: -moz-use-text-color rgb(255, 0, 0) rgb(255, 0, 0) -moz-use-text-color; border-width: 0px 2px 2px 0px; width: 6px; height: 4px; line-height: 1px; font-size: 1px;"></div><div style="border-style: none none solid solid; border-color: -moz-use-text-color -moz-use-text-color rgb(255, 0, 0) rgb(255, 0, 0); border-width: 0px 0px 2px 2px; width: 6px; height: 4px; line-height: 1px; font-size: 1px;"></div></div></div>
</body></html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
President
India India
Did you like his post?

Oh, lets go a bit further to know him better.
Visit his Website : www.abhisheksur.com to know more about Abhishek.

Abhishek also authored a book on .NET 4.5 Features and recommends you to read it, you will learn a lot from it.
http://bit.ly/EXPERTCookBook

Basically he is from India, who loves to explore the .NET world. He loves to code and in his leisure you always find him talking about technical stuffs.

Working as a VP product of APPSeCONNECT, an integration platform of future, he does all sort of innovation around the product.

Have any problem? Write to him in his Forum.

You can also mail him directly to abhi2434@yahoo.com

Want a Coder like him for your project?
Drop him a mail to contact@abhisheksur.com

Visit His Blog

Dotnet Tricks and Tips



Dont forget to vote or share your comments about his Writing

Comments and Discussions