Open bobonov opened 6 years ago
I made a test and is sufficient to change line 103 in this way the map var is implicitly global.
I think layers/* (I checked only some of them) suffer from same issue. In the files I checked is sufficient to remove var in front of the javascript variable declaration. form
$js = "var $name = $js;"
to
$js = "$name = $js;"
Since the map is initialized in the following way:
this make map unavailable in global scope therefore is impossible to operate via javascript on the map (ie change the center) Something, at javascript level, like this should work.
So in the php code in Map.php: line 103 from
to
and line 122
to