 |
|
TSymbol
Unit
MapObjects
Description
This class displays at the map as symbol. It can be created automatically while loading data from MIF file or while run-time, for example:
procedure TForm1.CreatePoint(X, Y: Extended);
var
sym: TSymbol;
begin
sym := EasyMap.Layers[0].NewObject(TSymbol);
sym.x := X;
sym.y := Y;
sym.shape := 45;
sym.Draw;
end;
|