does anyone know how to add text on a markup of mapview component ?
In an application developed with delphi 10.4.2 and using the mapview component I tried to display a text on the marker but without result.
I tried with this code but it doesn't work.
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;
Thanks in advance.