LazMapViewer: Avoid duplicate storage of property values in TMapPoint and TMapPointOfInterest.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@9636 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz 2025-02-12 22:31:37 +00:00
parent 9e05b54fae
commit 7830ba9937
2 changed files with 101 additions and 80 deletions

View File

@ -191,7 +191,6 @@ type
FOpacity: Single; FOpacity: Single;
public public
constructor Create; constructor Create;
procedure Draw({%H-}AView: TObject; {%H-}Area: TRealArea); override; procedure Draw({%H-}AView: TObject; {%H-}Area: TRealArea); override;
property FillColor: TColor read FFillColor write FFillColor; property FillColor: TColor read FFillColor write FFillColor;
property LineColor: TColor read FLineColor write FLineColor; property LineColor: TColor read FLineColor write FLineColor;

View File

@ -279,12 +279,12 @@ type
TMapPoint = class(TMapItem) TMapPoint = class(TMapItem)
private private
FDateTime: TDateTime;
FElevation: Double;
FLatitude: Double;
FLongitude: Double;
FPoint: TGPSPoint; FPoint: TGPSPoint;
function GetDateTime: TDateTime;
function GetElevation: Double;
function GetLatitude: Double;
function GetLatLonInDMS: Boolean; function GetLatLonInDMS: Boolean;
function GetLongitude: Double;
function GetRealPoint: TRealPoint; function GetRealPoint: TRealPoint;
function GetToScreen: TPoint; function GetToScreen: TPoint;
function IsDateTimeStored: Boolean; function IsDateTimeStored: Boolean;
@ -308,10 +308,10 @@ type
property RealPoint: TRealPoint read GetRealPoint write SetRealPoint; property RealPoint: TRealPoint read GetRealPoint write SetRealPoint;
property ToScreen: TPoint read GetToScreen; property ToScreen: TPoint read GetToScreen;
published published
property Longitude: Double read FLongitude write SetLongitude; property Longitude: Double read GetLongitude write SetLongitude;
property Latitude: Double read FLatitude write SetLatitude; property Latitude: Double read GetLatitude write SetLatitude;
property Elevation: Double read FElevation write SetElevation stored IsElevationStored; property Elevation: Double read GetElevation write SetElevation stored IsElevationStored;
property DateTime: TDateTime read FDateTime write SetDateTime stored IsDateTimeStored; property DateTime: TDateTime read GetDateTime write SetDateTime stored IsDateTimeStored;
end; end;
{ TMapTrackPoint } { TMapTrackPoint }
@ -360,12 +360,12 @@ type
TMapPointOfInterest = class(TMapPoint) TMapPointOfInterest = class(TMapPoint)
private private
FImageAnchorX: Integer;
FImageAnchorY: Integer;
FImageIndex: TImageIndex;
FTextPositionHor: TTextPositionHor;
FTextPositionVert: TTextPositionVert;
FOnDrawPoint: TMapPointOfInterestDrawEvent; FOnDrawPoint: TMapPointOfInterestDrawEvent;
function GetImageAnchorX: Integer;
function GetImageAnchorY: Integer;
function GetImageIndex: Integer;
function GetTextPositionHor: TTextPositionHor;
function GetTextPositionVert: TTextPositionVert;
procedure SetImageAnchorX(AValue: Integer); procedure SetImageAnchorX(AValue: Integer);
procedure SetImageAnchorY(AValue: Integer); procedure SetImageAnchorY(AValue: Integer);
procedure SetImageIndex(AValue: TImageIndex); procedure SetImageIndex(AValue: TImageIndex);
@ -381,11 +381,11 @@ type
constructor Create(ACollection: TCollection); override; constructor Create(ACollection: TCollection); override;
procedure AssignTo(Dest: TPersistent); override; procedure AssignTo(Dest: TPersistent); override;
published published
property ImageAnchorX: Integer read FImageAnchorX write SetImageAnchorX default 50; property ImageAnchorX: Integer read GetImageAnchorX write SetImageAnchorX default 50;
property ImageAnchorY: Integer read FImageAnchorY write SetImageAnchorY default 100; property ImageAnchorY: Integer read GetImageAnchorY write SetImageAnchorY default 100;
property ImageIndex: TImageIndex read FImageIndex write SetImageIndex default -1; property ImageIndex: TImageIndex read GetImageIndex write SetImageIndex default -1;
property TextPositionHor: TTextPositionHor read FTextPositionHor write SetTextPositionHor default tphCenter; property TextPositionHor: TTextPositionHor read GetTextPositionHor write SetTextPositionHor default tphCenter;
property TextPositionVert: TTextPositionVert read FTextPositionVert write SetTextPositionVert default tpvBelow; property TextPositionVert: TTextPositionVert read GetTextPositionVert write SetTextPositionVert default tpvBelow;
property OnDrawPoint: TMapPointOfInterestDrawEvent read FOnDrawPoint write SetOnDrawPoint; property OnDrawPoint: TMapPointOfInterestDrawEvent read FOnDrawPoint write SetOnDrawPoint;
end; end;
@ -1620,27 +1620,52 @@ end;
{ TMapPoint } { TMapPoint }
function TMapPoint.GetDateTime: TDateTime;
begin
Result := FPoint.DateTime;
end;
function TMapPoint.GetElevation: Double;
begin
Result := FPoint.Elevation;
end;
function TMapPoint.GetLatitude: Double;
begin
Result := FPoint.Lat;
end;
function TMapPoint.GetLongitude: Double;
begin
Result := FPoint.Lon;
end;
function TMapPoint.GetRealPoint: TRealPoint;
begin
Result := FPoint.RealPoint;
end;
function TMapPoint.IsDateTimeStored: Boolean; function TMapPoint.IsDateTimeStored: Boolean;
begin begin
Result := not (FDateTime = NO_DATE); Result := not (FPoint.DateTime = NO_DATE);
end; end;
function TMapPoint.IsElevationStored: Boolean; function TMapPoint.IsElevationStored: Boolean;
begin begin
Result := not (FElevation = NO_ELE); Result := not (FPoint.Elevation = NO_ELEVATION);
end; end;
procedure TMapPoint.SetDateTime(AValue: TDateTime); procedure TMapPoint.SetDateTime(AValue: TDateTime);
begin begin
if FDateTime=AValue then Exit; if FPoint.DateTime = AValue then Exit;
FDateTime:=AValue; FPoint.DateTime := AValue;
ItemChanged; ItemChanged;
end; end;
procedure TMapPoint.SetElevation(AValue: Double); procedure TMapPoint.SetElevation(AValue: Double);
begin begin
if FElevation=AValue then Exit; if FPoint.Elevation = AValue then Exit;
FElevation:=AValue; FPoint.Elevation := AValue;
ItemChanged; ItemChanged;
end; end;
@ -1649,11 +1674,6 @@ begin
Result := Assigned(View) and (mvoLatLonInDMS in View.Options); Result := Assigned(View) and (mvoLatLonInDMS in View.Options);
end; end;
function TMapPoint.GetRealPoint: TRealPoint;
begin
Result := mvTypes.RealPoint(FLatitude, FLongitude);
end;
function TMapPoint.GetToScreen: TPoint; function TMapPoint.GetToScreen: TPoint;
begin begin
Result := View.LatLonToScreen(GetRealPoint); Result := View.LatLonToScreen(GetRealPoint);
@ -1661,23 +1681,23 @@ end;
procedure TMapPoint.SetLatitude(AValue: Double); procedure TMapPoint.SetLatitude(AValue: Double);
begin begin
if FLatitude = AValue then Exit; if FPoint.Lat = AValue then Exit;
FLatitude := AValue; FPoint.Lat := AValue;
ItemChanged; ItemChanged;
end; end;
procedure TMapPoint.SetLongitude(AValue: Double); procedure TMapPoint.SetLongitude(AValue: Double);
begin begin
if FLongitude = AValue then Exit; if FPoint.Lon = AValue then Exit;
FLongitude := AValue; FPoint.Lon := AValue;
ItemChanged; ItemChanged;
end; end;
procedure TMapPoint.SetRealPoint(AValue: TRealPoint); procedure TMapPoint.SetRealPoint(AValue: TRealPoint);
begin begin
if (FLatitude = AValue.Lat) and (FLongitude = AValue.Lon) then exit; if (FPoint.Lat = AValue.Lat) and (FPoint.Lon = AValue.Lon) then exit;
FLatitude := AValue.Lat; FPoint.Lat := AValue.Lat;
FLongitude := AValue.Lon; FPoint.Lon := AValue.Lon;
ItemChanged; ItemChanged;
end; end;
@ -1688,12 +1708,8 @@ end;
procedure TMapPoint.ItemChanged; procedure TMapPoint.ItemChanged;
begin begin
FPoint.Lon := Longitude;
FPoint.Lat := Latitude;
FPoint.Name := Caption; FPoint.Name := Caption;
FPoint.Visible := Visible; FPoint.Visible := Visible;
FPoint.Elevation := Elevation;
FPoint.DateTime := DateTime;
Changed(False); Changed(False);
end; end;
@ -1711,7 +1727,7 @@ end;
function TMapPoint.CreatePoint: TGPSPoint; function TMapPoint.CreatePoint: TGPSPoint;
begin begin
Result := TGPSPoint.Create(FLongitude, FLatitude); Result := TGPSPoint.Create(0,0);
end; end;
procedure TMapPoint.DestroyPoint; procedure TMapPoint.DestroyPoint;
@ -1721,12 +1737,10 @@ end;
constructor TMapPoint.Create(ACollection: TCollection); constructor TMapPoint.Create(ACollection: TCollection);
begin begin
inherited Create(ACollection); inherited Create(ACollection);
FLongitude := View.Center.Lon;
FLatitude := View.Center.Lat;
FVisible := True;
FElevation := NO_ELE;
FDateTime := NO_DATE;
FPoint := CreatePoint; FPoint := CreatePoint;
FPoint.Lat := View.Center.Lat;
FPoint.Lon := View.Center.Lon;
FVisible := True;
end; end;
destructor TMapPoint.Destroy; destructor TMapPoint.Destroy;
@ -1743,32 +1757,58 @@ begin
Latitude := Self.Latitude; Latitude := Self.Latitude;
Longitude := Self.Longitude; Longitude := Self.Longitude;
Elevation := Self.Elevation; Elevation := Self.Elevation;
DateTime := Self.DateTime; DateTime := Self.DateTime; // Visible?, Caption?
end end
else else
inherited AssignTo(Dest); inherited AssignTo(Dest);
end; end;
{ TMapPointOfInterest } { TMapPointOfInterest }
function TMapPointOfInterest.GetImageAnchorX: Integer;
begin
Result := TGPSPointOfInterest(FPoint).ImageAnchorX;
end;
function TMapPointOfInterest.GetImageAnchorY: Integer;
begin
Result := TGPSPointOfInterest(FPoint).ImageAnchorY;
end;
function TMapPointOfInterest.GetImageIndex: Integer;
begin
Result := TGPSPointOfInterest(FPoint).ImageIndex;
end;
function TMapPointOfInterest.GetTextPositionHor: TTextPositionHor;
begin
Result := TGPSPointOfInterest(FPoint).TextPositionHor;
end;
function TMapPointOfInterest.GetTextPositionVert: TTextPositionVert;
begin
Result := TGPSPointOfInterest(FPoint).TextPositionVert;
end;
procedure TMapPointOfInterest.SetImageAnchorX(AValue: Integer); procedure TMapPointOfInterest.SetImageAnchorX(AValue: Integer);
begin begin
if FImageAnchorX = AValue then exit; if TGPSPointOfInterest(FPoint).ImageAnchorX = AValue then exit;
FImageAnchorX := AValue; TGPSPointOfInterest(FPoint).ImageAnchorX := AValue;
ItemChanged; ItemChanged;
end; end;
procedure TMapPointOfInterest.SetImageAnchorY(AValue: Integer); procedure TMapPointOfInterest.SetImageAnchorY(AValue: Integer);
begin begin
if FImageAnchorY = AValue then exit; if TGPSPointOfInterest(FPoint).ImageAnchorY = AValue then exit;
FImageAnchorY := AValue; TGPSPointOfInterest(FPoint).ImageAnchorY := AValue;
ItemChanged; ItemChanged;
end; end;
procedure TMapPointOfInterest.SetImageIndex(AValue: TImageIndex); procedure TMapPointOfInterest.SetImageIndex(AValue: TImageIndex);
begin begin
if FImageIndex = AValue then Exit; if TGPSPointOfInterest(FPoint).ImageIndex = AValue then Exit;
FImageIndex := AValue; TGPSPointOfInterest(FPoint).ImageIndex := AValue;
ItemChanged; ItemChanged;
end; end;
@ -1785,15 +1825,15 @@ end;
procedure TMapPointOfInterest.SetTextPositionHor(AValue: TTextPositionHor); procedure TMapPointOfInterest.SetTextPositionHor(AValue: TTextPositionHor);
begin begin
if FTextPositionHor = AValue then Exit; if TGPSPointOfInterest(FPoint).TextPositionHor = AValue then Exit;
FTextPositionHor := AValue; TGPSPointOfInterest(FPoint).TextPositionHor := AValue;
ItemChanged; ItemChanged;
end; end;
procedure TMapPointOfInterest.SetTextPositionVert(AValue: TTextPositionVert); procedure TMapPointOfInterest.SetTextPositionVert(AValue: TTextPositionVert);
begin begin
if FTextPositionVert = AValue then Exit; if TGPSPointOfInterest(FPoint).TextPositionVert = AValue then Exit;
FTextPositionVert := AValue; TGPSPointOfInterest(FPoint).TextPositionVert := AValue;
ItemChanged; ItemChanged;
end; end;
@ -1806,22 +1846,14 @@ end;
procedure TMapPointOfInterest.ItemChanged; procedure TMapPointOfInterest.ItemChanged;
begin begin
TGPSPointOfInterest(FPoint).ImageIndex := FImageIndex;
TGPSPointOfInterest(FPoint).ImageAnchorX := FImageAnchorX;
TGPSPointOfInterest(FPoint).ImageAnchorY := FImageAnchorY;
TGPSPointOfInterest(FPoint).TextPositionHor := FTextPositionHor;
TGPSPointOfInterest(FPoint).TextPositionVert := FTextPositionVert;
inherited ItemChanged; inherited ItemChanged;
end; end;
function TMapPointOfInterest.CreatePoint: TGPSPoint; function TMapPointOfInterest.CreatePoint: TGPSPoint;
begin begin
Result := TGPSPointOfInterest.Create(FLongitude, FLatitude); Result := TGPSPointOfInterest.Create(0, 0);
TGPSPointOfInterest(Result).ImageIndex := FImageIndex; // By default the image anchor is at the bottom center of the icon, and
TGPSPointOfInterest(Result).ImageAnchorX := FImageAnchorX; // text is centered below the point (inherited from TGPSPointOfInterest)
TGPSPointOfInterest(Result).ImageAnchorY := FImageAnchorY;
TGPSPointOfInterest(Result).TextPositionHor := FTextPositionHor;
TGPSPointOfInterest(Result).TextPositionVert := FTextPositionVert;
Layer.ComboLayer.Add(Result, Pred(_TILELAYERS_ID_), Self.Index + BASE_Z_POI); Layer.ComboLayer.Add(Result, Pred(_TILELAYERS_ID_), Self.Index + BASE_Z_POI);
end; end;
@ -1834,11 +1866,6 @@ end;
constructor TMapPointOfInterest.Create(ACollection: TCollection); constructor TMapPointOfInterest.Create(ACollection: TCollection);
begin begin
inherited Create(ACollection); inherited Create(ACollection);
FImageAnchorX := 50; // Percentage!, i.e. anchor is at bottom center of icon
FImageAnchorY := 100;
FImageIndex := -1;
FTextPositionHor := tphCenter; // Text is centered below the point
FTextPositionVert := tpvBelow;
end; end;
procedure TMapPointOfInterest.AssignTo(Dest: TPersistent); procedure TMapPointOfInterest.AssignTo(Dest: TPersistent);
@ -1867,12 +1894,7 @@ function TMapLatLonElement.GetLatLonInDMS: Boolean;
begin begin
Result := Assigned(FView) and (mvoLatLonInDMS in FView.Options); Result := Assigned(FView) and (mvoLatLonInDMS in FView.Options);
end; end;
{
function TMapLatLonElement.GetOwner: TPersistent;
begin
Result := FView;
end;
}
procedure TMapLatLonElement.Update; procedure TMapLatLonElement.Update;
begin begin
if Assigned(FOnChange) then FOnChange(self); if Assigned(FOnChange) then FOnChange(self);