You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Calling the toString() method on Map objects should return the mapfile representation of the object as a string. This is possible in Mapserver 6.4 now that MapServer/MapServer#4563 has been implemented.
Implementing it would involve an #ifdef check on the mapserver version and then wrapping the new msWriteMapToString() mapserver function as a synchronous javascript toString() function. It can be synchronous as no IO is performed on the mapserver side.
The text was updated successfully, but these errors were encountered:
As the final (accepted) solution convertToString has been implemented so I don't think it would interfere with the toString method. Java bindings should be compiled along with mapserver core which would provide the methods to stay in sync.
Calling the
toString()
method onMap
objects should return the mapfile representation of the object as a string. This is possible in Mapserver 6.4 now that MapServer/MapServer#4563 has been implemented.Implementing it would involve an
#ifdef
check on the mapserver version and then wrapping the newmsWriteMapToString()
mapserver function as a synchronous javascripttoString()
function. It can be synchronous as no IO is performed on the mapserver side.The text was updated successfully, but these errors were encountered: