var
FMapLoaded: boolean;
procedure TMainForm.GMMapAfterPageLoaded(Sender: TObject;
First: Boolean);
begin
inherited;
if First and not FMapLoaded then
begin
GMMap.DoMap;
FMapLoaded := True;
end;
end;
0
cadetill
On
To solve this problem, you must to change the method TGMMap.DocumentComplete from GMMapVCL unit with this
try this