Google Maps Control for ASP.Net - Part 1
- Details
- Category: ASP.Net
- Published on Saturday, 16 April 2011 17:29
- Written by Shabdar
- Hits: 91196
Free Open source Control

View Sample Online
Download version 1.9- 299kb (Google Maps API v3)
Download version 1.8- 295kb (Google Maps API v2)
Introduction
Most of us are familiar with google map. Google has provided a very reach APIs to use it in our own application. But we need some short of javascript knowledge in order to use it. I don't know about others, but for me it was a little difficult to use javascript along with google apis in ASP.Net pages, specifically if you want to use server side functions to draw google map dynamically. For example, in my case I wanted to pull latitude longitude information from a SQL Server database and then use them to insert pushpins on google map. If you are familiar with Ajax framework, you know the answer. You will have to call asp.net server side function from javascript and use retrieved data to draw a google map. How simple is that? :). Atleast not for me. So I have decided to write a user control which can take care of javascript part and allows me to concentrate on serverside functions.
Features
Enables you to draw google map. No javascript knowledge required. Just drag and drop control on your page.
- Ajax calls to retrieve server side data.
- Enables you to change pushpin postions on the fly. No need to refresh full map.
- Enables you to change pushpin icons, positions from asp.net code behind.
- Pushpin click and drag event support in asp.net code.
- Map click event support in asp.net code.
- Directions support. Allows you to draw route between multiple addresses
- Polylines and Polygons support.
- Geocoding support i.e. Find latitude longitude from specified address and create pushpin on that location.
- When pushpins are changing positions, automatic boundary reset and zoom support to display all pushpins. i.e. useful in real time vehicle tracking
- Optimized to give you best performance. i.e. only those pushpin data will be retrieved from server that are changed.
How to use
In this part of article, I don't want you to explain how I created this control. Instead I want you to start using it. To view documentation for source code visit following article.
Google Maps Control for ASP.Net - Part 2
Requirements
- Visual Studio 2005 or higher
- Microsot ASP.Net Ajax framework. You can download it from here.
- Internet Explorer 7.0 or Mozilla Firefox 2.x.
(Note: It may work on other browsers. I have tested on IE and Firefox only.)
Follow below steps in order to use it in your ASP.Net website.
- Download source from link provided on top of the page. Extract it somewhere on your harddrive.
- Open extracted folder as a website in Visual Studio and run it. When you run this website, you will be able to navigate few samples pages.
- To use this control in your application, copy following files to your ASP.Net application in same structure as shown below.

Adding Google Map control to your webpage
- Open page where you want to insert Google Map.
- Drag GoogleMapForASPNet.ascx control to your page.

You won't be able to see Google Map in design view. Instead, you should see Script Manager as part of this control. - At this point you can run your application and you should be able to see a blank Google Map on your page as shown below.

Let's add few pushpins on this map. For that you will have to add some code in Page_Load() event of your page.
Passing parameters to Google Map control
- You must specify Google Map API Key for this component. You can obtain this key from http://code.google.com/apis/maps/signup.html.
Note that inialization code for map should go inside if (!IsPostBack) block.
- Optionally you can specify which version of Google maps API to use. You can get more information about Google Maps API version here.
- Specify width and height for map. You can specify either in pixels or in percentage relative to it's container.
- Specify zoom level. Default is 3.
- Specify Center Point for map. Map will be centered on this point.
- Add pushpins for map. This can be done by initializing GooglePoint type object. In constructor of GooglePoint, First argument is ID of this pushpin. It must be unique for each pin. Second and third arguments are latitude and longitude.
Alternatively you can also do it like below, You can add as many pushpins as you wish. Now run website again and you should see pushpins on map.
Assigning custom icon to pushpins
- You can assign your own icons with google map control. For that first copy your icons in some directory under root directory of your website. You can assign icon to a pushpin as below,
Note that path to image is relative to root folder. You should have icons (or whichever) directory in root folder of your website.
- You can add description of a pushpin which will pop up when user clicks a pushpin.

