delphi-maps
delphi-maps copied to clipboard
DelphiMaps.WMS.Client.pas does not compile
because TGLatLngBounds does not have a method
function ToWmsBBox: string;
This method must look like this:
function TGLatLngBounds.ToWmsBBox: string;
begin
Result := Format('%g,%g,%g,%g',[ FSouthWest.FLng, FSouthWest.FLat, FNorthEast.FLng , FNorthEast.FLat]);
end;
Original issue reported on code.google.com by [email protected] on 18 May 2013 at 3:09