![]() |
Web Development »
Custom Controls »
General
Intermediate
License: The GNU General Public License (GPL)
Google Maps Control for ASP.NET - Part 2By Shabdar GhataDiscusses the source of this User Control. |
C#, Javascript, .NET, ASP.NET, Dev, Design
|
|
Advanced Search Add to IE Search |
|
|
|
||||||||||||||||
This is the second part in a two part series of my article, Google Maps User Control for ASP.NET. In the first part, Google Maps Control for ASP.NET - Part 1, I have explained how to use this control in your ASP.NET application. In this part, I am going to explain the source code of this user control so that you can modify it for your own use.
The diagram above shows the working flow of this user control. I will explain to you one by one each element in this diagram.
Page_Load() event of the ASPX page.protected void Page_Load(object sender, EventArgs e)
{
//Specify API key
GoogleMapForASPNet1.GoogleMapObject.APIKey =
ConfigurationManager.AppSettings["GoogleAPIKey"];
//Specify width and height for map.
GoogleMapForASPNet1.GoogleMapObject.Width = "800px";
// You can also specify percentage(e.g. 80%) here
GoogleMapForASPNet1.GoogleMapObject.Height = "600px";
//Specify initial Zoom level.
GoogleMapForASPNet1.GoogleMapObject.ZoomLevel = 14;
//Specify Center Point for map.
GoogleMapForASPNet1.GoogleMapObject.CenterPoint =
new GooglePoint("1", 43.66619, -79.44268);
//Add pushpins for map.
//This should be done with intialization of GooglePoint class.
//In constructor of GooglePoint, First argument is ID of this pushpin.
//It must be unique for each pin. Type is string.
//Second and third arguments are latitude and longitude.
GoogleMapForASPNet1.GoogleMapObject.Points.Add(
new GooglePoint("1", 43.65669, -79.45278));
}
GOOGLE_MAP_OBJECT session variable. Later on, this session variable is accessed by the GService.asmx web service to draw the Google map.Page_Load() method.protected void Page_Load(object sender, EventArgs e)
{
.
.
.
if (!IsPostBack)
{
Session["GOOGLE_MAP_OBJECT"] = GoogleMapObject;
}
else
{
GoogleMapObject = (GoogleObject)Session["GOOGLE_MAP_OBJECT"];
.
.
.
As you can see, I am storing the GoogleMapObject property in a session variable if this is the first time load of the page. If this is a post back, then I use the existing session variable value and assign it to the GoogleMapObject property.
<DIV> element with ID=GoogleMap_Div. The Google map is drawn on this <DIV> elementDrawGoogleMap() JavaScript function on page load. If you look in the GoogleMapForASPNet.ascx.cs file, it contains the following lines in the Page_Load() event:Page.ClientScript.RegisterStartupScript(Page.GetType(),
"onLoadCall", "<script language="'javascript'"> " +
"if (window.DrawGoogleMap) { DrawGoogleMap(); } </script>");
This causes the DrawGoogleMap() function to get fired.
DrawGoogleMap() function is called, it calls the web service method GService.GetGoogleObject() to get the session variable values.GService.GetGoogleObject() and GService.GetGoogleObjectOptimized() are the functions defined in the GService.asmx file.GetGoogleObject() web method is defined.[WebMethod(EnableSession = true)]
public GoogleObject GetGoogleObject()
{
GoogleObject objGoogle =
(GoogleObject)System.Web.HttpContext.Current.Session["GOOGLE_MAP_OBJECT"];
System.Web.HttpContext.Current.Session["GOOGLE_MAP_OBJECT_OLD"] =
new GoogleObject(objGoogle);
return objGoogle;
}
Return the value type from this method as GoogleObject.
<ScriptManagerProxy> control.<asp:ScriptManagerProxy ID="ScriptManager1" runat="server">
<Services>
<asp:ServiceReference Path="~/GService.asmx" />
</Services>
</asp:ScriptManagerProxy>
When <ServiceReference> is used with <ScriptManagerProxy> or <ScriptManager> controls, it allows you to use Web Service methods defined in the code-behind.
DrawGoogleMap() function.function DrawGoogleMap()
{
if (GBrowserIsCompatible())
{
map = new GMap2(document.getElementById("GoogleMap_Div"));
geocoder = new GClientGeocoder();
GService.GetGoogleObject(fGetGoogleObject);
}
}
GService.GetGoogleObject() is a web service method. fGetGoogleObject() is a javascript function that should be called once web service method returns.
function fGetGoogleObject(result, userContext)
{
map.setCenter(new GLatLng(result.CenterPoint.Latitude,
result.CenterPoint.Longitude), result.ZoomLevel);
if(result.ShowMapTypesControl)
{
map.addControl(new GMapTypeControl());
}
.
.
.
The result is the return value from the Web Service method GService.GetGoogleObject(). Thus, result is of type GoogleObject. You can access the properties of result in JavaScript to get the map parameters.
GetGoogleObject() is called when the page loads for the first time. It returns all of the GoogleObject properties to the JavaScript function. GetGoogleObjectOptimized is called on postback. It does not return all of the properties. Instead, it returns the minimum properties required to make a change in the existing map.function endRequestHandler(sender, args)
{
GService.GetOptimizedGoogleObject(fGetGoogleObjectOptimized);
}
function pageLoad()
{
if(!Sys.WebForms.PageRequestManager.getInstance().get_isInAsyncPostBack())
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(endRequestHandler);
}
These functions cause the GService.GetOptimizedGoogleObject() to get fired when an AJAX call finishes. For example, let's say you have a button in an UpdatePanel. When you click it, it postbacks the page. When this postback completes, the above function will get fired.
To make this article short, I don't want to explain each and every function defined in this file. Instead, I will explain the important functions only. If you want more details of any code that's not explained here, you can post your questions in the Comments section..
function CreateMarker(point,icon1,InfoHTML,bDraggable,sTitle)
{
var marker;
marker = new GMarker(point,{icon:icon1,draggable:bDraggable,title: sTitle});
if(InfoHTML!='')
{
GEvent.addListener(marker, "click",
function() { this.openInfoWindowHtml(InfoHTML); });
}
GEvent.addListener(marker, "dragend", function() {
GService.SetLatLon(this.value,this.getLatLng().y,this.getLatLng().x);
RaiseEvent('PushpinMoved',this.value); });
return marker;
}
This function creates a marker on the Google map. As you can see, I am adding two events with each marker. The first one is click(). When a user clicks on a marker, a balloon (info window) pops up. This is a JavaScript event. The second one is dragend(). If a user wants, he can drag a pushpin to a new location. This will cause a web method GService.SetLatLon() to get executed. This method sets the new latitude and longitude values in the Session variable. As you can see, this function also calls the RaiseEvent() function which causes an AJAX postback.
function RaiseEvent(pEventName,pEventValue)
{
document.getElementById('<%=hidEventName.ClientID %>').value = pEventName;
document.getElementById('<%=hidEventValue.ClientID %>').value = pEventValue;
__doPostBack('UpdatePanel1','');
}
When the postback finishes, the new latitude and longitude values will be picked up from the Session variable.
function RecenterAndZoom(bRecenter,result)
This function causes re-centering of the map. It finds all the visible markers on the map and decides the center point and the zoom level based on these markers.
function CreatePolyline(points,color,width,isgeodesic)
This function creates polylines between the given points. See the Polylines property in the GoogleObject class.
function CreatePolygon(points,strokecolor,strokeweight,
strokeopacity,fillcolor,fillopacity)
This function creates polygons between the given points. See the Polygons property in the GoogleObject class.
fGetGoogleObject() and fGetGoogleObjectOptimized() JavaScript functions, you can see that I am creating custom icons for the Google map. This is how they are defined:.
.
myIcon_google = new GIcon(G_DEFAULT_ICON);
markerOptions = { icon:myIcon_google };
myIcon_google.iconSize = new GSize(result.Points[i].IconImageWidth,
result.Points[i].IconImageHeight);
myIcon_google.image = result.Points[i].IconImage;
myIcon_google.shadow = result.Points[i].IconShadowImage;
myIcon_google.shadowSize = new GSize(result.Points[i].IconShadowWidth,
result.Points[i].IconShadowHeight);
myIcon_google.iconAnchor = new GPoint(result.Points[i].IconAnchor_posX,
result.Points[i].IconAnchor_posY);
myIcon_google.infoWindowAnchor = new GPoint(result.Points[i].InfoWindowAnchor_posX,
result.Points[i].InfoWindowAnchor_posY);
.
.
I have published this article on my blog as well. Here is the link to the article: Google Maps Control for ASP.NET - Part 2.
| You must Sign In to use this message board. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
General
News
Question
Answer
Joke
Rant
Admin
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 4 Jun 2008 Editor: Smitha Vijayan |
Copyright 2008 by Shabdar Ghata Everything else Copyright © CodeProject, 1999-2009 Web12 | Advertise on the Code Project |