- You can format InfoHTML property using standard HTML tags.
example,
Up to this point, I have explained you basics of using Google Map control. Now let's implement some advanced functionality. Let's say we want to move pushpins when user do some action. For example when a user clicks on a button. For that, follow below steps.
Creating Interactive Map
You can create interactive map using Google Map control. You can move pushpins when user clicks on a button. Here is how you can do it.
- Insert standard asp.net button on your web page. Write following code in click event of this button.
We are incrementing Latitude and Longitude value for Pushpin-1 here. Note that I am using ID(In above code "1") of pushpin to set new Latitude and Longitude.
- Run your application and click on Button. You will note that whole page get's refreshed (or postback). To stop it from posting back, you need to wrap this button with an Ajax Update panel. Go to Visual Studio toolbox and drag Ajax Updatepanel control on your page.

- Move your button inside this update panel.
- Now run website again and click on button. You should notice that now page is not posting back and Pushpin moves on map.
Auto refreshing map and GPS Navigation
You can use Ajax Framewor's timer control in similar way as button control (I have explained above). On Timer_Tick() event you can specify new latitude longitude for all pushpins. This way Map will move all pushpins automatically after specified time delay. You can hook up any GPS service with this control to create GPS Navigation system.
Creating Polylines with Google Map control

- Create points for polyline,
- Create polyline between points GP1, GP2 and GP3
- Add Polyline to Google Map control,
Traffic Overlays
- To enable or disable traffic overlay, set following property to true or false,
Note: Traffic overlays may not be available in every region. To get more information on traffic overlays visit below link,
http://code.google.com/apis/maps/documentation/services.html#Traffic_Overlays
Go through samples provided in download. I have explained all sort of circumtances in which you may want to use google map control. If you have any questions, feel free to ask.
In Part 2, I have explained souce code of Google Map user control and how to customize it for your own use.
Google Maps Control for ASP.Net - Part 2
Special Notes
I have published this article on www.codeproject.com as well. Here is the link to this article.
Google Maps Control for ASP.Net - Part 1
Version 1.9 (April 13, 2013)
Following changes are done in this version
>Color change for direction lines (MapWithDirections.aspx) Version 1.8 (November 30, 2011) Following minor change is done in this version
Version 1.7 (March 20, 2011) Following changes are done in this version.
Version 1.6 (September 3, 2009) It has been a long time since I updated this control. I got many requests for driving directions implementation, so I decided to release a new version. Following changes are done in this version.Here is how you can implement directions using new version. I guess it's pretty straight forward to understand. One more property is added as Directions in main control. You need to set ShowDirections=true and addresses in ToAddress and FromAddress. Download Source also provides a direction sample code. Special thanks to Vincent Blain who has provided source code for direction implementation.
Version 1.5 Following changes are done in this version. Following changes are done in this version. Following changes are done in this version. Following features are added in this version.
>Changing map type (satellite, hybrid etc) via ASP.Net code doesn't work. (MapWithSatelliteView.aspx)
>Geocoding may not work (MapWithGeocoding.aspx)
IconShadowImage - Defines which image should be used for shadow. Image path should be given relative to root folder.
IconShadowHeight - shadow height
Usually you don't need to provide IconShadowWidth and IconShadowHeight property values because this control tries to find height and width of image automatically.
IconAnchor_posX - This defines Icons anchor position from left.
IconAnchor_posY - This defines Icons anchor position from top.
InfoWindowAnchor_posX - This defines Info Window(balloon)'s anchor position from left.
InfoWindowAnchor_posY - This defines Info Window(balloon)'s anchor position from top.
For more information on Anchors, visit following article.
Making your own custom markers
Google Maps Control for ASP.Net - Part 2 Version 1.4
You can disable automatic boundaries using following code.
Version 1.3
Following changes are done in this version. 

Version 1.2

Version 1.1


