In updating my code to the Pro 3.0 SDK I see that there is now a new way to add a FeatureClass to the map. So I went through and refactored my code block to this:
//add the feature class to the map
//https://github.com/Esri/arcgis-pro-sdk/wiki/ProConcepts-3.0-Migration-Guide#arcgisdesktopmappingdll
var lyrParams = new FeatureLayerCreationParams(grdFeatClass) { MapMemberPosition = MapMemberPosition.AddToTop };
var featLayer = LayerFactory.Instance.CreateLayer<FeatureLayer>(lyrParams, mv.Map);
Works great but I also noticed that it ALWAYS zooms in to the layer. I have custom zooming logic that is basically NoZoom or ZoomWithPadding. I would like to just have the CreateLayer not do any zooming at all and let me apply it -OR- not apply it.
Anyway of doing this?