the server is WMTS and here is a correct request for one point :
- Код: Выделить всё
https://myserver.com:4326/wmtsaccess?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&FORMAT=image/jpeg&TILEMATRIXSET=EPSG:4326&TILEMATRIX=EPSG:4326:16&TILEROW=23616&TILECOL=84213
i use this GetUrlScript.txt :
- Код: Выделить всё
begin
ResultURL := 'https://myserver.com:4326/wmtsaccess?' +
'SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0' +
'&FORMAT=image/jpeg' +
'&TILEMATRIXSET=EPSG:4326' +
'&TILEMATRIX=EPSG:4326:' + inttostr(GetZ) +
'&TILEROW=' + inttostr(GetY) +
'&TILECOL=' + inttostr(GetX);
end.
but sasplanet send me this url that is incorrect:
- Код: Выделить всё
https://myserver.com:4326/wmtsaccess?SERVICE=WMTS&REQUEST=GetTile&VERSION=1.0.0&FORMAT=image/jpeg&TILEMATRIXSET=EPSG:4326&TILEMATRIX=EPSG:4326:16&TILEROW=14018&TILECOL=21053
where i go wrong?
please helllllp me