increase the window width of Bing maps

  • I am trying to increase the bing maps window view in width. But no matter how hard I try, I can't, it always remains the same width as the skin_control bar. I would like to increase it so that it is 90% of the width of the screen,
    I have tried making the change in the vtourskin in this piece of code:
    <action name = "skin_showmap" scope = "local" args = "show">
    if (show == null, if (layer [skin_map] .state == 'closed', set (show, true), set (show, false)););
    if (show,
    skin_load_maps_plugin ();
    tween (layer [skin_thumbs_container] .alpha, 0.0, 0.25, default, set (layer [skin_thumbs_container] .visible, false));
    set (layer [skin_map] .visible, true);
    tween (layer [skin_map] .alpha, 1.0, 0.25); tween (global.plugin [pp_blur] .range, 10.0);
    set (layer [skin_map] .state, 'opened');
    calc (hh, area.pixelheight - skin_settings.controlbar_offset - layer [skin_control_bar] .height - 32);
    calc (layer [skin_map] .height, hh - skin_settings.controlbar_overlap);
    tween (layer [skin_scroll_layer] .y, calc (hh -
    area.pixelheight), 0.5, easeOutQuint);

    ,
    if (layer [skin_map] .state! = 'closed',
    set (layer [skin_map] .state, 'closed');
    tween (layer [skin_map] .alpha, 0.0, 0.5, easeOutQuint); tween (global.plugin [pp_blur] .range, 0.0);
    tween (layer [skin_scroll_layer] .y, calc (-area.pixelheight + layer [skin_scroll_layer] .y_offset), 0.5,
    easeOutQuint, set (layer [skin_map] .visible, false));
    );
    );
    </action>

    Please any clue

Participate now!

Don’t have an account yet? Register yourself now and be a part of our community!