Nokia Maps, Satelite View not working???

Hello,
i'm new to Nokia Maps and i wonder how i can use Nokia Maps with Satelliteview?
If i switch to Sateliteview i don't see any Pictures, i just see a yellow-green-something area, but no satelite-pictures.
I also downloaded some maps to my device. No Change also, if i am online through Wifi or on offline mode.
So, how can i see satelite pictures?
Hope someone can help out on this?!

26-Nov-2008 10:19 AM
smoketoomuch wrote:
...And it uses quite a lot of data traffic...
Exactly, so if you don't have a data plan and use the sat images a lot then you'll get charged a lot.
Grayburn @ www.nokiausers.net & www.dailymobile.se....come say Hello!!!
If you appreciate ANY help from a member,then show it by clicking on the Blue Star button, cheers

Similar Messages

  • Nokia Maps 2.0 not working

    Hi,
    I've been using Nokia Maps 1.0 (including voice naviagtion) without any problems whatsoever for three weeks or so...since I got my new E65.
    No I downloaded Maps 2.0 so as to be up-to-date....and now I can't make it work. I completed the installation and although it appears on my installed applications list it won't open and there is n Nokia Maps graphic, so something must be wrong.
    Any ideas. I guess I'll go back to Maps 1.0 but I really wanted to give 2.0 a try

    Hi,
    I can't exactly pinpoint what was that final "move" that worked.....but I'll tell you more or less all of which I did.
    First of all I installed the Maps 2.0 file you're supposed to use when you have a previous version installed. So this didn't work. I tried deleting maps from the app.manager but just as it was about to complete the uninstall process it said there was an error.
    Following a recommendation in Maps 2.0 FAQ's I erased the "cities" folder in my memory card. Afterwards I re-installed Maps 1.0. After doing this if I went into the app. manager Maps 2 would still show on the list, but it said "not installed"....even so I tried uninstalling and it worked. After this I then uninstalled the other Maps application that showed up on the list, presumably version 1.
    After doing all of this I then tried going to maps.nokia.com to download the original version...I was unable to get the website working. I don't know if it was something do with my phone or not, so I re-installed Maps 1 using Nokia PC Suite and the downloaded Map Loader to get my maps again...remember to get the Map Loader from maps.nokia.com and not the one from the Beta Labs website.
    This is more or less all of what I did yesterday night...let us know how you do and if you find a quicker way to get rid of Maps 2.

  • Nokia 5800- nokia maps v3.06 not working

    When I install it it was working for the first 2 weeks but for now it is not working when I press on my position button I says Searching for position and after 20 min still searching for position..
    and I reinstall it and reset it and it is still not working...
    please help me solve this..
    thanks
    Solved!
    Go to Solution.

    Are you sure you are trying it the same way when it worked last time ? What I mean is ..is it at the SAME place or under SAME conditions ? For GPS to work with Integrated GPS Positioning .. you MUST go to an area open to sky.. launch the application and wait.. If the location is having tall buildings / trees and /or the weather is cloudy / rainy, then you may have to wait for quite a long time..

  • Nokia Maps Satellite View Quality

    Nokia Maps satelite view picture quality is very ugly in some countries to the point where you can't make out a single thing when zoomed in. I live in Jamaica and it is a pain trying to use it, so I am forced to use that other mapping service we all know of.
    Will this problem ever be fixed? I need to know so that I can make a decision.
    MobileTopSoft blogger and Nokia fanboy, hooah!

    The same low quality for Afghanistan's Satellite map. In Ovi Maps mobile there is no more zoom level after 1KM. and in maps.nokia.com even 1KM zoom level is not clear.
    BUT if you check NAVTEQ website you can see that it has HIGH QUALITY and CLEAR satellite images up to 50M ZOOM LEVEL.
    Long time that it's very poor in Nokia's. When it will be implemented to maps.nokia.com and then to Ovi Maps mobile? How much time will it take?
    As "Vames" said that Nokia Maps and Google Maps are provided by Navteq still Nokia couldn't improve maps for Afghanistan BUT Google has High Quality Satellite images and NAVIGABLE Map for Afghanistan.
    When will Nokia improve the Maps?
    When there will be navigable Maps for Afghanistan?
    Regards.

  • Google street view not working on firefox 14.0.1

    google street view not working on firefox 14.0.1 - after moving the person to the map it goes blank. Have tried the fixes in the community support. Still works fine in IE

    Do you have Flash installed? You need a different version of it for Firefox. The plugin for IE will not work with Firefox. You can get it here:
    http://www.adobe.com/products/flashplayer/distribution3.html

  • Nokia maps 2.0 stopped working on E90 after I used...

    Nokia maps 2.0 stopped working on my E90 after I used maps downloader 2.0. How can i resolve it?
    Solved!
    Go to Solution.

    Try to restore factory settings by going to Menu > tools > settings > general > factory settings.
    Or simply key in *#7780# when on stand by.
    The code by default is 12345.
    If this does not help then you may wanna try to re-install the maps application by going to http://europe.nokia.com/explore-services/maps/download
    Download and install the latest version as yours might have been corrupted.
    Mark me a KUDOS if this has helped...

  • TS1702 Maps program does not work. In standard it only shows a grid. If I ask for a route it shows start and end point and three route boxes but nothing else. It does show directions. If I switch to hybrid it shows to routes but no roads. Background is a

    Maps program does not work. In standard it only shows a grid. If I ask for a route it shows start and end point and three route boxes but nothing else. It does show directions. If I switch to hybrid it shows to routes but no roads. Background is a blur.

    Do you have a question? This is a user to user help forum. Apple is not here only other users like yourself. You don't report problems to Apple here.
    By the way, it might help if you indicated where you are located.
    To complain to Apple use http://www.apple.com/feedback/ipad.html

  • Order by in MATERIALIZED VIEW not work successfully with first column (ID)

    Dears,
    I am trying to create a Materialized View as below:
    CREATE MATERIALIZED VIEW HR.MV_EMP
    PCTFREE 10
    MAXTRANS 255
    TABLESPACE users
    STORAGE (
    INITIAL 65536
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    BUILD IMMEDIATE
    REFRESH ON DEMAND
    AS
    SELECT *
    FROM employees
    where rownum < 5000 order by employee_id desc ;But while querying the MATERIALIZED VIEW, it did not work successfully as the data did not appear in the accurate order.
    I tried to create the same MATERIALIZED VIEW but order by another column (Column Date), it worked successfully and the data appeared in the accurate order.
    It means that MATERIALIZED VIEW not work successfully with the first column (id).
    Can you please help me in this ?
    Thanks & regards,,

    A few pointers :
    1. As has been pointed out, the ROWNUM has been incorrectly placed. ROWNUM values are assigned as rows are fetched from the source before the ORDER BY. You need to ORDER BY first (in a SubQuery) and then ROWNUM afterwards (outside the SubQuery).
    2. I wonder why you want only the last 5000 EMPLOYEE_IDs. What if Employee_ID 1 is still an active employee (he is the founder, first employee and CEO ?). There could be very many "low" EMPLOYEE_IDs that are still active.
    3. Logically I would expect some filter other than the ROWNUM ... ORDER BY to be used to select candidate rows. Then, an ORDER BY in the CREATE query would be unnecessary.
    4. When querying the Materialized View you must explicitly ORDER BY (irrespective of whether you did or did not do an ORDER BY in the CREATE ...)
    5. How do you expect to refresh the MV ? Will it always be a COMPLETE Refresh ? Remember that your "5000 employees" filter would likely exclude older employees at the next refresh. If you use some other filter, it should be consistent across all refreshs.
    Hemant K Chitale

  • PDF Viewer Not Working Some Scanned PDF Files.

    I Have Firefox Latest Version. I Want To View PDF files in Firefox without downloading them. But Firefox PDF Viewer Not Working Scanned PDF. Other Browsers Can View It.
    http://t.co/teYs9LOtyq
    This Is A Serious Problem & Please Fix This Issue.
    Thank You.

    Same problem. Am using Firefox 24 (W7x64).
    I've tried setting it to use the built-in PDF viewer, to always asking, to using Adobe plugin, to using Nitro plugin.
    I changed the pdfjs.disabled in about:config to true but that didn't help.
    The plugin.disable_full_page_plugin_for_types was set to
    user set string ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,
    I changed it to default, string but that didn't help either.
    The pdfjs.database is set to {"files":[{"fingerprint":"a217d02eee11bdca6fa87ec7d192fd7","exists":true,"page":1,"zoom":"auto","scrollLeft":0,"scrollTop":800},{"fingerprint":"2fc235a8bd85f838d74c927cfcd9842","exists":true,"page":2,"zoom":"auto","scrollLeft":0,"scrollTop":587},{"fingerprint":"c839bb8d692bce1ea48d681a35741e49","exists":true,"page":1,"zoom":"auto","scrollLeft":0,"scrollTop":792},{"fingerprint":"3dc145587d24022921d7e241bc3a5","exists":true,"page":35,"zoom":80,"scrollLeft":360,"scrollTop":707},{"fingerprint":"18a76da679de944893795ed1e4a136","exists":true,"page":2,"zoom":110.00000000000001,"scrollLeft":0,"scrollTop":662},{"fingerprint":"d8270f838618eeca6ea969e255b239f","exists":true,"page":24,"zoom":"auto","scrollLeft":0,"scrollTop":51},{"fingerprint":"443a32303133303630333137313132342d303427303027","exists":true,"page":1,"zoom":"auto","scrollLeft":0,"scrollTop":772},{"fingerprint":"443a32303133303631303135343033332d303427303027","exists":true,"page":1,"zoom":"auto","scrollLeft":0,"scrollTop":772},{"fingerprint":"443a32303133303631303132323731332d303427303027","exists":true,"page":1,"zoom":"auto","scrollLeft":0,"scrollTop":772},{"fingerprint":"443a32303133303631373133313733372d303427303027","exists":true,"page":1,"zoom":150,"scrollLeft":0,"scrollTop":772},{"fingerprint":"591aede8aeea4ade9612674263eaf4a2","exists":true,"page":1,"zoom":"auto","scrollLeft":0,"scrollTop":772},{"fingerprint":"443a32303133303830353132353132372d303427303027","exists":true,"page":1,"zoom":"auto","scrollLeft":0,"scrollTop":772},{"fingerprint":"8bf283ba7a5cc5479db8405215d67d3","exists":true,"page":1,"zoom":"auto","scrollLeft":0,"scrollTop":1008},{"fingerprint":"768e8216a07384f961d92204d6a1ef8","exists":true,"page":1,"zoom":"auto","scrollLeft":0,"scrollTop":800},{"fingerprint":"a4649ba52b2dcd144b35b9bd5c10a7","exists":true,"page":52,"zoom":"auto","scrollLeft":0,"scrollTop":290},{"fingerprint":"d612d5d934c66f4aa936b5b0a6cce91","exists":true,"page":18,"zoom":"auto","scrollLeft":0,"scrollTop":168},{"fingerprint":"de55bb394d87ed4cb8dd7584c4b68f61","exists":true,"page":1,"zoom":"auto","scrollLeft":0,"scrollTop":612},{"fingerprint":"fd4b802248d8a94e825747cf2ba32e2f","exists":true,"page":4,"zoom":"auto","scrollLeft":0,"scrollTop":109},{"fingerprint":"229e846140d9925da79a11f7d6cae","exists":true,"page":1,"zoom":"auto","scrollLeft":0,"scrollTop":800}]}

  • Lomboz J2EE View not working

    Lomboz J2EE View not working always give such type error
    java.lang.NoClassDefFoundError: org/apache/jasper/Options
         at com.objectlearn.jdt.j2ee.core.Project.initContainers(Project.java:370)
         at com.objectlearn.jdt.j2ee.core.Project.init(Project.java:102)
         at com.objectlearn.jdt.j2ee.core.Project.<init>(Project.java:43)
         at com.objectlearn.jdt.j2ee.core.Project.getWorkspaceProjects(Project.java:427)
         at com.objectlearn.jdt.j2ee.ui.ContainerView.init(ContainerView.java:334)
         at com.objectlearn.jdt.j2ee.ui.ContainerView.<init>(ContainerView.java:99)
         at com.objectlearn.jdt.j2ee.ui.J2EEView.createViews(J2EEView.java:241)
         at com.objectlearn.jdt.j2ee.ui.J2EEView.createSashForm(J2EEView.java:262)
         at com.objectlearn.jdt.j2ee.ui.J2EEView.createPartControl(J2EEView.java:306)
         at org.eclipse.ui.internal.ViewReference.createPartHelper(ViewReference.java:370)
         at org.eclipse.ui.internal.ViewReference.createPart(ViewReference.java:227)
         at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:592)
         at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:299)
         at org.eclipse.ui.internal.ViewPane.setVisible(ViewPane.java:531)
         at org.eclipse.ui.internal.presentations.PresentablePart.setVisible(PresentablePart.java:179)
         at org.eclipse.ui.internal.presentations.util.PresentablePartFolder.select(PresentablePartFolder.java:268)
         at org.eclipse.ui.internal.presentations.util.LeftToRightTabOrder.select(LeftToRightTabOrder.java:65)
         at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation.selectPart(TabbedStackPresentation.java:400)
         at org.eclipse.ui.internal.PartStack.refreshPresentationSelection(PartStack.java:1256)
         at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:668)
         at org.eclipse.ui.internal.PartStack.createControl(PartStack.java:576)
         at org.eclipse.ui.internal.PartSashContainer.createControl(PartSashContainer.java:564)
         at org.eclipse.ui.internal.PerspectiveHelper.activate(PerspectiveHelper.java:270)
         at org.eclipse.ui.internal.Perspective.onActivate(Perspective.java:931)
         at org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:3479)
         at org.eclipse.ui.internal.WorkbenchPage.busySetPerspective(WorkbenchPage.java:997)
         at org.eclipse.ui.internal.WorkbenchPage.access$18(WorkbenchPage.java:981)
         at org.eclipse.ui.internal.WorkbenchPage$18.run(WorkbenchPage.java:3578)
         at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:67)
         at org.eclipse.ui.internal.WorkbenchPage.setPerspective(WorkbenchPage.java:3576)
         at org.eclipse.ui.internal.PerspectiveBarContributionItem.select(PerspectiveBarContributionItem.java:123)
         at org.eclipse.ui.internal.PerspectiveBarContributionItem$1.widgetSelected(PerspectiveBarContributionItem.java:92)
         at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:227)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389)
         at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353)
         at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219)
         at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466)
         at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289)
         at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461)
         at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
         at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106)
         at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:169)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:508)
         at org.eclipse.equinox.launcher.Main.basicRun(Main.java:447)
         at org.eclipse.equinox.launcher.Main.run(Main.java:1173)
    How to remove this type of error please help me. I need help.plz reply

    What version of Lomboz are you using? J2EE View was available in Lomboz 2.x releases and is not found in later releases. These olde versions used a lightweight JSP editor based on jasper. Your message looks like it is related to that.
    I would recommend upgrading to one of the later releases such as 3.3, which can be found at:
    http://lomboz.objectweb.org/downloads/download.php
    If you have to pursue your current version, you can post your Lomboz releated help messages at and we will try to help you:
    http://forge.objectweb.org/forum/forum.php?forum_id=360

  • NOKIA 202 RED BUTTON NOT WORKING

    I JUST TURNED OFF MY PHONE 202 AND  after some time i try to switch on that phone but red button not worked  and other keybuttons works good and i try flash the phone but it says remove cable and batery and put cable and put batery and power on but funny thing is my red button not worked and i just got dull finally i am asking you guys is there any solution to power on i try almost all key board tricks i.e * 3 gren red etc  or a software to power on.MY NOKIA 202 RED BUTTON NOT WORKING 

    Hi, DEVRAMP. How did you flash your phone? Is there a battery indicator when you charge it? You may try the following solution below:
    Check that the keypad is not locked.
    Make sure that all keys are responding correctly when they are pressed. In some cases, a key may get stuck and freeze the whole keypad.
    Try removing and replacing the covers (if your phone supports that feature). Check that the power and side keys on the cover are properly aligned (e.g. pushed out) to their respective positions to have a proper tactile feel when pressing the keys. 
    Keep us posted. 

  • IPAD 2 ,MY  iPAD IS UPDATED, BUT MAP SOFTWARE IS NOT WORKING PROPERLY ,LOCATION/ROUTE

    iPAD 2 ,MY  iPAD IS UPDATED, BUT MAP SOFTWARE IS NOT WORKING PROPERLY ,LOCATION/ROUTE & DISTANCE ALSO...
    CAN YOU GUIDE HOW TO SOLVE THIS PROBLEM....WAITING FOR SAME.
    VIRAL THAKKER- INDIA.
    ALSO, I HVE SOME PROBLEM IN MACBOOK SOFTWARE OPREATRING SYSTEM IS 10.6.1 AND TRY DOWNLOAD 10.6.8...BUT DON'T KNOW AFTER DOWNLOADING,I M NOT ABEL TO RUN IN MY MACHINE .
    ANY BODY CAN GUIDE ME? TO SOLVE THIS PROBL.
    VIRAL THAKKER INDIA

    Try this: Open up her Home folder (house icon), click Library then Preferences. Locate com.apple.softwareupdate.plst (I don't have my Mac handy so I can't double-check the name; that should be correct) and move it to the desktop or trash, then try running Software Update again. Also try running Software Update while logged in as another administrator.
    ~Lyssa

  • Mah nokia lumis 710 camera not working... what to...

    mah nokia lumis 710 camera not working... what to do????

    When you try to open the camera either by hitting the camera key or going to the app list, what happens?
    1. Reboot the phone. Press the volume down and power keys together for 15 seconds until the phone vibrates and starts up.
    2. Check that the software of the phone is updated.
    3. Reset the phone by going to Settings > About. This deletes all the content of the phone so make sure to create a backup copy of your files. See "Reset and restore your phone" in this link to backup important data on the phone: http://support.microsoft.com/kb/2606900.
    If above steps would not help, bringing the phone to a Nokia Care Point is what I'd suggest: http://www.nokia.com/global/support/locations/

  • Customized strings in iPad viewer not working?

    Hello,
    per request of client i've tried to change one string in viewer for iPad. So i've created template in DSP App Builder, modified this template on my computer, choose this file in App Builder and prepared another build (V28). Unfortunately, i still see old original string (i've double tested that i'm downloading new version of app). When i now check DPS App Builder, it just says "Asset stored on server", so i asume, that everything goes smoothly on this side.
    Any similar experience with customized strings?
    Thanks
    Martin

    Everything was done from scratch with V28.
    1. 10. 2013 v 16:14, Bob Bringhurst <[email protected]>:
    Re: Customized strings in iPad viewer not working?
    created by Bob Bringhurst in Digital Publishing Suite - View the full discussion
    That's odd. It worked for me when I tested it. Perhaps you should try moving the current xml file to a different folder, downloading a new version, copying and pasting, and rebuilding.
    Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5728130#5728130
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5728130#5728130
    To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5728130#5728130. In the Actions box on the right, click the Stop Email Notifications link.
    Start a new discussion in Digital Publishing Suite at Adobe Community
    For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • NOKIA ASHA 200 dose not work social application

    Hi..
    Since yesterday "social" application on my nokia asha 200 dose not work.. when i tring to open it phome display that " Applicion error" phone proved me only "exit" option.. so now i cant login to my facebook account on socia application. can you help me to solve this problem??
    Moderator's Note: We have moved your post to the appropriate board. This is to keep the forum organized and let other forum users easily see and respond to this post.

    hi mate,
    have you checked if there are any firmware updates avaiklable for your device via Nokia suite on your PC? if there are any, please updaet to the latest versiojn offered. if not, then try re-installing your current firmware or if that doesn't work, then Restore your phone to factory settings.

Maybe you are looking for