How can web user control Google maps in ASPNet?

Asked By 0 points N/A Posted on -
qa-featured

I have aspx pages and I want to insert Google map. Does anyone have a user control for ASP.Net. Is it possible to add kmz/kml layer to Google map for ASPNet user control?

SHARE
Best Answer by Toni Linscomb
Answered By 10 points N/A #138408

How can web user control Google maps in ASPNet?

qa-featured

Hi,

It is possible to insert Google maps in aspx pages. There are some apps which you can directly code into the webpage and there are some software in which you have to create the code to insert Google maps in aspx pages.

One solution is to go to https://developers.google.com/maps/ and download the setup file. Install it on your computer and run it. Using this app you can insert Google maps directly into your webpage.

Google map

Another solution is to go to http://googlemap.codeplex.com/ and download the software. Install it on your computer and you can insert maps in your aspx page.

Hope this information helps you.

Best Answer
Best Answer
Answered By 5 points N/A #138409

How can web user control Google maps in ASPNet?

qa-featured

There are several differences between those two controls. Some of them are listed below:

I have recently used a .NET library (dll file) for Google maps in a one of my projects.
 
You can download the library from link:
 
To use this library:
 
1. Copy the .dll in your ~/bin directory.
2. Add the control to the toolbox: right click on tool box > Choose Items > .NET Framework Components > Browse > Browse the Gmap control and select it > Click OK.
 
Now you need to get a Google map api key from Google. Obtain your key from link:
 
Now basic steps are completed and you can try link which shows you how to use the Gmap control in a simple program:

Related Questions