Old Questions Log
hy
|218.88.2.xxx
|2009-03-24 15:19:19
hy
- how to measure distanse and Area?
|218.88.1.xxx
|2009-03-28 16:47:35
oksi
|206.186.126.xxx
|2009-03-31 05:56:24
Jose
- VB Version?
|66.191.75.xxx
|2009-04-15 06:45:48
Jim Buckley Barrett
- IT Manager
|82.141.234.xxx
|2009-10-13 09:19:48
Palanikumar
- how to find lat,long value of mouse click?
|59.90.245.xxx
|2009-04-21 01:08:37
Angad Singh Khurana
- out of map
|59.93.50.xxx
|2009-05-05 20:42:23
winning gambling strategies
- Awesome post!!
|122.173.67.xxx
|2009-05-06 02:42:22
Shabdar
- Admin
|198.96.180.xxx
|2009-05-07 04:17:14
Shabdar
- Admin
|198.96.180.xxx
|2009-05-07 04:23:55
Angad
- Recenter
|124.123.50.xxx
|2009-05-10 23:39:40
Shabdar
- Admin
|198.96.180.xxx
|2009-05-11 06:08:40
Shabdar
- admin
|198.96.180.xxx
|2009-05-07 04:35:43
Bassem
|41.208.105.xxx
|2009-08-01 05:21:22
Bassem
|41.208.105.xxx
|2009-08-01 05:29:17
Shabdar
- admin
|198.96.180.xxx
|2009-05-07 04:41:35
Oksi
|206.186.126.xxx
|2009-05-11 03:02:44
Ray Camrass
- Ray Camrass
|144.136.112.xxx
|2009-05-13 01:24:46
Shabdar
- admin
|198.96.172.xxx
|2009-05-13 03:59:35
Davi
- Problem with geocode
|189.115.227.xxx
|2009-05-13 14:43:23
Davi
- Problem with geocode
|189.115.227.xxx
|2009-05-13 17:38:32
Davi
|189.115.227.xxx
|2009-05-14 03:04:16
Davi
|189.115.227.xxx
|2009-05-14 03:06:28
Davi
- Problem with geocode
|189.115.227.xxx
|2009-05-14 04:15:33
Shabdar
- admin
|198.96.172.xxx
|2009-05-14 05:40:35
Ray Camrass
- Ray
|144.136.112.xxx
|2009-05-13 18:55:09
Shabdar
- admin
|198.96.172.xxx
|2009-05-14 05:38:45
Ray Camrass
- Ray
|144.136.112.xxx
|2009-05-14 02:34:49
Ray Camrass
|144.136.112.xxx
|2009-05-14 02:37:43
Shabdar
- admin
|198.96.172.xxx
|2009-05-14 05:36:10
Davi
- Question about geocode Placemark
|189.115.227.xxx
|2009-05-14 07:39:52
brett
|87.118.124.xxx
|2009-05-19 04:48:24
Peter Sarfas
- Developer
|90.203.162.xxx
|2009-05-20 07:20:50
Shabdar
- admin
|198.96.180.xxx
|2009-05-20 08:11:00
Peter Sarfas
- Developer
|90.203.162.xxx
|2009-05-20 09:15:22
Shabdar
- admin
|198.96.180.xxx
|2009-05-20 09:48:25
Martin Griffiths
|81.149.169.xxx
|2009-05-21 13:02:03
Jose Dias
|193.137.16.xxx
|2009-05-25 07:52:33
Nick
|120.17.154.xxx
|2009-05-30 21:42:16
Davi
|189.115.230.xxx
|2009-06-02 02:46:22
Nick
|120.19.56.xxx
|2009-06-02 03:15:53
Nick
|120.19.56.xxx
|2009-06-02 03:17:05
Mesfin
|128.231.168.xxx
|2009-06-01 09:49:32
Mesfin
|128.231.168.xxx
|2009-06-01 09:50:41
Shabdar
- admin
|198.96.180.xxx
|2009-06-01 10:38:01
Mesfin
|128.231.168.xxx
|2009-06-01 11:02:10
Mesfin
|128.231.168.xxx
|2009-06-02 12:56:42
Nithika
- Unable to serialize the session state.
|210.54.1.xxx
|2009-06-08 14:46:59
Shabdar
- admin
|67.212.1.xxx
|2009-06-08 16:25:22
Pierre
- Installation issues of gmap control
|199.243.239.xxx
|2009-06-09 04:57:57
kourosh
- solution needed
|72.211.221.xxx
|2011-02-01 18:29:06
X-rock
- fire an events when a pushpin was moved
|118.68.212.xxx
|2009-06-10 18:42:00
Padam Singh Tehlan
- Polyline with distance label
|125.16.65.xxx
|2009-06-18 21:24:38
Padam Singh Tehlan
|125.16.65.xxx
|2009-06-18 21:27:36
Nick
- height above sea level?
|120.17.89.xxx
|2009-06-18 21:50:21
kk
- pushpin click
|122.172.34.xxx
|2009-06-24 21:31:39
Peter Sarfas
- Developer
|90.218.35.xxx
|2009-06-24 21:54:52
balaji
- In web.config Cookieless="true" I am getting err
|59.90.16.xxx
|2009-08-01 01:38:18
Shabdar
- Admin
|198.96.180.xxx
|2009-09-03 13:51:16
jp
- not working in firefox
|60.53.194.xxx
|2009-08-09 11:22:15
Shabdar
- Admin
|198.96.180.xxx
|2009-09-03 13:49:58
Jon
- Nerd
|156.33.114.xxx
|2009-08-13 13:40:39
KH
- Sr. Software Architect
|65.101.246.xxx
|2009-08-29 12:28:06
James
- Reference map cotrol from FormView Template
|41.213.126.xxx
|2009-09-04 17:46:30
Gary
- Thank you
|41.7.19.xxx
|2009-09-07 14:34:30
Aqeel
- Server side Internet connection
|119.152.36.xxx
|2009-09-08 00:14:45
Shabdar
|198.96.180.xxx
|2009-09-08 09:41:28
Luke
- re: admin
|82.14.71.xxx
|2009-09-14 16:39:58
izaurek
|195.82.188.xxx
|2009-12-13 15:40:28
Angad Singh Khurana
- Adding KML file using the control.
|124.123.50.xxx
|2009-09-15 01:48:51
Wouter Magre
- Zoomlevel not working
|213.73.228.xxx
|2009-09-17 10:15:03
Wouter Magre
- optional GEvent.addListerer(...)
|213.73.228.xxx
|2009-09-18 07:11:19
Wouter Magré
- Solved it
|213.73.228.xxx
|2009-09-22 03:58:17
James Solo
- Adding new GP in a loop
|144.212.95.xxx
|2009-09-24 11:13:15
Shabdar
- Admin
|198.96.180.xxx
|2009-09-24 12:19:21
Valerio
|151.95.177.xxx
|2009-11-25 07:12:59
James Solo
- Having problem with more than 200 markers
|144.212.95.xxx
|2009-09-29 11:59:57
James Solo
|144.212.95.xxx
|2009-09-29 12:22:11
venkat
- GooglePolyline
|205.197.161.xxx
|2010-03-31 10:59:33
allan
- panning
|203.125.71.xxx
|2009-09-29 21:31:40
allan
|203.125.71.xxx
|2009-09-29 22:10:34
Girish
- Can you provide distance calculation ???
|116.72.253.xxx
|2009-10-10 06:06:19
Nagendra
- Not showing the center point
|125.63.77.xxx
|2009-10-12 05:33:36
Nagendra
- Map not centering properly
|125.63.77.xxx
|2009-10-12 06:08:39
Ravi
- Regions?
|67.172.249.xxx
|2009-10-12 11:57:32
jptnoyb
- Help
|203.177.192.xxx
|2009-10-13 21:04:03
Jim Buckley Barretet
|82.141.234.xxx
|2009-10-14 03:26:15
jptnoyb
- RE: Help
|203.177.192.xxx
|2009-10-14 03:36:04
Girish
- Reminder : Can you provide distance calculation ??
|116.72.253.xxx
|2009-10-14 04:13:12
Jim Buckley Barrett
|82.141.234.xxx
|2009-10-14 04:30:15
Bjarni
|80.196.69.xxx
|2009-10-23 05:24:05
Shabdar
- admin
|198.96.180.xxx
|2009-10-28 08:54:51
Jim
- Adding UpdateProgress
|144.212.95.xxx
|2009-10-26 12:58:52
sudhakar T
- re: Problem with google API CultureInfo code
|202.153.40.xxx
|2009-10-27 06:07:28
Shabdar
- admin
|198.96.180.xxx
|2009-10-28 08:52:55
Aqeel
- Map stopped displaying since yesterday (27-Oct-200
|203.81.199.xxx
|2009-10-28 06:28:41
Shabdar
- admin
|198.96.180.xxx
|2009-10-28 08:51:06
Aqeel
- We are using fixed height
|203.81.199.xxx
|2009-10-28 09:07:40
James Solo
- Show status while updating map?
|144.212.95.xxx
|2009-10-28 10:42:22
Shabdar
- admin
|198.96.180.xxx
|2009-10-28 12:15:33
James Solo
- reply
|144.212.95.xxx
|2009-10-28 13:00:09
Shabdar
- admin
|198.96.180.xxx
|2009-10-29 12:26:19
Bjarni Mortense
|80.196.69.xxx
|2009-10-29 07:04:56
Shabdar
- admin
|198.96.180.xxx
|2009-10-29 08:51:21
James Solo
- Internet Explorer 6 or 7?
|144.212.95.xxx
|2009-10-29 10:29:27
Shabdar
- admin
|198.96.180.xxx
|2009-10-29 11:36:23
James Solo
- reply
|144.212.95.xxx
|2009-10-29 11:51:25
Shabdar
- admin
|198.96.180.xxx
|2009-10-29 12:20:50
James Solo
|144.212.95.xxx
|2009-10-29 13:32:54
James Solo
|144.212.95.xxx
|2009-10-29 13:59:32
Shabdar
- admin
|198.96.180.xxx
|2009-10-29 14:38:14
Shabdar
- admin
|198.96.180.xxx
|2009-10-29 14:18:42
Jonathan
- Marker Manager
|161.149.63.xxx
|2009-10-29 11:34:20
James Solo
|144.212.95.xxx
|2009-10-29 11:52:16
Shabdar
- admin
|198.96.180.xxx
|2009-10-29 12:22:10
Jonathan
|161.149.63.xxx
|2009-11-05 18:36:10
maxi
- This is nice
|59.120.52.xxx
|2009-11-04 21:21:31
girish
- What httphandler & httpModule to include??
|116.72.253.xxx
|2009-11-10 09:41:41
Girish
- Reminder : What httphandler & httpModule to includ
|116.72.253.xxx
|2009-11-11 00:39:08
Girish
- Can I use this google map control in production le
|116.72.253.xxx
|2009-11-12 02:10:09
Jamest
- Google Map not showing under hosted environment
|41.213.126.xxx
|2009-11-12 12:01:15
Shabdar
- admin
|198.96.180.xxx
|2009-11-12 13:25:04
jamest
- Re: Googlemap not showing under hosted server
|41.213.126.xxx
|2009-11-22 15:52:06
Pooja
- How to add scroll on pushpin?
|122.163.149.xxx
|2009-11-12 12:10:27
Girish Chaudhari
- Can not show the map for 4 digit value for latitud
|116.72.253.xxx
|2009-11-13 10:43:13
Jim
|82.141.234.xxx
|2009-11-13 10:49:47
Girish
- How to show direction with arrow from start to End
|116.72.253.xxx
|2009-11-14 02:53:23
Girish
- Reminder : How to show direction with arrow from s
|116.72.253.xxx
|2009-11-14 05:07:52
Girish
- How to integrate this function in javascript??
|116.72.253.xxx
|2009-11-18 00:27:36
nextgen
- User control support for Mobile Application
|115.108.97.xxx
|2009-11-18 04:16:18
Shabdar
- admin
|198.96.180.xxx
|2009-11-18 09:44:29
Girish
- How to show info Html open?????
|116.72.253.xxx
|2009-11-19 00:18:39
Girish
- How to build our own user define
|116.72.253.xxx
|2009-11-19 05:48:54
Bjarni
|80.196.69.xxx
|2009-11-19 09:30:57
Girish
- re: How to show info Html open?????
|116.72.253.xxx
|2009-11-21 08:49:53
jon
|75.227.9.xxx
|2009-11-22 16:18:49
Bjarni Mortensen
- Poping infoWindow on demand
|80.196.69.xxx
|2009-11-25 08:52:00
Roger
|71.5.61.xxx
|2009-11-23 16:45:16
Roger
|71.5.61.xxx
|2009-11-23 17:45:35
Girish
- re: Can not displaying markers above 135 ??
|116.72.253.xxx
|2009-11-24 02:57:47
Roger
|71.5.61.xxx
|2009-11-24 11:58:48
Girish
- Can not displaying markers above 135 ??
|116.72.253.xxx
|2009-11-24 02:35:59
Girish
- re: Can not displaying markers above 135 ??
|116.72.253.xxx
|2009-11-24 02:36:58
Girish
- re: Can not displaying markers above 135 ??
|116.72.253.xxx
|2009-11-24 02:41:27
Girish
- How to create class GoogleIntegrationManager ??
|116.72.253.xxx
|2009-11-27 09:34:14
scsalon
- How to do javascript sidebar with this control
|67.97.229.xxx
|2009-12-10 16:40:08
viram mehta
- how to use client id for google map api premier
|61.17.213.xxx
|2009-12-14 07:45:51
viram mehta
- How to use google map API premier Client ID insted
|61.17.213.xxx
|2009-12-14 07:49:32
Shabdar
- admin
|198.96.180.xxx
|2009-12-14 09:43:40
RK
- Google API version 3.0
|136.181.195.xxx
|2009-12-15 15:37:56
DB
- Google Street View
|207.71.50.xxx
|2009-12-16 12:06:04
meenu
- Googlemap polyline with arrow.
|82.178.39.xxx
|2010-01-03 08:03:46
tc
- Setting up control
|188.141.40.xxx
|2010-01-31 19:37:42
Amir
- Where the heck My points are stored?
|94.74.150.xxx
|2010-02-02 10:57:36
chetna
- gps tracking
|198.96.180.xxx
|2010-02-26 05:25:51
Shabdar
- reverse geocoding
|198.96.180.xxx
|2010-02-26 05:25:22
Raghu
- Earth
|203.199.240.xxx
|2010-03-01 07:19:36
jocy
|217.33.197.xxx
|2010-03-08 11:44:47
Robert
|216.226.176.xxx
|2010-03-08 13:17:55
Eirik R
|195.204.175.xxx
|2010-09-14 06:15:14
Shabdar
- Admin
|198.96.180.xxx
|2010-09-14 09:50:58
nano
- re:
|190.104.4.xxx
|2010-03-12 03:52:58
Meneer Aart
- 'GetGoogleObject'failed
|93.174.200.xxx
|2010-03-15 06:37:35
Maxx
- re:
|196.210.140.xxx
|2010-03-19 06:58:25
dennis
- 2 instances
|78.133.11.xxx
|2010-03-31 14:39:12
Serg
- re: how to measure distanse and Area?
|72.198.218.xxx
|2010-04-27 00:35:59
GivThanks
- Enquires according to longitude and lattitude
|202.12.94.xxx
|2010-05-11 00:32:41
zxgcqupt
- Problem
|125.85.79.xxx
|2010-05-14 23:52:16
yon86
|213.55.74.xxx
|2010-05-15 02:32:46
kirihara
- open popup from infoHTML?
|124.106.45.xxx
|2010-05-19 01:32:07
Anonymous
- re: VB Version?
|59.95.41.xxx
|2010-05-26 03:49:50
KD
- SE
|59.95.41.xxx
|2010-05-26 03:51:02
Lars Karlsson
- Broken vb.net download link
|173.164.189.xxx
|2010-06-07 20:54:58
KiNGPiN
- Awesome work there but .......
|58.65.189.xxx
|2010-06-08 01:53:29
Istiaq Ahmed
- Problem with Google Map
|69.172.16.xxx
|2010-06-14 05:27:12
Istiaq Ahmed
|69.172.16.xxx
|2010-06-14 06:20:07
Istiaq Ahmed
- re:
|69.172.16.xxx
|2010-06-14 06:47:49
Arvinnth
- Map Didn't show
|117.201.35.xxx
|2010-06-20 06:41:22
kremilek10
- Polygon with tootltip or infoHTML
|78.80.170.xxx
|2010-06-25 02:08:31
visham
- to create a GPS system
|115.132.51.xxx
|2010-07-01 09:22:32
vijay
- Google map Rotating
|123.176.39.xxx
|2010-07-06 02:18:04
gauravipec
- Center point
|122.162.161.xxx
|2010-07-09 01:40:29
gauravipec
- Zoom level automatic
|122.162.161.xxx
|2010-07-09 01:43:15
subbu
- driving direction
|122.164.154.xxx
|2010-07-14 04:40:15
Antonio
- API Version 3
|89.119.94.xxx
|2010-08-05 04:15:57
S.Arvinth
- error comming
|117.201.33.xxx
|2010-08-05 06:00:20
iceboy
- HiddenField erro
|187.17.0.xxx
|2010-08-18 13:46:52
iceboy
- Solved!
|187.17.0.xxx
|2010-08-19 12:47:20
Okesh
- Great Work
|84.92.230.xxx
|2010-08-11 05:31:34
Juanjo
- mr
|190.249.17.xxx
|2010-08-30 20:54:55
xeeman
- pushpin Direction
|213.249.249.xxx
|2010-09-06 10:27:07
Eirik R
- re:
|195.204.175.xxx
|2010-09-14 06:13:10
Tharanga
- How to open this
|112.135.5.xxx
|2010-09-21 22:24:03
Swapnil
|124.247.232.xxx
|2010-10-06 06:16:22
sujit paramanik
- Thanks for great control
|113.19.81.xxx
|2010-10-18 00:42:09
sudheesh
- gmap in 2010
|122.166.96.xxx
|2010-12-02 03:52:02
Supriya Chakraborty
- Need help on reverse geocoding
|59.93.196.xxx
|2010-12-11 11:42:23
Pradeep
- openinfowindow On pageload
|220.224.228.xxx
|2010-12-15 05:46:28
Shabdar
|198.96.180.xxx
|2011-03-21 11:35:21
Ashraf Tammam
- Eng.
|41.32.28.xxx
|2010-12-15 09:34:01
sudheesh
- poliline
|122.166.96.xxx
|2010-12-22 04:23:59
Shabdar
|198.96.180.xxx
|2011-03-21 11:33:21
Sudheesh
- Google Api
|122.166.96.xxx
|2010-12-22 07:00:57
Shabdar
|198.96.180.xxx
|2011-03-21 11:29:32
Khaled
|41.32.24.xxx
|2010-12-27 04:31:08
Khaled
|41.32.24.xxx
|2010-12-27 07:13:36
Shabdar
|198.96.180.xxx
|2011-03-21 11:26:23
Kourosh
- Dirrection issues
|72.211.221.xxx
|2011-02-02 18:42:01
Shabdar
|198.96.180.xxx
|2011-03-21 11:22:45
Shekh Fahimuddin
- Software Engineer
|122.180.71.xxx
|2011-03-15 05:15:58
Shabdar
|198.96.180.xxx
|2011-03-21 11:18:06
Meenu
- Geofence using this code
|85.154.175.xxx
|2011-03-15 07:45:07
Shabdar
- re: Geofence using this code
|198.96.180.xxx
|2011-03-21 11:09:19
Shabdar
|198.96.180.xxx
|2011-03-21 07:13:19
kim
- re: Admin
|122.177.216.xxx
|2011-04-01 06:09:52
Salman Baig
- Need to Fix GetHTTPURL and GetLocalPath in cGoogle
|110.93.205.xxx
|2011-04-06 01:23:28
Salman Baig
- re: Need to Fix GetHTTPURL and GetLocalPath in cGo
|110.93.205.xxx
|2011-04-06 01:25:29



![[b]](http://www.shabdar.org/components/com_comment/joscomment/images/ubb_bold.gif)
![[i]](http://www.shabdar.org/components/com_comment/joscomment/images/ubb_italicize.gif)
![[u]](http://www.shabdar.org/components/com_comment/joscomment/images/ubb_underline.gif)
![[url]](http://www.shabdar.org/components/com_comment/joscomment/images/ubb_url.gif)
![[quote]](http://www.shabdar.org/components/com_comment/joscomment/images/ubb_quote.gif)
![[code]](http://www.shabdar.org/components/com_comment/joscomment/images/ubb_code.gif)
![[img]](http://www.shabdar.org/components/com_comment/joscomment/images/ubb_image.gif)