How do you disable the 3D button in Geospatial Portal?
For versions 2018 and later, it is possible to control this directly using Administration Console by following these steps:
For versions 2016 and 2015 EP06+
Add the following to the C:\Program Files\Common Files\Hexagon\Services\Instances\{Instance Name\js\MapConfig.js
Sys.Application.add_init(function () { Intergraph.WebSolutions.Core.WebClient.Controls.Map.MapControlContainerBase.prototype._refreshNaviToolbar = function(newMapControl) { var itemsPanel = Ext.getCmp("fancyItemsPanel"); if (!itemsPanel) return; var items = itemsPanel.getTopToolbar().items; if (newMapControl === "WCMapControl") { items.get(0).hide(); items.get(3).show(); items.get(5).hide(); items.get(6).show(); //zoom history } else { items.get(3).hide(); items.get(5).show(); items.get(6).hide(); } } });