I'm working on disconnected scenario (offline) and I'm trying to update KML Layer sample to add KML Layer from local kml file instead of the URL in example.unfortunately, the kml content is not displayed on the map.Is KMLLayer only working for "publicly accessible URL" ? it would be nice to be able to display kml file from local disk file...I was also thinking of doing a Geoprocessing package with tool "KML To Layer", but this tool is not licenced for Runtime, does ESRI plan to licence it in next release ?my code doesn't create error, the layer is added, but there is no KML content displayed :final KMLLayer kmlLayer = new KMLLayer("C:\\KML_Samples.kml", map.getSpatialReference()); layers.add(kmlLayer);