Feature
Google Maps and ASP.NET
I am sure that most of you have heard about or have had a chance to use Google Maps. It's a great service and I was really impressed by the responsiveness of the application and the ease with which users could drag and zoom maps from a Web browser. It has in many ways heralded the arrival of AJAX (Asynchronous JavaScript and XML), which I am sure will revitalize Web development in the days to come.
Reader Feedback: Page 1 of 5
#73 |
I downloaded and tried to run the SampleSolution through Visual Studio. Every time that I am running the pages (.aspx) which exist in the SampleSolution I am getting the same errror 'G_MAP_TYPE' is undefined. Can someone suggest a possible solution?
|
#72 |
sahil commented on 15 Oct 2008
asdsdfv fdfd
|
#71 |
sahil commented on 14 Oct 2008
How to use onmouseover on marker with c# code, by default when u click on marker then info window open, i want this with onmouseover?????????
|
#70 |
sahil commented on 14 Oct 2008
help
|
#69 |
sahil commented on 14 Oct 2008
any one please help regarding this?
|
#68 |
sahil commented on 13 Oct 2008
How to use onmouseover on marker with c# code, by default when u click on marker then info window open, i want this with onmouseover?????????
|
#67 |
sar commented on 27 Sep 2008
ah just found the source, you need to click on list 1 from the main article and then click on the first link in this page. easy when you know where to look.
|
#66 |
sar commented on 27 Sep 2008
where can I download this marvelous Google Maps ASP.NET Control (GMAP Control) from ? I cant seem to find a link for this anywhere. Thanks for your help and for writing this excellent article.
|
#65 |
Noble commented on 25 Jul 2008
I got the same java script error in JScriptGenerator.cs
after replacing
sOverLayFunction.Append("try{this.overlays.push(a[i]); \n");
with
sOverLayFunction.Append("try{this.addOverlay(a[i]); \n");
Can You Please put your full JScriptGenerator.cs
|
#64 |
Sajid Mushtaq commented on 9 Apr 2008
i cant find a link to download the source code and the control. Please help.
Regards,
Sajid
|
#63 |
I have created similar control. It works with latest versions of Google Maps API. Here is the link,
http://www.shabdar.org/google-maps-user-control-for-ASP-Net-part1.html
|
#62 |
Ghata commented on 24 Mar 2008
This one works with GMAP2
http://www.shabdar.org/google-maps-user-control-for-ASP-Net-part1.html
|
#61 |
Balvinder commented on 10 Jan 2008
I have downloaded GMap control and sample applications.
But OverlayMarker and OverlayLine does not work.
Following code does not works. Please, tellme what is going wrong ? Suggest any modifications in code.
GMapControl1.Width=400;
GMapControl1.Height=400;
GMapControl1.MapType=MapControl.GMapType.MAP;
GMapControl1.ScrollControlType=MapControl.GMapScrollControl.LARGE ;
GMapControl1.ShowMapTypeControl=true;
GMapControl1.GoogleMapKey=ConfigurationSettings.AppSettings["DevKey"];
GPoint myPoint= new GPoint(36.1645,-86.7811);
GPoint myPoint2= new GPoint(36.224264,-85.928273);
string sFormattedHtml="Nashville<img src=D:\\MapPoint\\SourceCode_Murkoth0401\\SourceCode\\SampleSolution\\images\\image.gif /><a href= >Visit Nashville ";
// string sFormattedHtml = "hello";
GMarker myMarker= new GMarker(myPoint);
GMarker myMarker2= new GMarker(myPoint2);
GMapControl1.OverlayMarker(myMarker,sFormattedHtml);
GMapControl1.OverlayMarker(myMarker2, sFormattedHtml);
GMapControl1.CenterAndZoom(myPoint,9);
|
#60 |
Sai commented on 14 Dec 2007
There is a change in google api and this shows a javascript error. So please remove "this.reOrderOverlays();" from GenerateNewOverLayFunction() in JScriptGenerator.cs file. You may find more info on this at http://groups.google.com/group/Google-Maps-API/browse_thread/thread/96fe...
|
#59 |
baybay commented on 3 Dec 2007
This article is horrible. Very generic. Don't waste your time.
|