有谁知道如何在 mapview 组件的标记上添加文本?
在使用 delphi 10.4.2 开发并使用 mapview 组件的应用程序中,我尝试在标记上显示文本但没有结果。
我尝试使用此代码,但它不起作用。
var
MapCenter : TMapCoordinate := TMapCoordinate.Create(latitude, longitude);
var
desqr : TMapMarkerDescriptor := TMapMarkerDescriptor.Create(MapCenter, 'marker',);
desqr.Snippet := myVariable; // this does not work
MapView1.Location := mapCenter;
desqr.Draggable := True;
MapView1.AddMarker(desqr);
MapView1.Zoom := 10;
提前致谢。