How to change the icon of the marker in the AMX geographicMap.

I tried to code below.

< dvtm:marker id = "mrk1" source = "Img-marker - icon.png" >

but the marker does not appear on the screen.

problem solved by using the code below.

Tags: Oracle Mobile

Similar Questions

  • How to change the size of icons and windows

    original title: oversized windows and icons

    im stuck in something I don't know how to change, all my windows and icons are so big they tend to adapt to the screen and I know its something simple to fix but I can not find it ive tried all the display options and disabilities can't just can someone help me please

    Hello

     

    ·         Were there recent changes made on the computer before the show?

     

    Follow these steps and check if that helps:

     

    Step 1:

     

    (a) click on the tab "Start" then go to control panel. In the upper left corner, click 'Switch to Classic view'-, it will take only a few seconds until Windows in Classic view. In Classic view, you will see all of the icons that are currently on your desktop.

    (b) go to 'View' and the display properties box opens. On the appearance tab, press the 'Effects', uncheck 'Use large icons'. Press the OK button, and then click OK again in the display properties box. The icons will appear normal on your desktop.

     

     

    Step 2:

    (a) right click on your mouse and scroll down to "Properties". The display properties box will be pop up, so go to the appearance tab then click the "Advanced" button and look for "Item.

    (b) scroll to the bottom of the box and select "icon". Go to the 'size' change the default size, 32, for your icon. Press the button 'Apply' then 'OK '.

     

    See also:

     

    How to change the appearance of items on the desktop in Windows XP

    http://support.Microsoft.com/kb/310543

    Step 3:

    If the problem persists, update the latest graphics card drivers on the manufacturer's Web site and check if it helps.

    How to manage devices in Windows XP

  • How to change the icons size in the bar of tasks other than small or big

    How to change the size icons in the bar of tasks other than small or big. I'd like an average size.

    There is no intermediate option to choose. You can choose small or large icons on the taskbar. -Ramesh Kumar http://www.WindowsValley.com

  • How to change the icon of the Application on Blackberry JDE 6

    Hi, do someone know how to change the icon of the application of the project, we have created in the JDE? I searched the forum, and suggestions should go to the project properties, go to the "resources" tab and add the icon file. I have also included the file icon (PNG 68x68pixel) to the project.
    But this does not seem to work for me.
    I also tried to build clean, remove files jad and others, always not when I tried the app Simulator or on real device. Any help will be appreciated.
    I use Blackberry JDE 6, test the application on the actual device (9800), Simulator (9700). And the app that I'm testing is just a pushscreen simple helloWorld app, not a lot of code here. Thank you.

    Here's how to put the icon in BlackBerry JDE.

    1. Add the image to your project.
    2. Right-click on the image and choose Properties.
    3. Check "use as icon for the Application.
    4. Rebuild the application.
  • How to change the icon of the application where the application focus?

    Hello guys

    I want to know how to change the application icon focus when the application.

    I know how to create the icon of the Application, such as insert icon-> properties-> use as the application icon.

    Do you know how to insert the second icon to the project?

    Please help me guys

    TNX'

    Hello

    Ago may messages on roll on icon.

    This is the KB article for the overview icon.

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800505/800608/...

    KB article for icon creation.

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800505/800608/...

    TNX.

  • How to change the spacing between the icons on the desktop?

    How to change the spacing between the icons on the desktop? xxx

    Blog of Andy Rathbone"setting spacing icon on the desktop in Windows 7:
    http://www.andyrathbone.com/2009/09/08/adjusting-desktop-icon-spacing-in-Windows-7/
    Ramesh Srinivasan . The Winhelponline Blog
    Microsoft MVP, Windows desktop experience

  • How to change the icon of default folder on windows 8?

    I have windows 8 x 64 and I have tried using regedit to change my folder icon by creating "Shell Icons". I tried two ways different 'HKEY_LOCAL_MACHINE '.

    I have windows 8 x 64 and I have tried using regedit to change my folder icon by creating "Shell Icons". I tried two ways different 'HKEY_LOCAL_MACHINE '.

    This is for windows 7 apply to windows but 8

    http://www.SevenForums.com/tutorials/23825-folder-icon-change-Windows-7-default-folder-icon.html

    http://www.errorteck.com/good-to-know/Windows-7-tips-and-tricks/how-to-change-the-default-folder-icon.html

    (Edited and added clickable links)

  • How to change the font of the title bar of the JFrame icon context menu?

    Hello world.

    I want to know how to change the font of the text that appears in the context menu is native to click with the right button on the icon that is completely left in the title bar of JFrames which use the default appearance for decoration (JFrame.setDefaultLookAndFeelDecorated (true); / / uses the metal L & F, theme "Océans").

    I searched and found nothing. I thought I could use what I learned to https://forums.oracle.com/message/9221826, but I couldn't find something that worked.

    Thanks to advance.t

    After a few more messing around, I finally did! I love so much it makes me a little sad Java how it is difficult to do things like that. In any case, I found a method here to recursively change the fonts of all components in a JFileChooser, but it does not work on the JPopupMenu (now I know the name) who jumps to the top of the icon in the title bar. So I messed around with this method a few casting and was able to change the fonts of the JMenuItems:

    public static void setSubComponentFont (Component comp[], Font font) {
        for (int x = 0; x < comp.length; x++) {
            if (comp[x] instanceof Container) {
                setSubComponentFont(((Container)comp[x]).getComponents(), font);
            }
            try {
                //comp[x].setFont(font);
                if (comp[x].toString().contains("JMenu")) {
                    for (Component y : ((JMenu)comp[x]).getPopupMenu().getComponents()) {
                        if (y.toString().contains("JMenu")) {
                            y.setFont(font);
                        }
                    }
                }
            } catch (Exception ex) {}
        }
    }
    

    I was inspired by this thread of utiliser.toString () .contains ().

    I also did with nested loops, so the path to the menu items can be seen:

    for (Component a : frame.getLayeredPane().getComponents()) {
        System.out.println(a.toString());
        if (a.toString().contains("MetalTitlePane")) {
            for (Component b : ((Container)a).getComponents()) {
                System.out.println(b.toString());
                if (b.toString().contains("SystemMenuBar")) {
                    for (Component c : ((Container)b).getComponents()) {
                        System.out.println(c.toString());
                        for (Component d : ((JMenu)c).getPopupMenu().getComponents()) {
                            System.out.println(d.toString());
                            if (d.toString().contains("JMenu")) {
                                d.setFont(font);
                            }
                        }
                    }
                }
            }
        }
    }
    

    Each System.out.println () gives an indication of what should go on what follows if State, so they should be used one at a time. This does not work for the title of the JFileChooser however font. When I have time I'll either look no further away inside or ask another question.

    So, if someone else needs like I did, it's here. As a tip, System.out.println () and. toString() are your friends! That's how I learned what was contained in each object, and which path I needed to take to get to objects of interest.

    Thanks anyway!

  • How to change the display of cm in pixels while marking an object?

    How to change the display of cm in pixels while marking an object?

    Hello, you can right click on the rulers to change their units, or if you enter the numbers in a numeric field which has a unit, you can add px for pixel, cm for centimeters, in in....

  • How to change the icon of the web in the browser window

    I created my site and cannot find how to change the icon in the browser window (as they have done at the top of this page with the icon of Adobe before the Adobe Forums: text) anyone would be nice to give me a little help?

    Do you mean the favicon?

    I only learned that recently about favicons myself - so if you google the word you will get a lot of resources to do this. Bascially, it's a little icon file located in the root directory of your site that browsers search and display for you. As long as the file is there (* named favicon.ico*) will automatically appear if I'm wrong in what I read.

    It's the thing you're looking for? (edit: it also appears in your list of bookmarks in firefox - if it isn't the one you want it is the favicon file)

  • How to change the icon of the node in a tree when the node collapse or expand?

    How to change the icon of the node in a tree when the node collapse or expand?

    Hello

    You may need to use the custom for this skin.

    Arun-

  • How to change the level of zoom on a Web page

    How to change the zoom of a Firefox Web page level? In Internet Explorer, you can do this with the right end of the status bar icon. Any advice would be appreciated. Thank you.

    This article should help: https://support.mozilla.org/en-US/kb/font-size-and-zoom-increase-size-of-web-pages

  • Satellite A100-727: how to change the config of media buttons?

    I have a Toshiba laptop Satellite A100 727 and it was these media buttons Nice on the left side of the key board.

    They are great, but I have no idea how to change the keys.
    I had put them to launch internet and exploited with mediaplayer, but after that I had to do reinstal windows, my harddisck crashed, functions on the buttons has changed, they start up the InterVideo WinDvd.

    Does one know how I can change the functions of the buttons?
    I read something about the tools of Toshiba, but I can't find them anywere.

    TYVM in advance

    Hello

    Using TOSHIBA button controls, you can set the key features. If you have it installed you can find the TOSHIBA controls icon in the Panel.
    You can also find if you open TOSHIBA help > Optimize.

  • How to change the size of the app button

    Can how I change the size of the buttons on my iPad Air app

    Cannot change the app icons themselves in size. If the icons are large, see if the zoom is on iOS: the home screen icons are magnified or large - Apple Support

    -AJ

  • How to change the read-only, write protect status of files?

    Original title: change the State of the files.

    I have problems deleting files.  I need to know how to change the status of the files: e.g. "read-only, write protect, etc."

    Hi fbanks4,

    1. were you able to remove the files before?

    You can read the following article and try the steps to change the status of the read-only files:

    You cannot view or change the read-only or the attributes of system files in Windows Server 2003, Windows XP, Windows Vista or Windows 7

    http://support.Microsoft.com/kb/326549

    Hope this information is useful.

    Jeremy K
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

    If this post can help solve your problem, please click the 'Mark as answer' or 'Useful' at the top of this message. Marking a post as answer, or relatively useful, you help others find the answer more quickly.

  • How to change the shutdown preferences in Windows XP?

    Original title: how to get the option in the list and selecting turn off computer option rather wide stand-by, turn off, restart icons in win xp sp3 proff

    standby Turn off reboot

    in the list

    Wait a second
    Disable
    Restart

    example of

    What do you do on the computer

    Hello

    I suggest you to see the steps in the link with the work on the issue.

    How to change the logon window and the shutdown preferences in Windows XP

    http://support.Microsoft.com/kb/291559

    Registry warning

    To do: Important This section, method, or task contains steps that tell you how to modify the registry. However, serious problems can occur if you modify the registry incorrectly. Therefore, make sure that you proceed with caution. For added protection, back up the registry before you edit it. Then you can restore the registry if a problem occurs. For more information about how to back up and restore the registry, click on the number below to view the article in the Microsoft Knowledge Base:

    322756 (http://support.microsoft.com/kb/322756/ )

    Hope this information is useful.

Maybe you are looking for