I want to show world map in regions using mapbuilder

Hi,
I have uploaded obiee_navteq dump in our database.could you please let me know to spilt in world map in different regions like Europe,Africa,Middle East,Australia,Nroth America....In one map.
Thanks
VB

Do you really need to post three messages with identical topic?
You have an edit button, you know? That's the icon with a pencil, next to the envelope icon, on the top-right corner of your message (only for the last message of a thread).
You also have a CODE button above your edit area, it will make code you post much more readable, as asterisks and plus signs are interpreted by the forum...
i don't know about the differrence between javafx 1.1 and javafx 1.2See [JavaFX 1.2: Features and Enhancements|http://javafx.com/docs/articles/javafx1-2.jsp] for a good start.
(Funny, I just noticed they write "Java FX" (with a space) in all the titles of the site. Bad for consistency...)

Similar Messages

  • Show Google Map in webdynpro

    Hi Experts,
    I developed one Webdynpro application. In that application i want to show google map. I have to pass coordinates to get the particular place.Can somebody help me acheive this?
    Thanks in advance.

    Hi Ranjit,
    You can try the [GeoMap|http://help.sap.com/saphelp_nwce10/helpdata/en/fe/f7f23ea4b42e5ae10000000a114084/frameset.htm] UI element provided in Web Dynpro.
    Regards,
    Alka.

  • I purchased a movie through i tunes and have it stored on my computer. I want to show it on my HDTV through I an Apple TV device. How can I do that?

    I purchased a moview through I tunes and have it stored on my computer. I want to show it on my HDTV using an Apple TV device. HOw do I do that?

    I've been experiencing the same problem for the past month. I thought that it might be my older 3rd generation apple TV, so I purchased a new one yesterday. Hooked the new one up this morning and I'm experiencing the same problems. I've rebooted the apple tv a few times which doesnt really seem to help. I'm guessing it has something to do with my home network. I took the Apple TV to the beach with me last week and didn't get any error loading problems. I guess now I just need to figure out what I need to change on my network to hopefully remedy this problem. ugh, it's always something.

  • Is there an App for the iPad that will show my GPS position on a world map, even if I'm at sea?

    Is there and App for the iPad that will show mu GPS position on a world map, even if I'm at sea?
    Thanks,
    Tomac

    BobTheFisherman wrote:
    GPS will show your position anywhere if your device has unobstructed view of the GPS satellites. The issue is that you must find a maps/charts that include all areas of the sea.
    There is no mobile data connection required to use GPS on land or sea. Once again your issue is the availability of downloadable maps/charts for the areas you will be traveling.
    Sorry, but you can't install an app like NAVIGON on an iPad without 3G cellular data connection:
    copied from NAVIGON app:
    ...can be installed on any iPhone3GS, iPhone4, iPhone4S, iPhone5 or iPad device (the navigation function is only available on the iPad WiFi+3G)
    Can I navigate with my mobile phone?
    Answer:In principle yes. For mobile phones there are both Onboardnavigation solutions and Offboardnavigation solutions.
    The following requirements must be fulfilled:
    •     The software must support the mobile phone. NAVIGON software
          always comes with a compatibility list. The software is guaranteed
          to work only for the mobile phones on this list.
    •     The mobile phone must have a GPS receiver. Many new mobile
           phones come with a built-in GPS receiver. Otherwise you can use
           an external GPS receiver which is connected to the mobile phone
           by cable or Bluetooth.
    •     It should be noted that an offboard solution incurs costs for using
          the mobile phone network to communicate with the provider's server.
    Message was edited by: Ingo2711

  • Since I have downloaded FF 29, it continually comes up with a world map and wants me to answer some survey.

    When I log into FF29 the home web page gives me a world map which then requires me to answer a survey which I have done once but it keeps repeating. I have had to go to Google Chrome because of the nuisance and wasted time.
    Also FF29 does not seem to recognize PDF forms for printing when they are attachments to emails that I want to print out.

    Gingerbread Man,
    "snippets" are below the Search Bar, like
    <pre><nowiki>What kind of Web do you want? Join Firefox users around the world shaping its future.</nowiki></pre>
    That "map" replaces the Firefox "brandLogo" currently. IIRC, that is either new or something that hasn't been messed with before. I'm not sure though, in most Profiles I use a different Homepage.

  • How to highlight result set data on world map

    Hi,
    I want to show the graphical representation of world map to highlight the countries which having the maximum booking of hotels of our client xyz.
    All the values are coming from the mysql db .
    I want the library which will draw the world map on the Jpanel for the respective result set
    Plz help me for this .
    I generally use the JFreeChart for drawing the other graphs but the Jfreechart don't have the library for the World Map or Destination Graph etc.
    Hint: ( Google Analytic's map is the best example )
    Thanks In Advanced
    Mahesh

    This isn't what you want, but it will get you on the right track. I chose the most complex image I could find so give it a few seconds to read the image and build the paths. The parser is catered to the image I chose, but in general you can probably expect the "path" element to delineate the boundaries for any map svg. The particular image I chose grouped the paths with country ID so I added a little mouse interaction to the GUI. Forgive me for any dumbly coded stuff. I didn't put much effort into streamlining it.
    import org.xml.sax.*;
    import java.awt.*;
    import javax.swing.*;
    import javax.xml.parsers.SAXParser;
    import javax.xml.parsers.SAXParserFactory;
    import org.xml.sax.helpers.DefaultHandler;
    import java.awt.geom.Path2D;
    import java.util.StringTokenizer;
    import java.net.URL;
    public class WorldMapTest {
        public static void main(String[] args) throws Exception {
            SAXParserFactory factory = SAXParserFactory.newInstance();
            SAXParser saxParser = factory.newSAXParser();
            SimpletonPathExtractor handler = new SimpletonPathExtractor();
            saxParser.parse(new URL("http://upload.wikimedia.org/wikipedia/commons/b/b7/World98.svg").openStream(), handler);
            createAndShowGUI(handler.locations);
        public static void createAndShowGUI(final java.util.List<Location> locations) {
            JFrame frame = new JFrame();
            JPanel p = new JPanel() {
                @Override
                public Color getBackground() {
                    return Color.white;
                public void paintComponent(java.awt.Graphics g) {
                    super.paintComponent(g);
                    Graphics2D g2 = (Graphics2D) g;
                    g2.scale(getWidth() / 8000.0, getHeight() / 3859.0);
                    g2.setColor(Color.black);
                    Point p = getMousePosition();
                    if(p != null) {
                        p.x = (int) (p.x * 8000/getWidth());
                        p.y = (int) (p.y * 3859/getHeight());
                    String placeID = null;
                    for (Location loc : locations) {
                        if(p != null && placeID == null && loc.boundry.contains(p)){
                            g2.setColor(Color.LIGHT_GRAY);
                            g2.fill(loc.boundry);
                            placeID = loc.id == null?"Unkown":loc.id;
                            g2.setColor(Color.black);
                        g2.draw(loc.boundry);
                    if (placeID != null) {
                        g2.setColor(Color.green.darker());
                        Font f = g2.getFont();
                        f = f.deriveFont(Font.BOLD,(f.getSize() * 8000f / getWidth()));
                        g2.setFont(f);
                        g2.drawString(placeID, p.x, p.y);
                public java.awt.Dimension getPreferredSize() {
                    return new Dimension(1000,482);
            p.addMouseMotionListener(new java.awt.event.MouseAdapter() {
                @Override
                public void mouseMoved(java.awt.event.MouseEvent e) {
                    ((JComponent) e.getSource()).repaint();
            frame.setContentPane(new JScrollPane(p));
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.pack();
            frame.setVisible(true);
        public static class SimpletonPathExtractor extends DefaultHandler {
            java.util.List<Location> locations = new java.util.ArrayList<>();
            String recentID;
            @Override
            public void startElement(String uri, String localName, String qName, Attributes attr) throws SAXException {
                if("g".equals(qName)) {
                    recentID = attr.getValue("id");
                if ("path".equals(qName)) {
                    int length = attr.getLength();
                    for (int i = 0; i < length; i++) {
                        String attrN = attr.getQName(i);
                        String val = attr.getValue(attrN);
                        if ("d".equals(attrN)) { //path data
                            Path2D path = new Path2D.Double();
                            //assume simple polygonal path
                            StringTokenizer tk = new StringTokenizer(val, "MLzZ ");
                            try {
                                path.moveTo(Double.parseDouble(tk.nextToken()),
                                            Double.parseDouble(tk.nextToken()));
                                while (tk.hasMoreTokens()) {
                                    path.lineTo(Double.parseDouble(tk.nextToken()),
                                                Double.parseDouble(tk.nextToken()));
                                path.closePath();
                            } catch (Exception e) {
                                throw new Error("I'm a simple parser. I can only do "
                                        + "'LineTo' paths!", e);
                            locations.add(new Location(path,recentID));;
            public void endElement(String uri, String localName, String qName) throws SAXException {
                if("g".equals(qName)) {
                    recentID = null;
        public static class Location {
            Path2D boundry;
            String id;
            public Location(Path2D boundry, String id) {
                this.boundry = boundry; this.id = id;
    }

  • World Map used in the 2012 WWDC  Keynote?

    Hello.  I'm trying to find the World Map graphic used by Tim Cook in the 2012 WWDC Keynote.  Visible about 5:46 into the keynote video here (http://www.youtube.com/watch?v=bkRUE7S8pQI).
    Specifically, he animates or uses 'magic move' to highlight certain countries he is talking about.  Does anyone know where I can find a world map that would do this in Keynote?
    Thanks in advance.

    iMovie includes some fairly high resolution world maps.
    Go to Applications > iMovie > (Right Click) Show Package Contents > Contents > Resources > Map-*.jpg
    Hold Option (alt) as you drag-and-drop the files you want to use, so it will move a copy.

  • [CS4/JS] Where Am I!? A World Map script

    Here's one I originally wrote for InDesign, but Illustrators may like it as well!
    This is a Javascript implementation of a program I had on the hard disc of several consecutive computers, going back to the late '80s. This version was an implementation in C, which in turn was based upon a Pascal program: CARTOG.PAS, accompanying "Mapping the World in Pascal" by Robert Miller and Francis Reddy, BYTE, December 1987, page 329
    What does it do? It draws a world map. That's all
    Written for CS4 (but it might work other versions). Simply run the script and enter stuff into the dialog -- it ought to do the rest automatically. If you want to see your own location from outer space, go to LATITUDE et LONGITUDE de quelques Villes (which was the first comprehensive listing I found; there are lots of others) and see if your hamlet is listed. You can enter coordinates either as positive/negative values, or follow them with "E" or "W" and "N" or "S". Only decimal notation is supported; minutes & seconds was too much work.
    The image is grouped into one and consists of the background circle, all land masses in a group of their own, and optionally the meridians, also grouped. If you ungroup once, you can color and move the land and meridians around. Ungroup again to get ten zillion tiny objects, so you can play Tectonics 1-0-1 and shift the continents around the globe.
    Note: the calculations for the larger continents, in particular Asia, sometimes clash with my math. If so, you'll see stray lines and a messed up image ... No cure for that, except trying with slightly different coordinates.
    Download Instructions:
    Download from my website: http://www.jongware.com/binaries/whereami.zip
    The package contains the script, which you can move into your Illustrator Scripts folder to be able to run it from File -> Scripts, and three icons; these you should put in your own Documents folder. Sorry about that -- it seems there is no good way to make sure the script can find the images otherwise! If you forgot that or just don't want to mess up your documents, it'll still work, but with a nagging message "Wot no img!?".

    After you got a nice view of the world, you can ungroup, scale, move, and size all elements at will. It may be necessary to use the Pathfinder to combine all loose islets and stuff into one solid object -- otherwise, you might see the dividing line between Europe and Asia. It also gets easier to fill stuff.
    This image, inspired on a classic, took me a couple o'minutes of tinkering ... And of course the world is centered on the place where I live

  • Hide the 'Show All' option in Region Selector

    Hi there,
    I just searched this forum and came to know that we can hide the show all option in region selector using jQuery as suggested by VC.
    $('ul[id$="_RDS"]').children('li').each(function(i, e){
    if ($(e).text()=='My Tab') {
    $(e).find('a').click();
    Any idea where this jQuery needs to be inserted?
    thanks.
    Sun

    Hi VC,
    <table class="tbl-body" cellspacing="0" cellpadding="0" border="0" summary="">
        <tbody>
          <tr>
            <td class="tbl-main" width="100%"><div class="apex-rds-container"><ul id="3388023453317532_RDS" class="apex-rds"><li class="apex-rds-first apex-rds-selected"><a href="#SHOW_ALL"><span>Show All</span></a></li><li><a href="#R3065313453780541"><span> MASTER DATA</span></a></li><li class="apex-rds-last"><a href="#R3375830763272358"><span>Edit  Data Dump</span></a></li></ul></div><div class="rounded-corner-region" id="R3065313453780541" >
      <div class="rc-gray-top"><div class="rc-gray-top-r">
        <div class="rc-title"> MASTER DATA<a class="eLink" title="Edit" href="javascript:popupURL('f?p=4000:374:132::::P374_ID,FB_FLOW_ID,FB_FLOW_PAGE_ID:30653,129,1');" tabindex="999"><img src="/i/e.gif" alt="Edit" class="eLink" /></a></div>
      </div></div>
      <div class="rc-body"><div class="rc-body-r">
    <div class="rc-content-buttons"><button value="Reset" onclick="apex.submit('RESET');" class="button-default" type="button"  id="B3068426845780551">
      <span>Reset</span>Anything specific that you want me to paste? Lots of content in the actual HTML source.
    thanks,
    Sun
    Edited by: sun1977 on May 29, 2012 5:50 AM

  • Want to show errors to user using struts !!

    Hi, I am working on a application which is using struts framework., If any errors / exceptions occur, then they are forwarded to Fail.jsp.
    if (!errors.isEmpty()) {
                   saveErrors(request, errors);
                   // Forward control to the appropriate 'failure' URI (change name as desired)
                        forward = mapping.findForward("fail");I want to show to the user. the error/exception that occured. How can i send these errors to Fail.jsp. Please advice. thanks !!

    Then maybe you should go learn Struts before you come to a Java (not to be confused with Struts) forum and post unrelated questions. No go and get before I take a switch to ya! Ya bes simma!

  • Hey How Do I Get Group Message On The IPhone 4s because some reason it doesn't want to show . First i did is setting then messages  it only show imessage and message count )HELP)

    ey How Do I Get Group Message On The IPhone 4s because some reason it doesn't want to show . First i did is setting then messages  it only show imessage and message count )HELP)

    At the bottom of the page Settings > Messages you should have a section headed "SMS/MMS" Turn MMS messaging on then you can turn group message on.

  • HT4437 What is difference between air play and home sharing if you just want to show iPhoto's on HD tv through apple tv (just purchased MacBook Air and Apple tv)

    What is difference between air play and home sharing when wanting to show photos on HD tv through apple tv?  Just bought Mac book air and apple tv. 

    You would have to use home-sharing if streaming from a computer. Computer would need to be on and running iTunes.
    http://support.apple.com/kb/HT4352
    Airplay would be useful if streaming from an IOS device
    http://support.apple.com/kb/HT4437

  • I recently downloaded Ios 7 and all the songs that i have purchased before but deleted off my itunes because i didn't want them showed up. I don't know how to delete them off my ipod and i really don't want them there

    I recently downloaded Ios 7 and all the songs that i have purchased before, but deleted off my itunes because i didn't want them, showed up. I don't know how to delete them off my ipod and i really don't want them there. Is there a way to get them off? The songs dont show up in my itunes on my computer, just on my ipod with a download button next to them. I don't want them there anymore because i don't like that kind of music anymore and i don't know how to get them to go away.

    There is a similar setting for Videos on that Settings screen, so if you leave that 'on' you may have similar happening in the Videos app

  • How do I get my purchased movies from iTunes to show in my Library without storing all the GBs on my hard drive?  [I want to show the Cloud Purchases.]

    Hey Hey! 
    Running OSX 10.9.4 and iTunes 11.3
    I am pretty sure that this has been addressed somewhere, but I could not find it - so thanks up front!!!
    How do I get my purchased movies from iTunes to show in my iTunes Library without storing all the GBs on my hard drive?  I want to show the Cloud Purchases without having hundreds of GBs taking up my HD space. 
    Thanks!

    Deborah,
    You cannot import contacts from your Nano to your PC via iTunes.  The syncing process is only one way.  However, if you enable disk mode on your iPod, open it up in a Windows Explorer window, you should see a Contacts folder.  From there you can copy them back over to your PC. 
    Even though this article is talking about adding contacts to the PC, it should walk you through some of the steps mentioned above.
    http://support.apple.com/kb/HT2419?viewlocale=en_US
    B-rock

  • Maps 2.0 - "Show on map" is not working

    Hello guys. my ovi maps is started to saying that : " this app requires Licence manager download" . and then when i click to "yes" it is trying to open web page but web page is not working. And now "Show on map" feature is not working . I cant format my phone . any way to reinstall ovi maps ? or any other ideas ? thanks
    Solved!
    Go to Solution.

    Tanayy wrote:
    thanks it has solved my problem
    You're welcome, a lot of older devices have now been archived so that about only thing available to download is the "User Guide"!
    Happy to have helped forum with a Support Ratio = 42.5

Maybe you are looking for

  • How do I get rid of the "other" from my iPhone?

    I know this question has been asked a lot. I've tried deleting all but my most important text messages, deleting apps I hardly use, limiting the music I keep on my phone, and I always keep my pictures before 300. The "other" on my phone is at 3.81 GB

  • Creating Variables From Text File

    Hello a little new to powershell and have banging my head on the wall trying to get this working. I have a text file (where the numbers of lines will change everytime) that will contain AD groups.  Lets say it looks like this GroupA GroupB GroupC I'm

  • JDBC mapping to IDOC issue

    We are retrieving information from our SQL server and trying to map it to the picking IDOC SDPIID01. We are having a problem in trying to get the correct mapping to occur. The result list is as follows: <mt_SQLPickConfirmation>   <row>     <Processed

  • Menu option under recursive tree item/folder & checkbox in tree

    Hi, I want to present a checkbox next to an item or folder in a recursive tree. I didn't see any option to do it so I tried to add a menu and a menu option type checkbox under the node item and note type. The issue it does nothing. Any ideas? THanks,

  • How to remove the line under JMenuBar

    Some client requires that the line under a JMenuBar looks ugly and it should be removed. can anybody give me some idea how to do it?