DK11 for Delphi | GisInterfaces.IGIS_Viewer.RotationAngle | Methods | Properties
Angle of viewer rotation in radians.
// Delphi public property RotationAngle : Double read write;
// C++ Builder public: __property double RotationAngle = {read, write};
Type |
---|
Double |
This is a simple code how to rotate a map.
procedure MyForm.GIS_SpinEdit1Change(Sender: TObject); begin // calculate the angle for set value GIS.RotationAngle := DegToRad( GIS_SpinEdit1.Value ) ; GIS.Update ; end ;