ThinkGeo.com    |     Documentation    |     Premium Support

PDF Export with Feature Data and GeoLocation

Hi,

how to export GeoLocation and Feature Data to PDF?

A customer likes to store coordinates and Feature data into PDF.
Is there a way to do so?

Regards
Hardy

Hi Hardy,

I think you means your customer want to save the data into pdf just like save them to dbf.

We implement the pdfgeocanvas via pdfsharp, so I think we cannot store information into PDF.

We can only “Draw” features into pdf just like what we did in our sample:

foreach (Layer layer in mapEngine.StaticLayers)
{
pdfGeoCanvas.BeginDrawing(page, mapEngine.CurrentExtent, GeographyUnit.DecimalDegree);
layer.Open();
layer.Draw(pdfGeoCanvas, labelsInLayers);
layer.Close();
pdfGeoCanvas.EndDrawing();
}

Regards,

Don