An area on a chart page, possibly geo-referenced.

 

Syntax
struct FsChartArea
{
    const char* layer;
    bool geoReferenced;
    FsChartRectangle chartRectangle;
    FsChartRectangle worldRectangle;
    FsChartGeoReferenceLambertConformalConicProjection projection;
};

 

Members
Enum MemberDescription
layerThe layer name.
geoReferencedWhether the area is geo-referenced. If it is, worldRectangle and projection will have values.
chartRectangleThe rectangle giving the pixel coordinates of the area on the chart.
worldRectangleThe rectangle giving the longitude/latitude coordinates of the area on the chart. Only valid if geoReferenced is true.
projectionThe projection used by the area. Only valid if geoReferenced is true.

 

Remarks

N/A