IGS Map interaction

Hi!!
Has anyone succeeded in triggering an event from a map display?
I'm able to get the map display with an icon at the specific latitude & longitude but my icon fails to trigger an event.
I've followed the instructions in the link:
http://help.sap.com/saphelp_nw04/helpdata/en/00/138949a0fb0b4c83c1ee860ae952ec/content.htm
Thanks,
Siva

Hi!!
I don't get any errors....It's just that when I deploy my application, the icon fails to trigger the event(displaying the address). I've bound the textview to the Address context attribute and have defined the onActionLinkToWebAddress in the implementation of my ViewController. Do you have any suggestions on what I could've possibly missed?
Thanks,
Siva

Similar Messages

  • GIS-Map Interaction

    Hi all,
    Could anyone please tell me if map interaction is possible for the Geomap UI element.
    Thanks and Regards,
    Debashree.

    Hi all,
    as suggested by Armin Reichert I opened an OSS message regarding the integration of GIS systems with Web DynPro/IGS.
    Here is a quote from the SAP answer:
    A GIS that can be implemented
    on a project-specific basis is provided by
    ptv Planungsbüro Transport Verkehr AG,
    Stumpfstrasse 1, 76131 Karlsruhe, Germany.
    You can use ESRI in combination with Business Intelligence (BI).
    Further questions from my side led to the statement that the mentioned GIS is the
    ONLY one that can be integrated with Web DynPro/IGS. 
    Maybe this helps to clear up the confusion about this matter.
    Best regards,
    Matthias

  • How to make maps interactive?

    hi, I have add to template in WAD map web item, but I dont know how to make maps interactive (filtering, drilldown in maps). I found some documentation which says:
    The following lines must be adjusted correctly to your individual system environment in the HTML code of the Web template.
    Example:
    <param name=’IMAGEMAP_PATTERN’ value=’FILTER_VAL’>
    <param name=’INFLUENCED_DP_1’ value=’Revenue Cockpit’>
    But I dont where i have to adjusted
    thanx for reply

    According tothe BI Functional Enhancement Schedule, this functionality will not be available until the following support pack stacks are released:
    <UL>
    <LI>Web Applications: Map toolbar (client-side interactivity &#56256;&#56518;zoom in, zoom out) standard + advanced toolbar (Stack 14)</LI>
    <LI>Web Applications: Save template parameters and context menu settings as reusable web item. Option to take this as default for all templates (Stack 15)</LI>
    <LI>Web Applications: context menu for map item (data cell relevant context menu entries only (Stack 12)</LI>
    <LI>Web Applications: context menu for map item (additionally characteristics cell relevant context menu entries (Stack 14)</LI>
    </UL>
    <a href="https://service.sap.com/~sapidb/011000358700004483762006E">URL to BI Functional Enhancement Guide</a>

  • Interactive Maps on mobile devices

    We have a client who has needs a plotted map which has to be interactive (data points with drill down).
    The client needs this functionality on desktop as well as mobile devices (iphone, ipad, android, blackberry)
    I have done a poc for the desktop with dvt:geographic map and saw that it caters for the interactivity, but this isn't available on ADF mobile (which is our preferred approach for mobile interface)
    Currently I am investigating options to bring map interactivity on the mobile devices without having to go down the route of native mobile applications.
    I was thinking that calling the Mapviewer API directly might resolve our issue. Is this a feasible approach? Looking at my requirement, could you suggest a good path to solution?
    thanks in advance,
    Jaseer

    Jaseer,
    Check again the ADF Mobile.
    The new version released this week, supports DVT Geographic Map Component.
    Luis.

  • How I insert a map in Indesign ?

    Hi !
    I would like to insert a map interactive, in the image below that's how it came out with the google <iframe....> :
    Not a problem http Vs https because it's not working in both case.
    Then i have this error, when i just copy/paste it
    When I tried on another with bing :
    and on the EPUB, i can't see the map :
    How is it possible to insert a map for EPUB format ?
    Thanks in advance

    Thank you Bob and Steve,
    I update my version of InDesign CC 2014, but here is an image of my version (I use iBooks to read) :
    I still see it "empty", is use EPUB 3.0, what is your format to export ?

  • EL Map won't work with numerical index - works with string

    If I populate a map with a numeric index, the values won't appear when I refer to it as ${myMap[0]} in JSP. In my servlet I populate myMap by doing a put(0,value).
    However, when I do a myMap["index0"] or myMap.index0, it works! I simply change the line that populates the Map to put("index0",value).
    Why won't it work with a numerical index? Does it have something to do with JDK 1.5's autoboxing? I cast the 0 to an int in the put( ) method, but that makes no difference.
    What could be happening here? Does it work for you?
    Thanks.

    Whats causing this?
    Basically autoboxing puts an Integer object into the Map.
    ie: map.put(new Integer(0), "myValue")
    EL evaluates 0 as a Long and thus goes looking for a Long as the key in the map.
    ie it evaluates: map.get(new Long(0))
    As a Long is never equal to an Integer object, it does not find the entry in the map.
    Thats it in a nutshell.
    JSP page demonstrating this:
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
    <%@ page import="java.util.*" %>
    <h2> Server Info</h2>
    Server info = <%= application.getServerInfo() %> <br>
    Servlet engine version = <%=  application.getMajorVersion() %>.<%= application.getMinorVersion() %><br>
    Java version = <%= System.getProperty("java.vm.version") %><br>
    <%
      Map map = new LinkedHashMap();
      map.put("2", "String(2)");
      map.put(new Integer(2), "Integer(2)");
      map.put(new Long(2), "Long(2)");
      map.put(42, "AutoBoxedNumber");
      pageContext.setAttribute("myMap", map); 
      Integer lifeInteger = new Integer(42);
      Long lifeLong = new Long(42); 
    %>
      <h3>Looking up map in JSTL - integer vs long </h3>
      This page demonstrates how JSTL maps interact with different types used for keys in a map.
      Specifically the issue relates to autoboxing by java using map.put(1, "MyValue") and attempting to display it as ${myMap[1]}
      The map "myMap" consists of four entries with different keys: A String, an Integer, a Long and an entry put there by AutoBoxing Java 5 feature.      
      <table border="1">
         <tr><th>Key</th><th>value</th><th>Key Class</th></tr>
         <c:forEach var="entry" items="${myMap}" varStatus="status">
         <tr>      
           <td>${entry.key}</td>
           <td>${entry.value}</td>
           <td>${entry.key.class}</td>
         </tr>
         </c:forEach>
    </table>
        <h4> Accessing the map</h4>   
        Evaluating: ${"${myMap['2']}"} = <c:out value="${myMap['2']}"/><br>
        Evaluating: ${"${myMap[2]}"}   = <c:out value="${myMap[2]}"/><br>   
        Evaluating: ${"${myMap[42]}"}   = <c:out value="${myMap[42]}"/><br>   
        <p>
        As you can see, the EL Expression for the literal number retrieves the value against the java.lang.Long entry in the map.
        Attempting to access the entry created by autoboxing fails because a Long is never equal to an Integer
        <p>
        lifeInteger = <%= lifeInteger %><br/>
        lifeLong = <%= lifeLong %><br/>
        lifeInteger.equals(lifeLong) : <%= lifeInteger.equals(lifeLong) %> <br>
        That at least explains what is going on.
    Not sure exactly what I would do to "fix" it. Would have to look at what the requirements are. But basically I think it would end up as having to use Longs rather than Integers as keys in the map, meaning autoboxing could not be used.
    Cheers,
    evnafets

  • Web Interface for Bex Maps in WAD 7.0

    Hi Everyone,
    I have a requirement to be able to display values in a table when an area on a map is clicked.
    This functionality is supported in 3.5 WAD where a property for a map layer could be set to affect values in corresponding tables within a template .The name of the property is 'Map Interaction Controls' ; value 'Click on Map to filter data providers'. Once this value is chosen, in another property 'Affected list of data providers' you specify the dataprovider (of the table) which will be affected by a user clicking on the area of a map.
    In WAD 7.0, the only property I see is 'Affected list of data providers' for a specific map layer. I do not see the 'Map Interaction Controls' property.  I have tried working with the other settings(properties) available for a layer, but none of them seem to work for invoking the interaction between the map and the table
    Does anyone know if the functionality offered in 3.5 is still supported in 7.0? Or if there is a workaround for the function to work?
    Any help would be greatly appreciated and points would be rewarded!
    Thanks,
    Mansha

    Anyone with any ideas/suggestions?
    Thanks!!

  • Corporate Website Design - Make a Static Custom Map or Google Maps

    Could some one please kindly advise on the following:
    What is considered more professional if you are designing a corporate Website.
    1. To design a custom map that shows each rail road crossing and traffic light on the way to the company. But due to the fact that it is a still image suffer from usability issues e.i. not being able to zoom beyond the drawn bitmap.
    2. To embed a well known tool such as Google Maps (that allows world wide zooming), marking the location of the company building with a custom photo pin.
    3. A combination of both points above displayed on one contact us site.
    The above needs to be corporate design conform.
    Thank you in advance for your advice.
    AZ.

    Hi Marian,
    Thank you for the reply,
    1. The audience consists of a the following according to the polls:
    27.5% - Government Official
    9.4% - Network/Association
    8.8% - Student
    8.7% - Academia
    5.8% - NGO Representative
    4.8% - IO/IGO Representative
    3.4% - Media
    2. It is an International Institute so they are from all over the world.
    3. Map interaction is not needed but it would be an advantage considering the town in which the institute is located has a common name and often gets mistaken for another in a totally different country.
    4. Interactive maps on cell phones and GPS
    A map on the webpage is needed because:
    A. The audience is so widespread e.i. from Government Officials to Students from all over the world including the LDC countries, that it is near impossible to predict what technologies are available to them, it is assumed that they will be able to access the internet.
    B. Requested by the management.
    Thank you in advance for your advise

  • Use Map In Web Application Designer

    Hi gurus:
         when I create map in Web application designer ,it shows the error:
    Messages:
    Internal error communicating with the IGS (maps)
    Map could not be Created
    But the map can be shown in Analyser,please help me!
    thanks

    Hi,
    please tell more about your scenario.
    Are you using dynamic attributes?
    Are all layers visible?
    Did you check the query that you are using as Dataprovider? 
    Is there only one geocharacteristic in the row?
    Which infoobjects are you using and which shapefiles?
    Best regards
    Andreas

  • Disable 2 finger accidental ZOOMING in maps?

    I got used to the new two-finger scroll using the track-pad very quickly. HOWEVER, both Google Maps and Mapquest/Yahoo maps interpret the two-finger vertical motion as a zoom -- and very profound zoom for very little finger motion. This is, of course, because these long pre-existing applications used a click-hold-down and drag to do horizontal and vertical moving. It is very annoying and often results in a Safari hang while my erratic internet connection tries to download the appropriately scaled map for the new, accidental zoom level. (BTW: this was even more disatorous when coupled with two-fingered page flipping often blasting completely out of page and requiring some minutes of window rebuild; I turned that off in Preferences.)
    Has anyone found a fix for this yet?
    It would seem that the solution would be to:
    - disable two-fingered scrolling completely -- but that does not appear to be possible and even if it were, would be less preferred.
    - have the map vendors alter their map interaction scheme to match the Lion scrolling scheme. Then, the only way to gesture zoom the map would be using the two-fingered open/close gestures. (That does not seem very likely, especially from Google.)
    - have Safari somehow recognize, intercept, and translate applications that use other interaction schemes to zoom and scroll.
    - or has some found a hack that addresses this until one of the above happens?
    Many thanks.
    With all of the other posts that seem to be show-stoppers for others (NAS and various printers not working, the surprizing  -- at least to the average user -- loss of PPC apps, performance issues, etc.) this falls into the category of "very annoying problem that negatively colors my opinion of Lion".

    Wanted to reboot this discussion.
    It's been two years since this post which describes an important problem and haven't found any solution out there.  this is a very annoying thing.  i'm so so about the two finger scrolling to begin with, and would just as soon go back to the scroll bars.  of course when they foisted the new operating system on me because of incompatability with new programs - that used to be an apple no-no but now they don't seem to care to keep older machines compatible with new functions and or allow older software to be used with new operating system - nobody told me i would loose the standard scroll interface.
    i use map functions all the time and even when i try to keep it in mind it is hard not to zoom the map by accident. and scrolling the map without scroll bars is an enormous PIA.
    whats up with this.  they are so focused on having laptops be like iphones that they leave a glaring problem festering for those of us who wish the touch screen had never been invented.

  • Add Collada objects to the map

    Hi,
    I am able to add collada (.dae) objects to the plain white scene. Now I want to add some of the objects to the map component. I get no errors and in debug-mode the component has the objects listed.
    The Problem is: the objects are not visible on the map.
    Did I miss some specific options, which are not necessary in the plain white scene, but in the map?
    Thanks,
    Marc

    Hi Uwe,
    sorry for the missing informations, I thought it would work the same everywhere.
    I am currently working with a simple dynpro application. I can see the map, interact with it, especially add simple boxes to the map. Now I want to replace these simple boxes with 3D models. I can see these in the white scene, that works fine. But when I add the 3D objects to the map in the same way as to the white scene, everything works and says that the objects ARE on the map. The only problem is, I can not see them on the map. Even with a fly-to in creation step the map zooms to an empty place on the map (except for the map itself).
    The VBI version should be 2.1, on our backend is UI2_700, UI2_701, UI2_702, UI2_731.
    Greetings,
    Marc

  • How to create 2 or 3 links URL in a jpeg ?

    How to create 2 or 3 links URL in a jpeg ?
    Do i use photoshop ?
    Thank you

    Images cannot contain links. All that stuff is done in the web page source code, e.g. using image maps, interactive SVGs or JavaScripts that track coordinates and respond accordingly. You will have to use a web authoring tool like Muse or Dreamweaver to produce such stuff, but since you seem to be a complete beginner, I strongly urge you to read up at least on some basic stuff about HTML, CSS and how the web ticks in general or you'll be forever lost.
    Mylenium

  • Need a click and drag script for multiple layers.

    Hi. I'm realitivly new to Flash and Action Script.
    For a Majour project school asignment i am trying to create an interactive map for a hypothetical theme park, and i'll cut to the chase, i need a script that allows the player to drag the content of two or three layers around the screen upon mouse click, similar to this example:\
    http://www.dreamworld.com.au/content/drw_2008_shopping.asp?name=ParkMap
    I will have a layer for buttons (probably called Buttons) and a layer for the map graphic (Probably called Map), similar to this tutorial:
    http://www.republicofcode.com/tutorials/flash/interactive_map/
    If anyone could produce, or has a script lying around that could do this; i would really apreciate it.
    This assignment has a large impact on my UAI (universities admission index).
    Thanks for your time,
    Pat

    Thanks for your help. I really appreciate it.
    The problem is; this is the script i am using to make the map interactive:
    import mx.transitions.Tween;
    import mx.transitions.easing.*;
    var cities:Array = ["muscat", "sohar", "dubai","abu_dhabi"]
    function mover (targetX, targetY){
    currentX = marker_mc._x;
    currentY = marker_mc._y;
    var xTween:Tween = new Tween(marker_mc, "_x", Strong.easeOut, currentX, targetX, .5, true);
    var yTween:Tween = new Tween(marker_mc, "_y", Back.easeOut, currentY, targetY, 1.5, true);
    for (var i = 0; i<cities.length; i++){
    var my_btn = this[cities[i]+"_btn"];
    my_btn.myCity = cities[i];
    my_btn.onRollOver = function() {
    mover( this._x, this._y);
    marker_mc.gotoAndStop(this.myCity);
    And when the buttons are made to be part of a movie clip with the image i am using for the background this script does not work.
    The script is located in a layer called "Actions", if that is of any help at all.
    Any ideas?
    I am sorry if I am being a newsense.
    Thanks

  • How can I make an image scrollable and zoomable?

    I'm working on making a map that will have multiple layers overlaid that will be clickable on and off. In addition, sections of the map will be interactive and when clicked, will change to a 3D view of that map item. I need this map image to be inside a block or container that is scrollable (left, right, up, down) and zoomable.
    I bet this could be done in javascript or jquery somehow. I'm building the map interactions in Adobe Edge Animate, but I have the creative cloud and could use some other program if necessary. Can anyone help me?

    Put the image behind the layer (at the back of it or on a layer below). With it still selected, Copy.
    Now Paste in Front (Ctrl+F). Depending on your Paste Remembers Layers setting, you may have to bring the newly pasted copy to the front, or to the upper layer.
    Draw a shape over the image to define the portion of it you want to appear "in front."
    With the shape and the image selected, clip the image using the shape. (Object > Clipping Mask > Make)

  • Problem; "Click to Activate" message

    Hi,
    I created a map in Flash and it loads great, works great when
    you're on a mac (it was created on a mac too). Though the problem
    is that when the page is viewed on a PC and you rollover the map
    there is a boundry that appears around the map and a text notice
    that reads "click to activate and use this control". Once you click
    it it goes away and the map interacts fine, but its not good as it
    stands. I wonder if it's in the publishing preferences that this
    can be resolved. If anyone has ideas please let me know!
    Peace for 2007!
    joe

    That only happens when using Internet Explorer actually, and
    it's because of
    the lame eolas suit. You can fix by going here:
    http://blog.deconcept.com
    and an article about it here:
    http://www.adobe.com/devnet/flash/articles/swfobject.html
    I find it best to just always use it as you get version
    detection as well as
    very easy embedding of your movie.
    Dave -
    Head Developer
    www.blurredistinction.com
    Adobe Community Expert
    http://www.adobe.com/communities/experts/

Maybe you are looking for