Will this be added to MapManager.js or PopupManager.js and what code do I add?
is it? map.infoWindow.maximize();
Thanks
Solved! Go to Solution.
In the MapManager _show2DWebMap function inside the "mapDeferred.then" after the map.infoWindow.resize(270, 316) Add:
map.infoWindow.on("show", function(evt){
map.infoWindow.maximize();
});
In the MapManager _show2DWebMap function inside the "mapDeferred.then" after the map.infoWindow.resize(270, 316) Add:
map.infoWindow.on("show", function(evt){
map.infoWindow.maximize();
});
Thanks Robert!
Don't forget to mark this question as answered by clicking on the "Mark Correct" link on the reply that answered your question.