
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@9531 8e941d3f-bd1b-0410-a28a-d453659cc2b4
39 lines
555 B
ObjectPascal
39 lines
555 B
ObjectPascal
unit main;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, ExtCtrls, mvMapViewer, mvPluginCore, mvPlugins, SysUtils, Forms,
|
|
Controls, Graphics;
|
|
|
|
type
|
|
TMainForm = class(TForm)
|
|
MapView1: TMapView;
|
|
MapView2: TMapView;
|
|
PluginManager: TMvPluginManager;
|
|
LinkedMapsPlugin: TLinkedMapsPlugin;
|
|
procedure FormCreate(Sender: TObject);
|
|
private
|
|
|
|
public
|
|
|
|
end;
|
|
|
|
var
|
|
MainForm: TMainForm;
|
|
|
|
implementation
|
|
|
|
{$R *.lfm}
|
|
|
|
procedure TMainForm.FormCreate(Sender: TObject);
|
|
begin
|
|
MapView1.Active := true;
|
|
MapView2.Active := true;
|
|
end;
|
|
|
|
end.
|
|
|