您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

6 行
309 B

  1. begin
  2. if ((GetZ-6) <= 9) and ((GetZ-6) >= 0) then
  3. ResultURL:=GetUrlBase+'0'+IntToStr(GetZ-6)+'/R'+IntToHex(GetY,8)+'/C'+IntToHex(GetX,8)+'.png'
  4. else if ((GetZ-6) >= 10) and ((GetZ-6) <= 12) then
  5. ResultURL:=GetUrlBase+IntToStr(GetZ-6)+'/R'+IntToHex(GetY,8)+'/C'+IntToHex(GetX,8)+'.png';
  6. end.