Is it possible to use hashed tiles ?
Israeli topo site uses following function to get the tiles :
GetUrlScript.txt:
- Код: Выделить всё
TextToMd5 := MD5Print(MD5String('Copyrighted AmudAnan ' + IntToStr(GetZ-1) + '/' + IntToStr(GetY) + '/' + IntToStr(GetX)));
ResultURL := GetURLBase + TextToMd5+ '.png';
The output :
"Copyrighted AmudAnan 15/13328/19584" equals "4ad6114ecf2f44c84765c5bf7c1c2614"
So these are equivalent :
http://a.amudanan.co.il/tiles/I50N64/4ad6114ecf2f44c84765c5bf7c1c2614.png
But there is a error "MD5Print" and "MD5Script". Why ?
Is there a way to use the hashed version ?
Thanks in advance