Hi Guys,
I am trying to utilize the editing features of ArcGISLocalFeatureLayer. My code is currently all working correctly but I am getting rendering issues when trying to add certain geometries to the underlying .mpk
However if I view this layer using ArcGISLocalDynamicMapServiceLayer the rendering issue goes away. However because this layer does not allow editing I need to use ArcGISLocalFeatureLayer
So this code produces a correctly rendering pair of layers:
layer = new ArcGISLocalDynamicMapServiceLayer("C:\\synergyii\\gisdata\\All Floors.mpk");
map.getLayers().add(layer);
layer = new ArcGISLocalDynamicMapServiceLayer("C:\\synergyii\\gisdata\\AdvancedGraphic-1471274891125.mpk");
map.getLayers().add(layer);

This code produces an incorrectly rendering pair of layers:
layer = new ArcGISLocalDynamicMapServiceLayer("C:\\synergyii\\gisdata\\All Floors.mpk");
map.getLayers().add(layer);
layer = new ArcGISLocalFeatureLayer("C:\\synergyii\\gisdata\\AdvancedGraphic-1471274891125.mpk", 0, true, RenderingMode.DYNAMIC);
map.getLayers().add(layer);

As you can see only one geometry is actually showing here and its incomplete. If you pan and zoom around the map the rendering changes each time.
Does anyone have any ideas why the ArcGISLocalFeatureLayer is giving me rendering issues?