-->

How to Show Markers(Location) in Google Map dynamically form database in ASP.NET.

Introduction

In this post, I explain how to Show Markers(Location) in Google Map dynamically from a database in ASP.NET.

 In this example, I am showing hotels in Digha.


Steps :

Step - 1: Create New Project.

Go to File > New > Project > Select asp.net web forms application > Entry Application Name > Click OK.

Step-2: Add a Database.

Go to Solution Explorer > Right Click on App_Data folder > Add > New item > Select SQL Server Database Under Data > Enter Database name > Add.

Step-3: Create a table and insert data for show Hotels in Google MAP.

Open Database > Right Click on Table > Add New Table > Add Columns > Save > Enter table name > Ok.
In this example, I have used one table as below

Step-4: Add Entity Data Model.

Go to Solution Explorer > Right Click on Project name form Solution Explorer > Add > New item > Select ADO.net Entity Data Model under data > Enter model name > Add.
A popup window will come (Entity Data Model Wizard) > Select Generate from database > Next >
Chose your data connection > select your database > next > Select tables > enter Model Namespace > Finish.

Step-5: Add a GMaps.dll Reference.

Download GMaps.dll


Right Click on references under project folder > Add Reference > Browse > Select GMaps.dll > OK.

Step-6: Add a Webpage and Design for Show hotels into Map.

Go to Solution Explorer > Right Click on Project name form Solution Explorer > Add > New item > Select web form/ web form using master page under Web > Enter page name > Add.

Add this line at the top of your page (design page) for register GMap control.

  1. <%@ Register Assembly="GMaps" Namespace="Subgurim.Controles" TagPrefix="cc1" %>
HTML CODE
  1. <h3>Hotels in Digha</h3>
  2. <div>
  3. <cc1:GMap ID="GMap1" runat="server" Width="800px" Height="500px"/>
  4. </div>

Step-7: Write code for Show Maps.

Write the followings code in Page_Load event for Show Hotels in Google Maps.

  1. protected void Page_Load(object sender, EventArgs e)
  2. {
  3. if (!IsPostBack)
  4. {
  5. // Here I used Degha Location as Main Location and Lat Long is : 21.622564, 87.523417
  6. GLatLng mainLocation = new GLatLng(21.622564, 87.523417);
  7. GMap1.setCenter(mainLocation, 15);
  8.  
  9. XPinLetter xpinLetter = new XPinLetter(PinShapes.pin_star, "H", Color.Blue, Color.White, Color.Chocolate);
  10. GMap1.Add(new GMarker(mainLocation, new GMarkerOptions(new GIcon(xpinLetter.ToString(), xpinLetter.Shadow()))));
  11.  
  12. List<HotelMaster> hotels = new List<HotelMaster>();
  13. using (MyDatabaseEntities dc = new MyDatabaseEntities())
  14. {
  15. hotels = dc.HotelMasters.Where(a => a.HotelArea.Equals("Digha")).ToList();
  16. }
  17.  
  18. PinIcon p;
  19. GMarker gm;
  20. GInfoWindow win;
  21. foreach (var i in hotels)
  22. {
  23. p = new PinIcon(PinIcons.home, Color.Cyan);
  24. gm = new GMarker(new GLatLng(Convert.ToDouble(i.LocLat), Convert.ToDouble(i.LocLong)),
  25. new GMarkerOptions(new GIcon(p.ToString(), p.Shadow())));
  26.  
  27. win = new GInfoWindow(gm, i.HotelName + " <a href='"+i.ReadMoreUrl+"'>Read more...</a>", false, GListener.Event.mouseover);
  28. GMap1.Add(win);
  29. }
  30. }
  31. }

Step-8: Run Application.

Download    Live Demo
 

Hello ! My name is Sourav Mondal. I am a software developer working in Microsoft .NET technologies since 2010.

I like to share my working experience, research and knowledge through my site.

I love developing applications in Microsoft Technologies including Asp.Net webforms, mvc, winforms, c#.net, sql server, entity framework, Ajax, Jquery, web api, web service and more.

Related Posts: