private void AddLabels()
 {
     //Add Labels
     if (_layer.LabelSet.DynamicContourLabel)
     {
         _layer.AddLabelsContourDynamic(_mapView.ViewExtent);
     }
     else
     {
         _layer.AddLabels();
     }
 }