You've already forked lazarus-ccr
LazMapViewer: Update map providers, new provider 2GIS (issue #39052, patch by regs01). Split off provider registration into include file
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@8872 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -980,8 +980,18 @@ begin
|
||||
end;
|
||||
|
||||
procedure TMapView.GetMapProviders(lstProviders: TStrings);
|
||||
var
|
||||
L: TStringList;
|
||||
begin
|
||||
Engine.GetMapProviders(lstProviders);
|
||||
L := TStringList.Create;
|
||||
try
|
||||
Engine.GetMapProviders(L);
|
||||
L.Sort;
|
||||
lstProviders.Assign(L);
|
||||
finally
|
||||
L.Free;
|
||||
end;
|
||||
// Engine.GetMapProviders(lstProviders);
|
||||
end;
|
||||
|
||||
procedure TMapView.WaitEndOfRendering;
|
||||
|
Reference in New Issue
Block a user