/**
 * External JS dependencies:
 * AjaxMap
 *
 * External var dependencies:
 * toolbar_zoomOutFactor
 */

/**
 * Ajax callback-method for the calls that return a new map image URL that shall be updated.
 */
function zoomout2xCallback(newMapData) {
    setMapData(newMapData);
}

/**
 * Zooms out by a spesified factor
 */
function zoomout2xOnButtonClick(e) {
    AjaxMap.zoomInByFactor(toolbar_zoomOutFactor, zoomout2xCallback);
}
