LazMapViewer: Add all points of clicked shape (track or area) to selection of TMarkerSelectAndDragPlugin.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@9692 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz 2025-03-20 23:43:11 +00:00
parent bba6b4a7e6
commit 980bc6f436
2 changed files with 152 additions and 27 deletions

View File

@ -1,18 +1,18 @@
object MainForm: TMainForm object MainForm: TMainForm
Left = 513 Left = 513
Height = 505 Height = 566
Top = 157 Top = 157
Width = 756 Width = 796
Caption = 'Marker Select & Drag Demo' Caption = 'Marker Select & Drag Demo'
ClientHeight = 505 ClientHeight = 566
ClientWidth = 756 ClientWidth = 796
LCLVersion = '4.99.0.0' LCLVersion = '4.99.0.0'
OnCreate = FormCreate OnCreate = FormCreate
object MapView: TMapView object MapView: TMapView
Left = 0 Left = 0
Height = 396 Height = 457
Top = 0 Top = 0
Width = 756 Width = 796
Align = alClient Align = alClient
DownloadEngine = MapView.BuiltInDLE DownloadEngine = MapView.BuiltInDLE
DrawingEngine = MapView.BuiltInDE DrawingEngine = MapView.BuiltInDE
@ -25,7 +25,7 @@ object MainForm: TMainForm
object Bevel1: TBevel object Bevel1: TBevel
AnchorSideLeft.Control = Owner AnchorSideLeft.Control = Owner
AnchorSideLeft.Side = asrCenter AnchorSideLeft.Side = asrCenter
Left = 375 Left = 395
Height = 50 Height = 50
Top = 108 Top = 108
Width = 6 Width = 6
@ -34,13 +34,13 @@ object MainForm: TMainForm
object Panel1: TPanel object Panel1: TPanel
Left = 0 Left = 0
Height = 109 Height = 109
Top = 396 Top = 457
Width = 756 Width = 796
Align = alBottom Align = alBottom
AutoSize = True AutoSize = True
BevelOuter = bvNone BevelOuter = bvNone
ClientHeight = 109 ClientHeight = 109
ClientWidth = 756 ClientWidth = 796
TabOrder = 1 TabOrder = 1
object cgPointTypes: TCheckGroup object cgPointTypes: TCheckGroup
AnchorSideLeft.Control = Panel1 AnchorSideLeft.Control = Panel1
@ -112,12 +112,12 @@ object MainForm: TMainForm
AnchorSideLeft.Control = cgPointTypes AnchorSideLeft.Control = cgPointTypes
AnchorSideLeft.Side = asrBottom AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = cgPointTypes AnchorSideTop.Control = cgPointTypes
AnchorSideBottom.Control = cgPointTypes AnchorSideBottom.Control = cbMultiSelect
AnchorSideBottom.Side = asrBottom AnchorSideBottom.Side = asrBottom
Left = 379 Left = 379
Height = 70 Height = 95
Top = 8 Top = 8
Width = 133 Width = 166
Anchors = [akTop, akLeft, akBottom] Anchors = [akTop, akLeft, akBottom]
AutoFill = True AutoFill = True
AutoSize = True AutoSize = True
@ -130,24 +130,27 @@ object MainForm: TMainForm
ChildSizing.ShrinkVertical = crsScaleChilds ChildSizing.ShrinkVertical = crsScaleChilds
ChildSizing.Layout = cclLeftToRightThenTopToBottom ChildSizing.Layout = cclLeftToRightThenTopToBottom
ChildSizing.ControlsPerLine = 1 ChildSizing.ControlsPerLine = 1
ClientHeight = 50 ClientHeight = 75
ClientWidth = 129 ClientWidth = 162
ItemIndex = 0 ItemIndex = 0
Items.Strings = ( Items.Strings = (
'Add to selection' 'Add point to selection'
'Toggle selection' 'Add shape to selection'
'Toggle selected point'
) )
TabOrder = 1 TabOrder = 1
OnClick = rgClickModeClick OnClick = rgClickModeClick
end end
object cbMultiSelect: TCheckBox object cbMultiSelect: TCheckBox
AnchorSideLeft.Control = rgClickMode AnchorSideLeft.Control = Label2
AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = Label1 AnchorSideTop.Control = Label1
AnchorSideTop.Side = asrCenter AnchorSideTop.Side = asrCenter
Left = 379 Left = 219
Height = 19 Height = 19
Top = 84 Top = 84
Width = 77 Width = 77
BorderSpacing.Left = 24
Caption = 'MultiSelect' Caption = 'MultiSelect'
TabOrder = 2 TabOrder = 2
OnChange = cbMultiSelectChange OnChange = cbMultiSelectChange
@ -156,7 +159,7 @@ object MainForm: TMainForm
AnchorSideLeft.Control = rgClickMode AnchorSideLeft.Control = rgClickMode
AnchorSideLeft.Side = asrBottom AnchorSideLeft.Side = asrBottom
AnchorSideTop.Control = rgClickMode AnchorSideTop.Control = rgClickMode
Left = 520 Left = 553
Height = 25 Height = 25
Top = 8 Top = 8
Width = 109 Width = 109
@ -170,7 +173,7 @@ object MainForm: TMainForm
AnchorSideLeft.Control = btnDeleteSelection AnchorSideLeft.Control = btnDeleteSelection
AnchorSideTop.Control = btnDeleteSelection AnchorSideTop.Control = btnDeleteSelection
AnchorSideTop.Side = asrBottom AnchorSideTop.Side = asrBottom
Left = 520 Left = 553
Height = 25 Height = 25
Top = 33 Top = 33
Width = 111 Width = 111
@ -183,7 +186,7 @@ object MainForm: TMainForm
AnchorSideLeft.Control = btnDeleteSelection AnchorSideLeft.Control = btnDeleteSelection
AnchorSideTop.Control = btnConvertToTrack AnchorSideTop.Control = btnConvertToTrack
AnchorSideTop.Side = asrBottom AnchorSideTop.Side = asrBottom
Left = 520 Left = 553
Height = 25 Height = 25
Top = 58 Top = 58
Width = 107 Width = 107
@ -198,7 +201,7 @@ object MainForm: TMainForm
AnchorSideTop.Control = btnDeleteSelection AnchorSideTop.Control = btnDeleteSelection
AnchorSideBottom.Control = btnConvertToArea AnchorSideBottom.Control = btnConvertToArea
AnchorSideBottom.Side = asrBottom AnchorSideBottom.Side = asrBottom
Left = 639 Left = 672
Height = 63 Height = 63
Top = 20 Top = 20
Width = 103 Width = 103

