Hi,
thanks for your feedbacks. Can you please send us a snippet of your code so I can take a look at the issue? You should be able to load a ArcGISLocalTiledLayer without internet. If you have installed the ArcGIS Runtime SDK for Qt 10.2 Beta, you should have a few tpks that comes with our SDK. Can you please try to load a tpk from the Qt's SDK as shown below:
QString path = EsriRuntimeQt::ArcGISRuntime::installDirectory();
path.append("/sdk/samples/data");
QDir dataDir(path); // using QDir to convert to correct file separator
QString pathSampleData = dataDir.path() + QDir::separator();
QString tiledBaseMapLayer = pathSampleData + "tpks" + QDir::separator() + "Topographic.tpk";
EsriRuntimeQt::ArcGISLocalTiledLayer tiledLayer(tiledBaseMapLayer);
map->addLayer(tiledLayer);
In the beta release, ArcGIS Runtime SDK for Qt does not support tiff and shape files.
Thanks,