Original User: jenniferdneryI'm using the following code and I can't seem to reproduce. I don't see the features duplicated. Can you share some code or could you maybe tweak this to get to the same state as your app? Thanks.
<esri:Map x:Name="MyMap" WrapAround="True"
PropertyChanged="MyMap_PropertyChanged"
Extent="-9900723.24924544,3490730.30922668,-9828850.20838732,3542973.02580042">
<esri:ArcGISTiledMapServiceLayer
Url="http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer" />
<esri:FeatureLayer ID="MyLayer"
Url="http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/Hurricanes/NOAA_Tracks_1851_2007/MapServer/0"/>
</esri:Map>
private void MyMap_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
{
if (e.PropertyName == "Resolution")
{
var f = MyMap.Layers["MyLayer"] as FeatureLayer;
f.MaxAllowableOffset = MyMap.Resolution * 2;
f.Update();
}
}