Hello, I simply want to change the rotate feature of the mark I added on the map, while it does this on the android part, it does not react on the ios part.
How can I change the direction of a mark in ios.
var
MyMarker: TMapMarkerDescriptor;
degree:integer;
begin
MyMarker := TMapMarkerDescriptor.Create(Position, 'Here');
MyMarker.Icon := ImageList2.Bitmap(TSizeF.Create(64, 64), 10);
Derece:= degreecal();
MyMarker.Rotation := degree;
MyMarker.Draggable := false;
MyMarker.Visible := true;
MyMarker.Title := title;
MyMarker.Snippet := '(' + Position.Latitude.ToString + ' - ' +
Position.Longitude.ToString + ')';
loc := MapView1.AddMarker(MyMarker);
FMarkersboat.add(loc);
end;