We are using ServiceImageTiledLayer to display our offline map tiles on local disk as below:
setTileUrl(tileKey, QUrl(QString("/home/fatma/world_imagery_arcgis/%1/%2/%3.png").arg(
QString::number(tileKey.level()),
QString::number(tileKey.column()),
QString::number(tileKey.row()))));If the image tiles were on a remote computer or server on local network, how would I retrieve the image tiles? We do not want map tiles to reside on the same computer with the executable.