DK11 for Delphi | GisLayer.TGIS_Layer.Unproject | Constructors | Fields | Methods | Properties | Events
Applies reverse projection (recovers from the projection) on the single point.
// Delphi public function Unproject( const _ptg : TGIS_Point ) : TGIS_Point; virtual;
// C++ Builder public: virtual TGIS_Point* Unproject( TGIS_Point* const _ptg );
Name | Type | Description |
---|---|---|
_ptg | TGIS_Point | point to be unprojected |
Type | Description |
---|---|
TGIS_Point | unprojected point |
ptg.X := DegToRadians( 18 ) ; ptg.Y := DegToRadians( 54 ) ; GIS.CenterViewport( Layer.Unproject( ptg ) ) ;