Changing Map Scale In-Game
112358Daniel
29 Jun 2018, 15:38I know this is probably one of the weirder questions, but is there a way to change the scale of the map in-game? I want to zoom out the map when the player goes out into the streets, and zoom in when the player goes back inside a house.
Thanks in advance!
The Pixie
30 Jun 2018, 16:03One of these may do it:
JS.eval("gridApi.setScale(2.0);")
JS.eval("gridApi.setZoom(2.0);")
112358Daniel
01 Jul 2018, 14:37Thank you!