Hi,
in a google map coding.
add one extra point as a googlePoint.
in a google point add your database latitude and longitude.
and then add this google point to ypur google object.
Like This,
GP1 = new GooglePoint();
GP1.ID = dsBindData.Tables[0].Rows[i]["Bu"].ToString();
GP1.Latitude = Convert.ToDouble(dsBindData.Tables[0].Rows[i]["Latitude"].ToString());
GP1.Longitude = Convert.ToDouble(dsBindData.Tables[0].Rows[i]["Longitude"].ToString());
GP1.IconImage = "1.png";
GoogleMapForASPNet1.GoogleMapObject.Points.Add(GP1);
googlepoint is inbuilt in a google map.
let me know,
Regards,
Harsh Shah