View File

@ -96,7 +96,7 @@ type
ADrawingEngine: TMvCustomDrawingEngine; AGPSPoint: TGPSPoint; ADrawingEngine: TMvCustomDrawingEngine; AGPSPoint: TGPSPoint;
AScreenPoint: TPoint; AMarkerSize: Integer) of object; AScreenPoint: TPoint; AMarkerSize: Integer) of object;
TMarkerClickMode = (mcmAddToSelection, mcmToggleSelection); TMarkerClickMode = (mcmAddPointToSelection, mcmAddShapeToSelection, mcmToggleSelectedPoint);
TMarkerSelectAndDragPlugin = class(TMarkerClickPlugin) TMarkerSelectAndDragPlugin = class(TMarkerClickPlugin)
private private
@ -137,9 +137,10 @@ type
function ConvertSelectedPointsToGPSTrack(AMapView: TMapView; ATrackID: Integer): TGPSTrack; function ConvertSelectedPointsToGPSTrack(AMapView: TMapView; ATrackID: Integer): TGPSTrack;
function ConvertSelectedPointsToMapTrack(AMapView: TMapView; ALayer: TMapLayer): TMapTrack; function ConvertSelectedPointsToMapTrack(AMapView: TMapView; ALayer: TMapLayer): TMapTrack;
procedure DeleteSelectedPoints(AMapView: TMapView); procedure DeleteSelectedPoints(AMapView: TMapView);
procedure SelectAllPointsOfShape(AMapView: TMapView; APoint: TGPSPoint);
property Selection: TGPSPointList read FSelection; property Selection: TGPSPointList read FSelection;
published published
property ClickMode: TMarkerClickMode read FClickMode write FClickMode default mcmAddToSelection; property ClickMode: TMarkerClickMode read FClickMode write FClickMode default mcmAddPointToSelection;
property DragCursor: TCursor read FDragCursor write FDragCursor default crSizeAll; property DragCursor: TCursor read FDragCursor write FDragCursor default crSizeAll;
property MultiSelect: Boolean read FMultiSelect write SetMultiSelect default false; property MultiSelect: Boolean read FMultiSelect write SetMultiSelect default false;
property OnDrawPoint: TMarkerDrawPointEvent read FOnDrawPoint write FOnDrawPoint; property OnDrawPoint: TMarkerDrawPointEvent read FOnDrawPoint write FOnDrawPoint;
@ -738,8 +739,9 @@ begin
if FMouseDownOnMarker then if FMouseDownOnMarker then
begin begin
case FClickMode of case FClickMode of
mcmAddToSelection : AddToSelection(AMapView, FOrigGPSPoint); mcmAddPointToSelection: AddToSelection(AMapView, FOrigGPSPoint);
mcmToggleSelection: ToggleSelected(AMapView, FOrigGPSPoint); mcmAddShapeToSelection: SelectAllPointsOfShape(AMapView, FOrigGPSPoint);
mcmToggleSelectedPoint: ToggleSelected(AMapView, FOrigGPSPoint);
end; end;
Update; Update;
Handled := true; Handled := true;
@ -786,6 +788,126 @@ begin
DragEnd(AMapView); DragEnd(AMapView);
end; end;
procedure TMarkerSelectAndDragPlugin.SelectAllPointsOfShape(AMapView: TMapView;
APoint: TGPSPoint);
var
i, j, k, L: Integer;
gpsLayer: TGPSObjectList;
gpsPOI: TGPSPointOfInterest;
gpsPolyline: TGPSPolyLine;
item: TGPSObj;
p: TMapPoint;
mapLayer: TMapLayer;
mapTrack: TMapTrack;
mapArea: TMapArea;
function IsSamePoint(AItem: TGPSObj): Boolean;
begin
Result := (AItem is TGPSPoint) and TGPSPoint(AItem).RealPoint.Equal(APoint.RealPoint);
end;
procedure Finished;
begin
AddToSelection(AMapView, APoint); // Mark APoint as being focused
Update;
DoSelectionChange(AMapView);
end;
begin
// Check the 10 layers of GPSItems
for i := 0 to 9 do
begin
gpsLayer := AMapView.GPSLayer[i];
for j := 0 to gpsLayer.Count-1 do
begin
item := gpsLayer[j];
if (item is TGPSPointOfInterest) then
begin
gpsPOI := TGPSPointOfInterest(item);
if gpsPOI.RealPoint.Equal(APoint.RealPoint) then
begin
AddToSelection(AMapView, TGPSPoint(item));
Finished;
Exit;
end;
end;
if (item is TGPSPolyline) then
begin
gpsPolyLine := TGPSPolyLine(item);
for k := 0 to gpsPolyLine.Points.Count-1 do
begin
item := gpsPolyLine.Points[k];
if IsSamePoint(item) then
begin
for L := 0 to GPSPolyLine.Points.Count-1 do
begin
item := gpsPolyLine.Points[L];
AddToSelection(AMapView, TGPSPoint(item));
end;
Finished;
exit;
end;
end;
end;
end;
end;
// Check the map layers
for i := 0 to AMapView.Layers.Count-1 do
begin
mapLayer := AMapView.Layers[i];
// Points of interest?
for j := 0 to mapLayer.PointsOfInterest.Count-1 do
begin
p := mapLayer.PointsOfInterest[j];
if IsSamePoint(p.GPSObj) then
begin
AddToSelection(AMapView, TGPSPoint(p.GPSObj));
Finished;
Exit;
end;
end;
// Tracks?
for j := 0 to mapLayer.Tracks.Count-1 do
begin
mapTrack := mapLayer.Tracks[j];
for k := 0 to mapTrack.Points.Count-1 do
begin
p := mapTrack.Points[k];
if IsSamePoint(p.GPSObj) then
begin
for L := 0 to mapTrack.Points.Count-1 do
begin
p := mapTrack.Points[L];
AddToSelection(AMapView, TGPSPoint(p.GPSObj));
end;
Finished;
exit;
end;
end;
end;
// Areas?
for j := 0 to mapLayer.Areas.Count-1 do
begin
mapArea := mapLayer.Areas[j];
for k := 0 to mapArea.Points.Count-1 do
begin
p := mapArea.Points[k];
if IsSamePoint(p.GPSObj) then
begin
for L := 0 to mapArea.Points.Count-1 do
begin
p := mapArea.Points[L];
AddToSelection(AMapView, TGPSPoint(p.GPSObj));
end;
Finished;
exit;
end;
end;
end;
end;
end;
procedure TMarkerSelectAndDragPlugin.SetMultiSelect(AValue: Boolean); procedure TMarkerSelectAndDragPlugin.SetMultiSelect(AValue: Boolean);
begin begin
if FMultiSelect = AValue then exit; if FMultiSelect = AValue then exit;