here is my code
Document doc = new Document();
DocumentBuilder builder = new DocumentBuilder(doc);
builder.InsertCell();
builder.Write("Project Profile");
builder.EndRow();
// for google map creation in PDF
GoogleObject gd = new GoogleObject();
gd.APIKey = "ABQIAAAAM_BdUOIGr6Vs28A4DnA7IBQNDeLh1sXO3sz5a4SfWAQT5CaTjxTj-pomVoIfPcybZ5XlR1AfMjn6lg"; gd.APIVersion = "2"; gd.Width = "600px"; gd.Height = "200px"; gd.ZoomLevel = 11;
GooglePolyline PL1 = new GooglePolyline();
PL1.ID = "PL1";
PL1.ColorCode = "#3333cc";
gd.CenterPoint = new GooglePoint("CenterPoint", 27, 49.66)
gd.Polylines.Add(PL1);
How to add this gd object to the buider
builder.----------------
builder.EndTable();