Totally lost about N95 GPS. Help!

Hi. I just recently bought a N95 and I know nuts about the GPS thing. When I open maps, I see this picture of a globe with a small icon of a satellite with a cross on it (I presume I am not connected to it). When i view satellite info, I am able to pick something up.
When I rotate the globe and then press the GPS pos button, it focuses on Europe which Im not at (not zoom in).
Btw, Im from Singapore and im using Starhub network.
Can anyone help me? Im totally lost.

Hi frostshardz
Firstly if you are using v12.0.013 or later software on your N95 it is a lot quicker to obtain fix with A-GPS feature, although an active connection via WLAN or Network is needed.
Go outside away from buildings and tress with clear view of sky. Open slider and hold phone at 45degrees, don't cover "#" key as GPS antenna beneath it. Low cloud or rain will make satellite acquisition a lot longer.
If you go to Menu > Tools > GPS data > (searching for + calculating data) > Position > Options > Satellite status
This shows any number of satellites up to five - empty rectangle = not locked on - black filled rectangle = signal acquired; you need a minimum of 3 solid bars for lock-on and triangulation to work.
Once satellites are locked on you should be able to zoom into your position provided that active connection has been set to "as needed" rather than "never" in options > settings in Maps application, to allow download of sufficient map detail.
Happy to have helped forum in a small way with a Support Ratio = 37.0

