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