Map Legend changes when scrolling map vertically

With the map scrolled all the way out, when you move it vertically it, the legend changes
With map in middle. 5000km:5000miles
with map lying on bottom of screen 5000km:2000miles
with half of map scrolled out of the screen 200km:100miles
with map out of screen 10km:5 miles

Yes. Old Mercator will mess you up everytime.
On the maps that only cover a small area, the scale makes sense, but on the map of the whole world, the scale is non-linear and not the same in all directions, so you can't use it for much.
Hal

Similar Messages

  • Dropdown list tooltip changing when scrolling over values in the list

    Hi,
      I have a dropdown list where the tooltip is bound to a context attribute.
      Once I select a value in the dropdown list the tooltip changes with it.
      What I would like to have is that when I scroll through the dropdown list (go over the values of the dropdown list) tooltip changes.
      How can I trigger an event on 'go over the value in dropdown list' ?
      Thanks in advance! 
    Kind regards,
    Amel Alic

    Hi Amel Alic ,
        Yes It is possible to due that for that you have to do following things
    1) Please connect tooltip to some element of context of Type string
    2) Now On select of particular value populate that text in element of node.
    Just take case you made some node called 'Ttip'  and make element as temptemp.
    now on select you will populate appropiate content based on condition of value
    Hope sample code I have made will surely help you.
      DATA:
        lt_attributes TYPE STANDARD TABLE OF  if_request_ior=>element_Ttip,
        wa_attributes LIKE LINE OF lt_attributes.
    if (condition1 of value1 choosed)
      wa_attributes-temptext = 'You have choosed value 1'
      INSERT wa_attributes INTO TABLE lt_attributes.
    endif.
    if (condition2 of value2 choosed)
      wa_attributes-temptext = 'You have choosed value 2'
      INSERT wa_attributes INTO TABLE lt_attributes.
    endif.
    *endif.
    Node->Bind_Table(
        New_Items =  lt_attributes
        Set_Initial_Elements = Abap_True ).
    If solution works give points.
    Cheers !!!
    Parag

  • Ibooks 3.1 how to change horizontal scroll into vertical scroll

    update to ibooks 3.1, the scroll mode is changed into horizontal scroll, now in my .epub books it cut so many picture in two parts and display in two pages...how to change , back to vertical mode...

    I find this maybe is the new feature only for books with Asia-Pacific words....english books is right with vertical scrolling mode...but chinese books whit horizontal scrolling mode
    why apple doesn't make a set up to change between this ..

  • Map.invoke & map.put change visibility question

    Hi,
    In the documentation is stated that changes done by a entryProcessor are visible only after the processor has finished execution. I could not find statement about the opposite direction - what happens if map.invoke() and map.put() are trying to change the same entry? Is there possibility the map.put method to be executed in parallel to the map.invoke, so that map.put changes value while map.invoke is being executed on it? I saw in the forum statement that all map operations are executed in single thread (when modifying the same entry)- does this mean that map.put is sort-of standard processor and is queued just like any other processors?
    Best Regards,
    Georgi

    Hi Georgi,
    all operations related to a single entry are executed in a single-threaded manner on the storage node, meaning either one or zero thread does anything on any single entry. It is not possible that a put would occur for an entry while an entry-processor is processing that entry.
    And yes, it is a usable analog to think on a put operation as an entry-processor doing a setValue on the entry, or a lock/unlock operation as an entry-processor which changes the lock ownership (note: an acquired lock for an entry does not affect anything other than a lock operation for the same entry, which will not succeed until the earlier lock was released).
    Best regards,
    Robert

  • Web Application Designer: Map-legend

    Hi Guys,
    i have a problem with the map legend from the WebItem: Map.
    I want to have a map legend with 3 classes :
    1. < 0
    2.    0
    3. > 0
    But i can´t find the right option to set this values to the map web item.
    Can someone give me a hint, where i can find the option?
    (i´m working with the Web Application Designer Version 7.1)
    thx

    Hello,
    Could you please share the solution for that ?
    Thanks,

  • TableView - support for frozen columns and rows when scrolling?

    Hi,
    Is there support in JavaFx 2.0 for having certain columns or rows "frozen" when scrolling horizontally/vertically (so that these columns aren't scrolled)? Something similar to Excel's "freeze panes" functionality or Jidesoft's TableScrollPane header/footer rows and columns?
    If not, does anyone have examples of how this could be done?
    Regards,
    Frode

    At present this is not a feature that is offered in JavaFX 2.0. It is something that we do want to support in a future release however.
    For the time being I'm not sure if there is a way to easily implement this, however if you want feel free to email me and I can try to research it further when time permits: [email protected]
    -- Jonathan

  • Make mouse scroll map and not page when over map ?

    Hi,
    here is our code:-
    scroll wheel works fine on screens where webpage has no scroll bar. On a 1024x768 res screen the webpage with map requires scroll bars at side, design beyond my control. This situation will no doubt occur regularly so ...
    What needs changing to make it such that maps zooms when cursor over map, )page doesnt scroll) and page scrolls and map doesnt zoom when cursor off the map ?
    scroll zoom code is in blue, I left in the entire code, incase stripping anything out took out something important, just playing safe really and time too short !
    Envirographics.
    // ******** Public vars ******** \\
    // The percentage of the map to be shown
    // Basically, it limits the width and height of the map (because of excess graphics)
    // Change these values  to 1 if you see flickering of the map on the first zoom
    var widthPercentage:Number = 1;
    var heightPercentage:Number = 1;
    // ******** Private vars ******** \\
    var stageWidth:int = stage.stageWidth;
    var stageHeight:int = Map_Collection.height;
    //var Gmap:Sprite = new Map_Collection();
    stage.addEventListener("enterFrame", OEF);
    // The onEnterFrame script that runs every second
    function OEF(event:Event):void
    if (Map_Collection.x > 0)
      Map_Collection.x = 0;
    else if (Map_Collection.x<-Map_Collection.width * widthPercentage + stageWidth)
      Map_Collection.x = -Map_Collection.width * widthPercentage + stageWidth;
    if (Map_Collection.y > 0)
      Map_Collection.y = 0;
    else if (Map_Collection.y<-Map_Collection.height * heightPercentage + stageHeight)
      Map_Collection.y = -Map_Collection.height * heightPercentage + stageHeight;
    // Make the routes not visible
    Map_Collection.BusRoute_41.visible=false;
    Map_Collection.BusRoute_42.visible=false;
    Map_Collection.BusRoute_43.visible=false;
    Map_Collection.BusRoute_71.visible=false;
    Map_Collection.BusRoute_351.visible=false;
    Map_Collection.BusRoute_375.visible=false;
    Map_Collection.BusRoute_388.visible=false;
    Map_Collection.BusRoute_389.visible=false;
    Map_Collection.BusRoute_395.visible=false;
    Map_Collection.BusRoute_521.visible=false;
    Map_Collection.BusRoute_526.visible=false;
    Map_Collection.BusRoute_540.visible=false;
    Map_Collection.BusRoute_545.visible=false;
    Map_Collection.BusRoute_562.visible=false;
    Map_Collection.CycleRouteOffRoad.visible=false;
    Map_Collection.CycleRouteFootwayMethod2.visible=false;
    // Add listeners
    Button41.addEventListener(MouseEvent.CLICK, hideShow41);
    Button42.addEventListener(MouseEvent.CLICK, hideShow42);
    Button43.addEventListener(MouseEvent.CLICK, hideShow43);
    Button71.addEventListener(MouseEvent.CLICK, hideShow71);
    Button351.addEventListener(MouseEvent.CLICK, hideShow351);
    Button375.addEventListener(MouseEvent.CLICK, hideShow375);
    Button388.addEventListener(MouseEvent.CLICK, hideShow388);
    Button389.addEventListener(MouseEvent.CLICK, hideShow389);
    Button395.addEventListener(MouseEvent.CLICK, hideShow395);
    Button521.addEventListener(MouseEvent.CLICK, hideShow521);
    Button526.addEventListener(MouseEvent.CLICK, hideShow526);
    Button540.addEventListener(MouseEvent.CLICK, hideShow540);
    Button545.addEventListener(MouseEvent.CLICK, hideShow545);
    Button562.addEventListener(MouseEvent.CLICK, hideShow562);
    ButtonCycleRouteOffRoad.addEventListener(MouseEvent.CLICK, hideShowCycleRouteOffRoad);
    ButtonCycleRouteFootwayMethod2.addEventListener(MouseEvent.CLICK, hideShowCycleRouteFootwayMethod2);
    function hideShow41(event:MouseEvent):void {
    // instead of white_cat.visible = false; we just switch it to the opposite
    Map_Collection.BusRoute_41.visible =!Map_Collection.BusRoute_41.visible;
    Map_Collection.BusRoute_42.visible=false;
    Map_Collection.BusRoute_43.visible=false;
    Map_Collection.BusRoute_71.visible=false;
    Map_Collection.BusRoute_351.visible=false;
    Map_Collection.BusRoute_375.visible=false;
    Map_Collection.BusRoute_388.visible=false;
    Map_Collection.BusRoute_389.visible=false;
    Map_Collection.BusRoute_395.visible=false;
    Map_Collection.BusRoute_521.visible=false;
    Map_Collection.BusRoute_526.visible=false;
    Map_Collection.BusRoute_540.visible=false;
    Map_Collection.BusRoute_545.visible=false;
    Map_Collection.BusRoute_562.visible=false;
    Map_Collection.CycleRouteOffRoad.visible=false;
    Map_Collection.CycleRouteFootwayMethod2.visible=false;
    function hideShow42(event:MouseEvent):void {
    // instead of white_cat.visible = false; we just switch it to the opposite
    Map_Collection.BusRoute_42.visible =!Map_Collection.BusRoute_42.visible;
    Map_Collection.BusRoute_41.visible=false;
    Map_Collection.BusRoute_43.visible=false;
    Map_Collection.BusRoute_71.visible=false;
    Map_Collection.BusRoute_351.visible=false;
    Map_Collection.BusRoute_375.visible=false;
    Map_Collection.BusRoute_388.visible=false;
    Map_Collection.BusRoute_389.visible=false;
    Map_Collection.BusRoute_395.visible=false;
    Map_Collection.BusRoute_521.visible=false;
    Map_Collection.BusRoute_526.visible=false;
    Map_Collection.BusRoute_540.visible=false;
    Map_Collection.BusRoute_545.visible=false;
    Map_Collection.BusRoute_562.visible=false;
    Map_Collection.CycleRouteOffRoad.visible=false;
    Map_Collection.CycleRouteFootwayMethod2.visible=false;
    function hideShow43(event:MouseEvent):void {
    // instead of white_cat.visible = false; we just switch it to the opposite
    Map_Collection.BusRoute_43.visible =!Map_Collection.BusRoute_43.visible;
    Map_Collection.BusRoute_41.visible=false;
    Map_Collection.BusRoute_42.visible=false;
    Map_Collection.BusRoute_71.visible=false;
    Map_Collection.BusRoute_351.visible=false;
    Map_Collection.BusRoute_375.visible=false;
    Map_Collection.BusRoute_388.visible=false;
    Map_Collection.BusRoute_389.visible=false;
    Map_Collection.BusRoute_395.visible=false;
    Map_Collection.BusRoute_521.visible=false;
    Map_Collection.BusRoute_526.visible=false;
    Map_Collection.BusRoute_540.visible=false;
    Map_Collection.BusRoute_545.visible=false;
    Map_Collection.BusRoute_562.visible=false;
    Map_Collection.CycleRouteOffRoad.visible=false;
    Map_Collection.CycleRouteFootwayMethod2.visible=false;
    function hideShow71(event:MouseEvent):void {
    // instead of white_cat.visible = false; we just switch it to the opposite
    Map_Collection.BusRoute_71.visible =!Map_Collection.BusRoute_71.visible;
    Map_Collection.BusRoute_41.visible=false;
    Map_Collection.BusRoute_42.visible=false;
    Map_Collection.BusRoute_43.visible=false;
    Map_Collection.BusRoute_351.visible=false;
    Map_Collection.BusRoute_375.visible=false;
    Map_Collection.BusRoute_388.visible=false;
    Map_Collection.BusRoute_389.visible=false;
    Map_Collection.BusRoute_395.visible=false;
    Map_Collection.BusRoute_521.visible=false;
    Map_Collection.BusRoute_526.visible=false;
    Map_Collection.BusRoute_540.visible=false;
    Map_Collection.BusRoute_545.visible=false;
    Map_Collection.BusRoute_562.visible=false;
    Map_Collection.CycleRouteOffRoad.visible=false;
    Map_Collection.CycleRouteFootwayMethod2.visible=false;
    function hideShow351(event:MouseEvent):void {
    // instead of white_cat.visible = false; we just switch it to the opposite
    Map_Collection.BusRoute_351.visible =!Map_Collection.BusRoute_351.visible;
    Map_Collection.BusRoute_41.visible=false;
    Map_Collection.BusRoute_42.visible=false;
    Map_Collection.BusRoute_43.visible=false;
    Map_Collection.BusRoute_71.visible=false;
    Map_Collection.BusRoute_375.visible=false;
    Map_Collection.BusRoute_388.visible=false;
    Map_Collection.BusRoute_389.visible=false;
    Map_Collection.BusRoute_395.visible=false;
    Map_Collection.BusRoute_521.visible=false;
    Map_Collection.BusRoute_526.visible=false;
    Map_Collection.BusRoute_540.visible=false;
    Map_Collection.BusRoute_545.visible=false;
    Map_Collection.BusRoute_562.visible=false;
    Map_Collection.CycleRouteOffRoad.visible=false;
    Map_Collection.CycleRouteFootwayMethod2.visible=false;
    function hideShow375(event:MouseEvent):void {
    // instead of white_cat.visible = false; we just switch it to the opposite
    Map_Collection.BusRoute_375.visible =!Map_Collection.BusRoute_375.visible;
    Map_Collection.BusRoute_41.visible=false;
    Map_Collection.BusRoute_42.visible=false;
    Map_Collection.BusRoute_43.visible=false;
    Map_Collection.BusRoute_71.visible=false;
    Map_Collection.BusRoute_351.visible=false;
    Map_Collection.BusRoute_388.visible=false;
    Map_Collection.BusRoute_389.visible=false;
    Map_Collection.BusRoute_395.visible=false;
    Map_Collection.BusRoute_521.visible=false;
    Map_Collection.BusRoute_526.visible=false;
    Map_Collection.BusRoute_540.visible=false;
    Map_Collection.BusRoute_545.visible=false;
    Map_Collection.BusRoute_562.visible=false;
    Map_Collection.CycleRouteOffRoad.visible=false;
    Map_Collection.CycleRouteFootwayMethod2.visible=false;
    function hideShow388(event:MouseEvent):void {
    // instead of white_cat.visible = false; we just switch it to the opposite
    Map_Collection.BusRoute_388.visible =!Map_Collection.BusRoute_388.visible;
    Map_Collection.BusRoute_41.visible=false;
    Map_Collection.BusRoute_42.visible=false;
    Map_Collection.BusRoute_43.visible=false;
    Map_Collection.BusRoute_71.visible=false;
    Map_Collection.BusRoute_351.visible=false;
    Map_Collection.BusRoute_375.visible=false;
    Map_Collection.BusRoute_389.visible=false;
    Map_Collection.BusRoute_395.visible=false;
    Map_Collection.BusRoute_521.visible=false;
    Map_Collection.BusRoute_526.visible=false;
    Map_Collection.BusRoute_540.visible=false;
    Map_Collection.BusRoute_545.visible=false;
    Map_Collection.BusRoute_562.visible=false;
    Map_Collection.CycleRouteOffRoad.visible=false;
    Map_Collection.CycleRouteFootwayMethod2.visible=false;
    function hideShow389(event:MouseEvent):void {
    // instead of white_cat.visible = false; we just switch it to the opposite
    Map_Collection.BusRoute_389.visible =!Map_Collection.BusRoute_389.visible;
    Map_Collection.BusRoute_41.visible=false;
    Map_Collection.BusRoute_42.visible=false;
    Map_Collection.BusRoute_43.visible=false;
    Map_Collection.BusRoute_71.visible=false;
    Map_Collection.BusRoute_351.visible=false;
    Map_Collection.BusRoute_375.visible=false;
    Map_Collection.BusRoute_388.visible=false;
    Map_Collection.BusRoute_395.visible=false;
    Map_Collection.BusRoute_521.visible=false;
    Map_Collection.BusRoute_526.visible=false;
    Map_Collection.BusRoute_540.visible=false;
    Map_Collection.BusRoute_545.visible=false;
    Map_Collection.BusRoute_562.visible=false;
    Map_Collection.CycleRouteOffRoad.visible=false;
    Map_Collection.CycleRouteFootwayMethod2.visible=false;
    function hideShow395(event:MouseEvent):void {
    // instead of white_cat.visible = false; we just switch it to the opposite
    Map_Collection.BusRoute_395.visible =!Map_Collection.BusRoute_395.visible;
    Map_Collection.BusRoute_41.visible=false;
    Map_Collection.BusRoute_42.visible=false;
    Map_Collection.BusRoute_43.visible=false;
    Map_Collection.BusRoute_71.visible=false;
    Map_Collection.BusRoute_351.visible=false;
    Map_Collection.BusRoute_375.visible=false;
    Map_Collection.BusRoute_388.visible=false;
    Map_Collection.BusRoute_389.visible=false;
    Map_Collection.BusRoute_521.visible=false;
    Map_Collection.BusRoute_526.visible=false;
    Map_Collection.BusRoute_540.visible=false;
    Map_Collection.BusRoute_545.visible=false;
    Map_Collection.BusRoute_562.visible=false;
    Map_Collection.CycleRouteOffRoad.visible=false;
    Map_Collection.CycleRouteFootwayMethod2.visible=false;
    function hideShow521(event:MouseEvent):void {
    // instead of white_cat.visible = false; we just switch it to the opposite
    Map_Collection.BusRoute_521.visible =!Map_Collection.BusRoute_521.visible;
    Map_Collection.BusRoute_41.visible=false;
    Map_Collection.BusRoute_42.visible=false;
    Map_Collection.BusRoute_43.visible=false;
    Map_Collection.BusRoute_71.visible=false;
    Map_Collection.BusRoute_351.visible=false;
    Map_Collection.BusRoute_375.visible=false;
    Map_Collection.BusRoute_388.visible=false;
    Map_Collection.BusRoute_389.visible=false;
    Map_Collection.BusRoute_395.visible=false;
    Map_Collection.BusRoute_526.visible=false;
    Map_Collection.BusRoute_540.visible=false;
    Map_Collection.BusRoute_545.visible=false;
    Map_Collection.BusRoute_562.visible=false;
    Map_Collection.CycleRouteOffRoad.visible=false;
    Map_Collection.CycleRouteFootwayMethod2.visible=false;
    function hideShow526(event:MouseEvent):void {
    // instead of white_cat.visible = false; we just switch it to the opposite
    Map_Collection.BusRoute_526.visible =!Map_Collection.BusRoute_526.visible;
    Map_Collection.BusRoute_41.visible=false;
    Map_Collection.BusRoute_42.visible=false;
    Map_Collection.BusRoute_43.visible=false;
    Map_Collection.BusRoute_71.visible=false;
    Map_Collection.BusRoute_351.visible=false;
    Map_Collection.BusRoute_375.visible=false;
    Map_Collection.BusRoute_388.visible=false;
    Map_Collection.BusRoute_389.visible=false;
    Map_Collection.BusRoute_395.visible=false;
    Map_Collection.BusRoute_521.visible=false;
    Map_Collection.BusRoute_540.visible=false;
    Map_Collection.BusRoute_545.visible=false;
    Map_Collection.BusRoute_562.visible=false;
    Map_Collection.CycleRouteOffRoad.visible=false;
    Map_Collection.CycleRouteFootwayMethod2.visible=false;
    function hideShow540(event:MouseEvent):void {
    // instead of white_cat.visible = false; we just switch it to the opposite
    Map_Collection.BusRoute_540.visible =!Map_Collection.BusRoute_540.visible;
    Map_Collection.BusRoute_41.visible=false;
    Map_Collection.BusRoute_42.visible=false;
    Map_Collection.BusRoute_43.visible=false;
    Map_Collection.BusRoute_71.visible=false;
    Map_Collection.BusRoute_351.visible=false;
    Map_Collection.BusRoute_375.visible=false;
    Map_Collection.BusRoute_388.visible=false;
    Map_Collection.BusRoute_389.visible=false;
    Map_Collection.BusRoute_395.visible=false;
    Map_Collection.BusRoute_521.visible=false;
    Map_Collection.BusRoute_526.visible=false;
    Map_Collection.BusRoute_545.visible=false;
    Map_Collection.BusRoute_562.visible=false;
    Map_Collection.CycleRouteOffRoad.visible=false;
    Map_Collection.CycleRouteFootwayMethod2.visible=false;
    function hideShow545(event:MouseEvent):void {
    // instead of white_cat.visible = false; we just switch it to the opposite
    Map_Collection.BusRoute_545.visible =!Map_Collection.BusRoute_545.visible;
    Map_Collection.BusRoute_41.visible=false;
    Map_Collection.BusRoute_42.visible=false;
    Map_Collection.BusRoute_43.visible=false;
    Map_Collection.BusRoute_71.visible=false;
    Map_Collection.BusRoute_351.visible=false;
    Map_Collection.BusRoute_375.visible=false;
    Map_Collection.BusRoute_388.visible=false;
    Map_Collection.BusRoute_389.visible=false;
    Map_Collection.BusRoute_395.visible=false;
    Map_Collection.BusRoute_521.visible=false;
    Map_Collection.BusRoute_526.visible=false;
    Map_Collection.BusRoute_540.visible=false;
    Map_Collection.BusRoute_562.visible=false;
    Map_Collection.CycleRouteOffRoad.visible=false;
    Map_Collection.CycleRouteFootwayMethod2.visible=false;
    function hideShow562(event:MouseEvent):void {
    // instead of white_cat.visible = false; we just switch it to the opposite
    Map_Collection.BusRoute_562.visible =!Map_Collection.BusRoute_562.visible;
    Map_Collection.BusRoute_41.visible=false;
    Map_Collection.BusRoute_42.visible=false;
    Map_Collection.BusRoute_43.visible=false;
    Map_Collection.BusRoute_71.visible=false;
    Map_Collection.BusRoute_351.visible=false;
    Map_Collection.BusRoute_375.visible=false;
    Map_Collection.BusRoute_388.visible=false;
    Map_Collection.BusRoute_389.visible=false;
    Map_Collection.BusRoute_395.visible=false;
    Map_Collection.BusRoute_521.visible=false;
    Map_Collection.BusRoute_526.visible=false;
    Map_Collection.BusRoute_540.visible=false;
    Map_Collection.BusRoute_545.visible=false;
    Map_Collection.CycleRouteOffRoad.visible=false;
    Map_Collection.CycleRouteFootwayMethod2.visible=false;
    function hideShowCycleRouteOffRoad(event:MouseEvent):void {
    // instead of white_cat.visible = false; we just switch it to the opposite
    Map_Collection.CycleRouteOffRoad.visible =!Map_Collection.CycleRouteOffRoad.visible;
    Map_Collection.BusRoute_41.visible=false;
    Map_Collection.BusRoute_42.visible=false;
    Map_Collection.BusRoute_43.visible=false;
    Map_Collection.BusRoute_71.visible=false;
    Map_Collection.BusRoute_351.visible=false;
    Map_Collection.BusRoute_375.visible=false;
    Map_Collection.BusRoute_388.visible=false;
    Map_Collection.BusRoute_389.visible=false;
    Map_Collection.BusRoute_395.visible=false;
    Map_Collection.BusRoute_521.visible=false;
    Map_Collection.BusRoute_526.visible=false;
    Map_Collection.BusRoute_540.visible=false;
    Map_Collection.BusRoute_545.visible=false;
    Map_Collection.BusRoute_562.visible=false;
    Map_Collection.CycleRouteFootwayMethod2.visible=false;
    function hideShowCycleRouteFootwayMethod2(event:MouseEvent):void {
    // instead of white_cat.visible = false; we just switch it to the opposite
    Map_Collection.CycleRouteFootwayMethod2.visible =!Map_Collection.CycleRouteFootwayMethod2.visible;
    Map_Collection.BusRoute_41.visible=false;
    Map_Collection.BusRoute_42.visible=false;
    Map_Collection.BusRoute_43.visible=false;
    Map_Collection.BusRoute_71.visible=false;
    Map_Collection.BusRoute_351.visible=false;
    Map_Collection.BusRoute_375.visible=false;
    Map_Collection.BusRoute_388.visible=false;
    Map_Collection.BusRoute_389.visible=false;
    Map_Collection.BusRoute_395.visible=false;
    Map_Collection.BusRoute_521.visible=false;
    Map_Collection.BusRoute_526.visible=false;
    Map_Collection.BusRoute_540.visible=false;
    Map_Collection.BusRoute_545.visible=false;
    Map_Collection.BusRoute_562.visible=false;
    Map_Collection.CycleRouteOffRoad.visible=false;
    /* ----- Change cursor form
    add a hand to cursor to the Map_Collection
    This way a user understands that he/she can do something with the object.
    Map_Collection.buttonMode = true;
    /* ---- dragging ---- */
    Map_Collection.addEventListener(MouseEvent.MOUSE_DOWN, startDragging);
    Map_Collection.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
    function startDragging(event:MouseEvent):void {
    Map_Collection.startDrag();
    function stopDragging(event:MouseEvent):void {
    Map_Collection.stopDrag();
    /* ---- Zooming in with the scroller ---- */
    Map_Collection.addEventListener(MouseEvent.MOUSE_WHEEL, Zooming)
    const mod = 25
    var MyMapWidth=Map_Collection.width
    var MyMapHeight=Map_Collection.height
    function Zooming(event:MouseEvent):void {
    Map_Collection.scaleX += event.delta / mod
    Map_Collection.scaleY += event.delta / mod
    Map_Collection.x = ((2 * mouseX) - (2 * (event.localX * Map_Collection.scaleX))) / 2;
    Map_Collection.y = ((2 * mouseY) - (2 * (event.localY * Map_Collection.scaleY))) / 2;
      if (Map_Collection.width < MyMapWidth) {
        Map_Collection.width = MyMapWidth
        Map_Collection.height = MyMapHeight
        Map_Collection.x = 0
        Map_Collection.y = 0
        return;
    plusBtn.addEventListener("click", plusBtnFtn);
    negBtn.addEventListener("click", negBtnFtn);
    // Buttons to zoom in and out of the map
    function plusBtnFtn(event:Event):void
      var lHeight:int = Map_Collection.height;
      var lWidth:int = Map_Collection.width;
      Map_Collection.scaleX = Map_Collection.scaleY = Map_Collection.scaleY + 0.5;
      Map_Collection.x += (lWidth - Map_Collection.width) * 0.5;
      Map_Collection.y += (lHeight - Map_Collection.height) * 0.5;
    function negBtnFtn(event:Event):void
      var lHeight:int = Map_Collection.height;
      var lWidth:int = Map_Collection.width;
      Map_Collection.scaleX = Map_Collection.scaleY = Map_Collection.scaleY - 0.5;
      Map_Collection.x -= (Map_Collection.width - lWidth) * 0.5;
      Map_Collection.y -= (Map_Collection.height - lHeight) * 0.5;
       if (Map_Collection.height < MyMapHeight) {
        Map_Collection.width = MyMapWidth
        Map_Collection.height = MyMapHeight
        Map_Collection.x = 0
        Map_Collection.y = 0
        return;

    Hi,
    Off map, only page scrolls, on map page scrolls and map zooms at the same
    time, then when page cannot scroll any more, just the map zooms.
    Envirographics

  • TS1424 apple store,just wanted to check on how to change my area settings in itunes from United States to United Arab Emirates(that's where i stay).it got changed when i tried to download google maps from the US store in itunes.please help me out here.Tha

    Apple store,just wanted to check on how to change my area settings in itunes from United States to United Arab Emirates(that's where i stay).it got changed when i tried to download google maps from the US store in itunes.please help me out here.Thanks

    Please please help me, if you know how.

  • When I assign an address from google map to my contact, my contact pictures changes to a map. How do I prevent that from happening??? thanks

    When I assign an address from google map to my contact, my contact pictures changes to a map. How do I prevent that from happening??? thanks

    It isn't. Forward it to [email protected] and then delete it.
    (109195)

  • LR4 Map Changes when Geotagging

    I'm trying to geotag 73 images. I have them highlighed and I search on the map for the required location (Galway Ireland). When I drag the images across the map, it changes to another location (Tipperary Ireland) with the marker showing "68". I have previously tagged some images in that location.
    Can anyone tell me why this is happening please and how to correct it. I have a deadline looming and time is ticking away while I struggling with the new technology!
    It's not a long way to Tipperary from where I am - but it could be a long time before I geotag these images!
    Thanks for any suggestions.
    Stephen

    Thanks for that, as I needed to move on fairly quickly, I did just as you had suggested, earlier. But thanks for the reply.
    Perhaps someone else will know if the map will not over-write co-ordinates already in place and that deleting and re-setting is the only option in this case?
    Stephen

  • API0408 Exception throws when open mapping in owb 11.2.0.1

    We got the following error message when openning mapping
    API0408: Within the same namespace domain one object has already used the name
    This exception will throw when the mapping name is the same as the table name. The mapping can be openned if changing the name to some name different from exsiting table name.
    A similar notes in metalink(Note:219649.1 Subject: API0408 followed by java.lang.NullPointerException on Mapping Validation), but it's for 10g specific.
    Do you have any clue on this?

    Looks like you are facing Bug 9662211 CAN NOT ADD AN OPERATOR WITH THE SAME NAME AS THAT OF THE MAPPING
    which is not yet fixed

  • Can no longer operate other apps when Google Maps is giving directions

    I have an iPhone 4s and just recently upgraded to IOS 8.02.  I use Google Maps extensively for traveling, along with FStream (Internet radio app).  Up until this update (and a Google Maps update), I was able to reduce Google Maps en route, bring up FStream and choose another station.  Now, when Google Maps is directing me somewhere (using Directions), when I pull up FStream, there is a blue banner on top of the app that says "Google Maps is using your location."  While this is there, you are unable to operate any of the controls (buttons) on the app (and, I'm guessing, any other app).
    Now, having also used both Apple Maps (the ill-fated release) and Waze, I know Apple Maps also restricted usage of other apps while it was providing directions.  And, Waze wouldn't allow you to even recite (using the mic) or type in an address while moving (obviously a safety consideration, which I can understand).  I think they reversed that decision in a later release.  But, Google Maps (up until now) at least let you switch between open apps and (in my case, in FStream) change stations.
    My questions are:
    1. Is this an IOS 8 "improvement" or a Google Maps "improvement" (i.e. how do I complain to)?
    2. And, other than having to temporarily turn off "directions" in Google Maps in order to be able to switch stations, is there another fix to this?
    Thanks.
    Richard

    Well, I think I've narrowed it down somewhat.  In experimenting with other apps while Google Maps is giving directions, I find that most other apps are working, even with the blue Google Maps banner on top.  So, in summation, I believe it is the old, out-dated, FStream app (which was last updated in 2010) that might be the culprit.  The search begins for another Internet radio app where you can manually enter the station URL.

  • Unexpected exception, when opening mapping.

    Hi,
    When trying to open any message or Operations mapping in ESR PI 7.10 SP7 then I get the following error.
    In Short:
    "Unexpected exception.
    STACKTRACE:
    com.sap.aii.utilxi.swing.toolkit.ServerCallCancelledException: Unexpected exception."
    The mappings in the cache seem fine and are operational, but one can not open the mapping for change and such.
    Please can you shed some line to the resolution of this problem?
    Much appreciated.
    Regards
    Willie Hugo

    Hi,
    IT seems to be a patch problem.. check this thread
    PI 7.1 : Java exception creating new "Integration process"
    Also there is only one sap note available on this...
    Note 1286212 - Binding rec0 is not found in the brick error in mapping.
    But i think that might not be helpful to you, jsut have a look at the thread
    UPDATE
    This note looks promising  Note 1267507 - Java serialization issue: ServerCallCancelledException
    Regards
    Suraj

  • Gis map legend missing on .pdf exporting

    Hi guys,
    i've a big problem with the WAD exporting for printing.
    I've a simple gis map template with legend visible.Template is running fine on internet explorer but when i try to print report (right clic on the map - printable version) in the output .pdf file the legend is missing.
    I try everything: with ie print, with adobe pdf ie add-on, exporting in excel format but the map legend is always missing.
    Can anyone help me?
    Thanks in advance.
    Andrea

    Hello Andrea,
    you should check the properties for the map web item in your export template.
    The content template is 0ANALYSIS_PATTERN_EXPORT for the print version.
    There might be the "display legend" flag turned off.
    Regards
    Tobias

  • I have 3 laptops and when i use google maps wanth to move the map its begin role oat of control and cant stop it

    When I use google maps in my three laptops one with XP one with Vista and then one with win7 64 when it happens that when I want to move the map when the map starts scrolling uncontrolled one way that can not be stopped without turning off the google maps ?

    When I use google maps in my three laptops one with XP one with Vista and then one with win7 64 when it happens that when I want to move the map when the map starts scrolling uncontrolled one way that can not be stopped without turning off the google maps ?

Maybe you are looking for