Similar Messages

  • Totally lost - can anyone please help?

    Hi,
    Can anyone please help with the following...
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.event.ActionListener;
    public class project
        public static void main(String[] args)
         //   Time time = new Time();
         //   System.out.println(time.getTime());
        right r = new right();
        left l = new left();
        JPanel p = new JPanel();       
        JPanel p2 = new JPanel(); 
        JPanel p3 = new JPanel();  
        JFrame aFrame = new JFrame();
        aFrame.setTitle("Swing 3");
        aFrame.setBounds(0, 0, 700, 500);
        Container contentPane = aFrame.getContentPane();
         //  add(new left());
         //       add(new right());
         //p.add(new left());
         //p.add(new right());
         r.textArea.setText("Red");
       p.add(l);
       p.add(r);
       p3.add(p);
       ///p3.add(p2);
       contentPane.add(p3);
       aFrame.setVisible(true);
    ===================================
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.event.ActionListener;
    public class left extends JPanel implements ActionListener
       public JButton redButton,greenButton,blueButton,yellowButton;   
       public left()
          JPanel pp = new JPanel();
          setLayout(new BorderLayout());
          redButton = new JButton("Red");
          redButton.addActionListener(this); // step 4
          greenButton = new JButton("Green");
          greenButton.addActionListener(this);
          blueButton = new JButton("Blue");
          blueButton.addActionListener(this);
          yellowButton = new JButton("Yellow");
          yellowButton.addActionListener(this);
          pp.add(redButton);
          pp.add(greenButton);
          pp.add(blueButton);
          pp.add(yellowButton);
          add(pp,BorderLayout.NORTH);
       public void actionPerformed(ActionEvent e)
           // e.getSource()  // returns name of the button
            if (e.getSource() == redButton){
               // r.setT("red");
                        System.out.println("red button");
            if (e.getSource() == greenButton)
              //r.textArea.setText("green");
                    System.out.println("green button");
            if (e.getSource() == blueButton)
              //r.textArea.setText("blue");
                    System.out.println("blue button");
            if (e.getSource() == yellowButton)
               // r.textArea.setText("yellow");
                        System.out.println("yellow button");
    ===================================
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.event.ActionListener;
    public class right extends JPanel
       JButton oneButton,twoButton;
       public JTextArea textArea;
       public right()
           JPanel jp = new JPanel();
           setLayout(new BorderLayout());
           oneButton = new JButton("one");
           twoButton = new JButton("two");
           textArea = new JTextArea();
           jp.add(oneButton);
           jp.add(twoButton);
           add(jp,BorderLayout.SOUTH);
           add(textArea,BorderLayout.NORTH);
    }In the left class I want to be able to click a button and then display a message in the JTextArea. I want main to be global - so the r object can be accessed anywhere.
    If anyone could get this to work I'd be really grateful.

    import java.awt.*;
    import java.awt.event.*;
    import java.awt.event.ActionListener;
    import javax.swing.*;
    public class ProjectRx
        public static void main(String[] args)
            // For the buttons in left to set text in the textArea
            // in right the two classes must communicate in some way.
            // Left must have a way to talk to right.
            // Option 1:
            //     Pass a reference to right to left which left can use
            //     to access the textArea in right.
            ProjectRightRx r = new ProjectRightRx();
            r.textArea.setText("Red");
            ProjectLeftRx l = new ProjectLeftRx(r);
            // Option 2:
            //     You could send a reference to the textArea to left
            //     instead of the reference to its enclosing class.
            //r.textArea.setText("Red");
            //ProjectLeftRx l = new ProjectLeftRx(r.textArea);
            JFrame aFrame = new JFrame();
            aFrame.setTitle("Swing 3");
            aFrame.setSize(400, 400);
            aFrame.setLocation(100,100);
            Container contentPane = aFrame.getContentPane();
            contentPane.add(r, "First");
            contentPane.add(l, "Last");
            aFrame.setVisible(true);
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.event.ActionListener;
    import javax.swing.*;
    public class ProjectLeftRx extends JPanel implements ActionListener
        ProjectRightRx r;
        public JButton redButton,greenButton,blueButton,yellowButton;   
        public ProjectLeftRx(ProjectRightRx r)
            this.r = r;
            JPanel pp = new JPanel();
            pp.setBorder(BorderFactory.createTitledBorder("Left"));
            setLayout(new BorderLayout());
            redButton = new JButton("Red");
            redButton.addActionListener(this); // step 4
            greenButton = new JButton("Green");
            greenButton.addActionListener(this);
            blueButton = new JButton("Blue");
            blueButton.addActionListener(this);
            yellowButton = new JButton("Yellow");
            yellowButton.addActionListener(this);
            pp.add(redButton);
            pp.add(greenButton);
            pp.add(blueButton);
            pp.add(yellowButton);
            add(pp,BorderLayout.NORTH);
        public void actionPerformed(ActionEvent e)
            // e.getSource()   returns object that generated this event
            // To get the name of the button you can try:
            JButton button = (JButton)e.getSource();
            String name = button.getActionCommand();  // or,
                          // button.getText();
            String ac = e.getActionCommand();
            System.out.println("name = " + name + "  ac = " + ac);
            if (e.getSource() == redButton){
    //            r.setT("red");
                System.out.println("red button");
            if (e.getSource() == greenButton)
                r.textArea.setText("green");
                System.out.println("green button");
            if (e.getSource() == blueButton)
                r.textArea.setText("blue");
                System.out.println("blue button");
            if (e.getSource() == yellowButton)
                r.textArea.setText("yellow");
                System.out.println("yellow button");
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.event.ActionListener;
    import javax.swing.*;
    public class ProjectRightRx extends JPanel
       JButton oneButton,twoButton;
       public JTextArea textArea;
       public ProjectRightRx()
           JPanel jp = new JPanel();
           setLayout(new BorderLayout());
           oneButton = new JButton("one");
           twoButton = new JButton("two");
           textArea = new JTextArea(10,25);
           jp.add(oneButton);
           jp.add(twoButton);
           add(new JLabel("Right", JLabel.CENTER), BorderLayout.NORTH);
           add(jp,BorderLayout.SOUTH);
           add(textArea,BorderLayout.CENTER);
    }

  • N95 GPS Please help

    Hell all,
    I have just bought the N95 8Gb version phone and am a little confused about the GPS funtionality.
    I understand that the Australian maps are free?
    I have also heard that they can take forever to download via the phone, is there another way?
    I have also been told that the navigation funtionality is free also, but i will have to pay for voice guided is this true?
    If i were to use Route66 loaded on the phone will i be paying any data download useage on the phone when using the GPS?
    Man this a hard ot get my head around
    Thanks all
    by the way fantastic site

    The maps are free.
    You can download them over the air with the handset, or you can download them with a computer onto your handset with the Maploader Program
    That is at http://maps.nokia.com
    With that Maploader Software you wont need to download any maps with the Nokia inbuilt software in your handset, there is also a version 2.0 software for your handset which is much better and faster than the original version.
    As for route66 - I have never used that so I cannot comment.
    If you want to use your device as a navigator, then you normally have to pay for this service via a subscription with the Nokia Software. If your handset is set to use A-GPS then your position is triangulated by a Server, which again needs a network connection. If you switch this off then you wont need a network connection but the phone will take longer to get a GPS Fix.
    Hope this helps
    Shunts...
    I will mostly be communicating with a Nokia E72 Zodium Black
    Nokia E72-1 with Vr 051.018.207.04 Software
    If this post helped... Add some kudos!!

  • I am totally lost with this instalation with Adobe Photoshop, can anyone HELP ME ????

    I am Totally Lost with the installing of my Adobe Photoshop CS6 ---- I have downloaded the 3 files ( directions & 2 installation setup programs)  NOW WHAT?????

    Cailinb1420473 do you receive any specific error messages when trying to install Creative Suite 6?  For information on how to install Creative Suite 6 please see Install Adobe Creative Suite 6.  If you have any questions regarding the document you are welcome to update this discussion.

  • So totally lost!

    I am so totally lost right now. I have been trying for two days to get my cd burner to work and can't. I am trying to make a cd for my husband who is in honduaras. I am sending a box there tomorrow but have had no luck with the cd. I'm not up to date with all the new hardware and software out now lol. Is there any other way to get music off my computer? Its old a Mac OS X 10.3.9. What do I need? MP3 player or an ipod? How do they work? Please help! This is so important,i'm almost ready just to pack my computer up and send it. I am a complete idiot about this so if you can help,please explain it to me in terms I can understand lol.

    Hi and welcome....
    Open the System Profiler (Applications/Utilities)
    Select: Disc Burning under Contents on the left.
    If your Mac can burn to CD's you should see: CD-Write -R -RW
    Its old a Mac OS X 10.3.9.
    In order to transfer music to an iPod you would need to upgrade to Leopard v10.5 since that is the minimum requirement for iTunes which you need to copy the music from the computer to the iPod.
    http://www.apple.com/itunes/download/
    If your Mac is a G3 you could install an older version of iTunes but you would still need to upgrade to Tiger v10.4.10 in order to burn CD's. http://support.apple.com/kb/DL857
    Carolyn

  • I am trying to transfer my library from one laptop to another and have lost about 600 songs, why is that and how can I fix it please?

    Can anyone help me successfully move my complete library from one laptop to another because I plugged my ipod nano into the new laptop which was fully up to date and have lost about 600 songs.
    Would appreciate any suggestions,
    Thanks.

    Copy the ENTIRE iTunes folder from the old computer to the new computer.

  • I recently have ipad but before i sell it i made a back up of it and by an iphone when i put all the date on my iphone some files and software did not install is there anything i can do to recover the lost data? please help

    i recently have ipad but before i sell it i made a back up of it and by an iphone when i put all the date on my iphone some files and software did not install is there anything i can do to recover the lost data? please help

    I don't think you're on iOS 5, I think you're using iOS 6.  That's the latest version.
    Unless you've used iCloud to back up your documents, you won't be able to restore them.  And for future reference, you don't have to uninstall Pages to update your iPad anymore.  Sorry about this.

  • New to mac, iphoto and totally lost

    Hi,
    Just got two macs, one ibook and one imac.
    transition from windows is not as easy as I thought. We have different users in the imac. Imported some pics in my user and some in my wife's. Set to share, but the pictures do not show in the source folder. Try everything: totally lost. When I go to the user's folder, there is a little -, and tells me i have no privilege to open the folder. How do we share the pics? is there an easy way?

    Hi bemusdan,
    follow brians advise and you should be set to go. I will give you some info to add to brian's.
    SHARING IPHOTO LIBRARIES
    Sharing libraries between users on the same local network
    You can also share a library on the same machine between users the same way.
    Sharing libraries between users on the same machine...
    -both users must have sharing enabled in their iPhoto Preferences
    -both users must be logged in and have iPhoto running
    -Remember that you can only view the other library. You can't edit the photos or play the saved slideshows or view the made books or burn them to CD or DVD. The books and slideshows will show up as an album. You can play that album as an "on the fly" slideshow. You can drag images from the sharing library to your library in the source column to import them to your library. You can then edit, add to albums, books, slideshow, etc.
    Sharing links from Apple....
    Sharing your photos between computers
    About shared photos
    Turning off photo sharing
    Looking for shared photos
    SHARING ONE IPHOTO LIBRARY BETWEEN USERS ON SAME MACHINE
    You can try one of these three methods:
    1- Use iPhoto Library Manager-the paid version
    The documentation page will give instructions on how it is done.
    2- Sharing one iPhoto library between several users on one machine
    3- Share an iPhoto Library in tiger Using ACL's
    4- I have also read about ShareAlike
    There is no other info on the site about how it works.
    I strongly urge anyone wanting to try any of the methods for sharing one iPhoto Library folder among more than one user to backup all iPhoto Library folders before attemptin anything.
    Lori

  • Lost about 500 songs after i-tunes update

    I looked through almost all of the posts on this board (I work overnights lots of down time) and I found very helpful advise with getting my girls mini to work with xp pro, mine 2G has worked fine since day one using 2000 pro. But I have not seen this issue yet after I updated i-tune I lost about 500 songs. I found a few that were gone and re converted them and made sure they showed up played them but a day later the ones that I re-converted showed up missing again.
    Any ideas

    I looked through almost all of the posts on this board (I work overnights lots of down time) and I found very helpful advise with getting my girls mini to work with xp pro, mine 2G has worked fine since day one using 2000 pro. But I have not seen this issue yet after I updated i-tune I lost about 500 songs. I found a few that were gone and re converted them and made sure they showed up played them but a day later the ones that I re-converted showed up missing again.
    Any ideas

  • OVM Manager is totally lost

    Hello everyone,
    The machine where I installed Oracle VM manager version 3.1.1 is totally lost accuse of hardware failure and unfortunately there is no backup taken for ovs schema nor for vm manager's config file as offline copy. I tried to install oracle vm manager o new machine, it is fine installed and ovs server is discovered properly, but my question is there a way to discover current ovs server configuration (Server pool, storage repository, network, ..., etc.) by the new oracle vm manager and change its ownership? or I have to re-install oracle vs which will cost a lot?
    Thank you,

    I have never had to do this, but just incase its helpful. The old vm.cfg for each VM should still be found on you NFS server in the repository you setup (assuming you used NFS). Unless someone has a better option, changing the appropiate UID's in the path may help. Here's an example to one of my VM's. You may also check the OVM Tools optional download to see if there are any usefull recovery utilities. There are likely wiser admin's here who can guide you better.... Good luck.
    /OVS/Repositories/0004fb00000300003265413825b4500a/VirtualMachines/0004fb00000600000e48c261e36dce38/vm.cfg

  • TS3926 I totally lost my installer DVD and start up disk what should I do...?

    Please help me to re-install my Snow Lapard OS, As I totally lost my start up disk and Installer DVD, my hole Apple system's OS X  gone crashed due to some stupayed Tor-jan horse virus came from Installing games for my kids and the whole OS X gone mad and shows some Display (VGA) Problem and the whole Apple Laptop (MAC BOOK PRO) gone crazy and Hanging and re-startng automatically, sir / maddam I'm living Karachi, Pakistan and I'm a very poor man and have no job at all, please Help me in the sake GOD.

    You can purchase replacement discs from Apple:
    Apple Store Customer Service at 1-800-676-2775 or visit online Help for more information.
    To contact product and tech support: Contacting Apple for support and service - this includes
    international calling numbers..
    If your model can boot from a 10.6.3 retail Snow Leopard DVD:
    You can purchase Snow Leopard through the Apple Store: Mac OS X 10.6 Snow Leopard - Apple Store (U.S.). The price is $19.99 plus tax. You will be sent physical media by mail after placing your order.

  • I have "LOST" about 3/4 of my library,

    I have lost about 3/4 of my library.
    I get a message saying the original file cannot be found and would I like to locate it.
    When I click locate it shows a list of iTunes library folders, but I cant open them and it retuns me to my lists.
    Please can someone help???

    This happens if the file is no longer where iTunes expects to find it. Possible causes are that you or some third party tool has moved, renamed or deleted the file, or that the drive it lives on has had a change of drive letter. It is also possible that iTunes has changed from expecting the files to be in the pre-iTunes 9 layout to post-iTunes 9 layout,or vice-versa, and so is looking in slightly the wrong place.
    Select a track with an exclamation mark, use Ctrl-I to get info, then cancel when asked to try to locate the track. Look on the summary tab for the location that iTunes thinks the file should be. Now take a look around your hard drive(s). Hopefully you can locate the track in question. If a section of your library has simply been moved, or a drive letter has changed, it should be possible to reverse the actions.
    Alternatively, as long as you can find a location holding the missing files, then you should be able to use my FindTracks script to reconnect them to iTunes .
    tt2

  • I have frequent instances of my Macbook Pro beeping 3 times and then I have to forcefully shut it down by pressing the power button. What is this all about? Please help. Thank you.

    I have frequent instances of my Macbook Pro beeping 3 times and then I have to forcefully shut it down by pressing the power button. What is this all about? Please help. Thank you.
    I saw this report being sent to Apple:
    Interval Since Last Panic Report:  581719 sec
    Panics Since Last Report:          10
    Anonymous UUID: F4CF708D-D85C-4EC5-8047-4FC22C6B03AF
    Fri Mar  7 13:00:14 2014
    panic(cpu 0 caller 0xffffff80002d1208): Kernel trap at 0xffffff800020c590, type 14=page fault, registers:
    CR0: 0x0000000080010033, CR2: 0x0000000000000000, CR3: 0x0000000007541000, CR4: 0x0000000000040660
    RAX: 0xffffff8000000000, RBX: 0xffffff800d35a870, RCX: 0xffffff800cf55cd8, RDX: 0xffffff80008a8fcc
    RSP: 0xffffff805e5f3d60, RBP: 0xffffff805e5f3da0, RSI: 0x000000001dcd6500, RDI: 0xffffff800d168778
    R8: 0x0000000000000001, R9: 0xffffff805e5f3e88, R10: 0x0000000000000011, R11: 0x0000000000000000
    R12: 0x0000000000000000, R13: 0xffffff800d168770, R14: 0xffffff800d168778, R15: 0x0000000000000000
    RFL: 0x0000000000010082, RIP: 0xffffff800020c590, CS:  0x0000000000000008, SS:  0x0000000000000010
    Error code: 0x0000000000000000
    Backtrace (CPU 0), Frame : Return Address
    0xffffff805e5f3a00 : 0xffffff8000204d15
    0xffffff805e5f3b00 : 0xffffff80002d1208
    0xffffff805e5f3c50 :
    Model: MacBookPro8,1, BootROM MBP81.0047.B27, 2 processors, Intel Core i5, 2.3 GHz, 4 GB, SMC 1.68f99
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 5.100.198.104.5)
    Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
    Serial ATA Device: Hitachi HTS545032B9A302, 298.09 GB
    Serial ATA Device: OPTIARC DVD RW AD-5970H
    USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.), 0x8509, 0xfa200000 / 3
    USB Device: Hub, 0x0424 (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x821a, 0xfa113000 / 8
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0245, 0xfa120000 / 4
    USB Device: Hub, 0x0424 (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd110000 / 3

    Hmm. The problem still may be the RAM - Apple buys the RAM it puts in its machines from third-party vendors (usually Hynix) so it could be a RAM problem.
    There are a couple of things that you can do yourself before taking your machine into an Apple Store or an AASP... download and run an application named Rember that will run a RAM test for you - let it run for a couple of hours or even overnight. If it turns out that your RAM is faulty, Rember will let you know. If it is faulty, then you have a couple of options - replace the RAM yourself or (particularly if you're under warranty still) take the machine to an Apple Store or AASP and have them replace the RAM.
    If Rember finds no fault with the RAM, then you'll need to take it into an Apple Store/AASP and get a free diagnosis on the machine. Three beeps do usually indicate faulty RAM, but if it tests good with Rember you likely have another problem - it could be something as simple as the RAM, somehow, not seated correctly or signs of another hardware problem.
    Run Rember first... call back with results.
    Good luck,
    Clinton

  • HT4527 I got a new pc, transferred files, and lost about 2/3 of my library. Also all of my playlists. Have a lot on my iPod, but not all of it. Where did it go?

    I got a new pc, transferred files, and lost about 2/3 of my library. Also lost all playlists. I have a good amount on my iPod but can't transfer. What happened to my music?

    iDevices are not and have never been backup devices.
    Authorizing a computer does not cause media to magically appear.
    Media is only where the user puts it.
    Copy the ENTIRE iTunes folder from the old computer to the new computer.

  • I was updating software and suddenly my IPHONE  started asking for I tunes on mobile screen ,  how can  i  get by screen back or How i can restore without loosing data , I m more worried about data , Please help in resolutio

    i was updating software and suddenly my IPHONE  started asking for I tunes on mobile screen ,  how can  i  get by screen back or How i can restore without loosing data , I m more worried about data , Please help in resolutio

    What exactly are you seeing on the phone's screen ? If the iTunes icon and cable then the phone is in recovery mode, in which case it's too late to take a new backup or to copy any content off the phone - you will have to connect the phone to your computer's iTunes and reset it back to factory defaults, after which you can restore to the last backup that you took or just resync your content to it

Maybe you are looking for

  • How do I center text in Final cut Pro?

    Hi, does anyone know how to directly center text with more than one line of text in Final Cut Pro? If I have more than one line it doesn't seem to center properly. I've tried wireframe (which is inaccurate), center values (which doesn't work) and Bor

  • Information about class athenticator

    hello; i am developing an aplication that ask authenticatin from user so i want to know if i have to build the Jdialog that it will be sent to user or just call this methode getPasswordAuthentication() and just this methode wil return to me login and

  • "Unable to download" error in iTunes iPod touch 5G

    I began to download a song, and suddenly an error came up saying it was unable to download. I tried resetting my iPod, sliding from the left, and the right to delete, nothing worked. Please, help! I am on iOS 7.0.4, if that helps. Thank you!

  • TS4185 i have a macbook pro and when using FaceTime people are unable to hear me, even though i can hear them

    I have a macbook pro and when using facetime people are unable to hear me, even though i can hear them.

  • Discoverer 4I (4.1.48.06.00)

    Hi , I want to install Discoverer 4i (Ver :4.1.48.06.00) .Any one can let me know where can i down load the Software . I tried in OTN but i could find any links for teh software to downlaod. Thanks Kiran.