ImageEn, unit iexVirtualBitmaps |
|
TIESlippyMap.Longitude
Declaration
property Longitude: double;
Description
Specifies the longitude of point position (
PointPosition) in decimal degrees. Allowed range is between -180 and 180 degrees.
See Also
◼Latitude◼Zoom◼PointPosition// move to London
with TIESlippyMap(ImageEnView1.IEBitmap.VirtualBitmapProvider) do
begin
Latitude := 51.503614574056016;
Longitude := -0.12774750793460043;
end;
ImageEnView1.Update();