The IDE raise an error: Format '%.1f?s %.1f?s' invalid or incompatible withe argument. When I drag-and-drop dxMapControl on Form.
IDE: Delphi XE5
The operating system language: Chinese
dxMapControlViewInfo.pas
Delphifunction TdxMapControlCoordinatesViewInfo.GeoPointToText(const AGeoPoint: TdxMapControlGeoPoint): string;
const
ALongitude: array [Boolean] of string = ('W', 'E');
ALatitude: array [Boolean] of string = ('S', 'N');
begin
Result := Format('%.1f?s %.1f?s', [Abs(AGeoPoint.Latitude), ALatitude[AGeoPoint.Latitude > 0],
Abs(AGeoPoint.Longitude), ALongitude[AGeoPoint.Longitude > 0]]);
end;
Hello,
I have reproduced this problem. I am forwarding this issue to our developers for further processing.
You will receive an automatic message once the status of this issue is changed.