This is a retired product. Not reproducible in the latest build. If you are still encountering this issue, please contact Esri Technical Support.
解决办法
The current portion of code that is causing Mozilla Firefox not to show the extents around the map on the browser: slist.Add("n", env.YMax.ToString("N")); slist.Add("e", env.XMax.ToString("N")); slist.Add("s", env.YMin.ToString("N")); slist.Add("w", env.XMin.ToString("N"));The following change would make the code work in Mozilla Firefox: slist.Add("N", env.YMax.ToString("N")); slist.Add("E", env.XMax.ToString("N")); slist.Add("S", env.YMin.ToString("N")); slist.Add("W", env.XMin.ToString("N"));