From 234c16404da01a6f2c7ed8c88bb6b06721c43d2d Mon Sep 17 00:00:00 2001 From: alpine-a110 Date: Sat, 10 Feb 2024 17:53:13 +0000 Subject: [PATCH] LazMapViewer: Default map center at (0,0) with zoom=1 git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@9233 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- components/lazmapviewer/source/mvmapviewer.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/lazmapviewer/source/mvmapviewer.pas b/components/lazmapviewer/source/mvmapviewer.pas index faed3a588..5db3222af 100644 --- a/components/lazmapviewer/source/mvmapviewer.pas +++ b/components/lazmapviewer/source/mvmapviewer.pas @@ -1577,11 +1577,11 @@ begin FCenter := TMapCenter.Create(Self); FCenter.Longitude := 0.0; - FCenter.Latitude := 51.47696; // Greenwich observatory + FCenter.Latitude := 0.0; FZoomMin := 0; FZoomMax := 19; - Zoom := 15; + Zoom := 1; end; destructor TMapView.Destroy;