Lost maps application

I lost my map application on nokia 500 and I can't get it back, first I experienced a problem with the check in service now the whole application is gone
even though I downloaded nokia maps v 3.08 from the internet and after installing it it wont open idk what else to do
anyone can help me plz 
Solved!
Go to Solution.

khalifa989 wrote:
i guess so so what's the latest version for anna and Nokia 500??
Nokia Maps v3.08_11wk41_b02 delivered as v3.08_11wk41_b02_sr1.0_store.sis 
Happy to have helped forum with a Support Ratio = 42.5

Similar Messages

  • I lost my Maps Application

    I lost my Maps Application. It's now where to be found! I even checked my restrictions! Does anyone know how to get it back? TIA

    Usually when this happens, it has moved to a page all by itself and you need to scroll through pages to find it.
    Have you tried locating it by using the Search?

  • Lost Maps data in Memory Card

    I recently formatted my phone and memory card and lost the nokia maps data from the card.
    while updating with nokia suit it says "can't find maps on phone". what can i do for getting back the data ? 
    @fthab
    Attachments:
    maps.jpg ‏131 KB

    helloafthab wrote:
    What can i do for getting back the data ? 
    Open Ovi Maps application upon device and perhaps download a few kb's of map data for your current position, then close application and re-try.
    Happy to have helped forum with a Support Ratio = 42.5

  • Mapping Application and GPS Location

    I have a BB Curve on Verizon.   I have used the mapping application to locate local businesses.   When I try to map to those locations, the device wants to know my starting location.   How do I make it use my current GPS location?   It obviously knew where I was in order to tell me how close I was.

    From what I have read on both this forum and Crackberry's Verizon 8330 GPS is not enabled unless you pay for VZ Navigator. However, Google maps uses cell towers as well to triangulate your position, if your GPS is disabled. Google Maps works real well, as long as you can live with being APPROXIMATLEY on a location. In my case I am within 5,000 meters while at home. When I travel downtown I've had it go to within 500 meters. I believe that difference is the amount of cell towers in the area.
    Google maps is free, VZnavigator is a monthly fee of around $10 I think.
    Hope this helps!
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • WEB BASED MAPPING APPLICATION TO DEVELOP QUERY UTILITY USING MAPVIEWER

    Dear Sir,
    please any one can answer me as soon as possible its very urgent
    WEB BASED MAPPING APPLICATION TO DEVELOP QUERY UTILITY USING MAPVIEWER
    I     As oracle mapviewer Chapter 8 (Oracle Maps) says generating our own Web based mapping application we are trying to generate our own maps for our own data contains in our layers like example boundary lines and roads and etc. and we are following complete example as described in Oracle Mapviewer Document Chapter 8.
    Before this step we tried with demo data downloaded from OTN mvdemo. And we downloaded latest demo today itself from the OTN and imported into our database schema called mvdemo. And we copied all three jar files mvclient and mvconnection and mvpalette into our jdeveloper .
    II.     We created a jsp to execute the following code from oracle mapviewer chapter 8 documents
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces" prefix="af"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/customizable" prefix="cust"%>
    <%@ taglib uri="http://xmlns.oracle.com/j2ee/jsp/tld/ojsp/jwcache.tld"
    prefix="jwcache"%>
    <%@ taglib uri="http://xmlns.oracle.com/adf/faces/html" prefix="afh"%>
    <%@ taglib uri="http://xmlns.oracle.com/j2ee/jsp/tld/ojsp/fileaccess.tld"
    prefix="fileaccess"%>
    <%@ taglib uri="http://xmlns.oracle.com/j2ee/jsp/tld/ojsp/jesitaglib.tld"
    prefix="JESI"%>
    <f:view>
    <html>
    <head>
    <META http-equiv="Content-Type" content="text/html" charset=UTF-8>
    <TITLE>A sample Oracle Maps Application</TITLE>
    <script language="Javascript" src="jslib/loadscript.js"></script>
    <script language=javascript>
    var themebasedfoi=null
    function on_load_mapview()
    var baseURL = " http://localhost:8888/mapviewer/omserver";
    // Create an MVMapView instance to display the map
    var mapview = new MVMapView(document.getElementById("map"), baseURL);
    // Add a base map layer as background
    mapview.addBaseMapLayer(new MVBaseMap("mvdemo.demo_map"));
    // Add a theme-based FOI layer to display customers on the map
    themebasedfoi = new MVThemeBasedFOI('themebasedfoi1','mvdemo.customers');
    themebasedfoi.setBringToTopOnMouseOver(true);
    mapview.addThemeBasedFOI(themebasedfoi);
    // Set the initial map center and zoom level
    mapview.setCenter(MVSdoGeometry.createPoint(-122.45,37.7706,8307));
    mapview.setZoomLevel(4);
    // Add a navigation panel on the right side of the map
    mapview.addNavigationPanel('east');
    // Add a scale bar
    mapview.addScaleBar();
    // Display the map.
    mapview.display();
    function setLayerVisible(checkBox){
    // Show the theme-based FOI layer if the check box is checked and
    // hide the theme-based FOI layer otherwise.
    if(checkBox.checked)
    themebasedfoi.setVisible(true) ;
    else
    themebasedfoi.setVisible(false);
    </script>
    </head>
    <body onload= javascript:on_load_mapview() >
    <h2> A sample Oracle Maps Application</h2>
    <INPUT TYPE="checkbox" onclick="setLayerVisible(this)" checked/>Show customers
    <div id="map" style="width: 600px; height: 500px"></div>
    </body>
    </html>
    </f:view>
    <!--
    <html>
    <head>
    <meta http-equiv="Content-Type"
    content="text/html; charset=windows-1252"/>
    <title>mapPage</title>
    </head>
    <body><h:form binding="#{backing_mapPage.form1}" id="form1"></h:form></body>
    </html>
    -->
    <%-- oracle-jdev-comment:auto-binding-backing-bean-name:backing_mapPage--%>
    III.     When we run this jsp it’s giving us following Two errors
    1     Error:     ‘MVMapView’ is undefined
         Code:     0
         URL:     http://192.168.100.149:8988/MapViewerApp-WebProj-context-root/faces/mapPage.jsp
    2     Error:     ‘themebasedfoi’ is null or not an object
         Code:     0
         URL:     http://192.168.100.149:8988/MapViewerApp-WebProj-context-root/faces/mapPage.jsp
    Please let us know what could be problem as soon as possible. Very urgent
    Please let us know where we can find Mapviewer AJAX API’s for Jdeveloper Extention
    Thanks
    Kabeer

    I currently use parameters, and they are passed from the form to the report. Report is then generated based on a function returning ‘strongly typed’ cursor. The ‘strongly typed’ cursor in my case returns a record consisting of an orderly collection of fields.
    This collection of fields is returned by another function that relies on the IF … THEN logic.
    However, the number of IF ... THEN statements is quite large (currently 64 covering all possible combinations of 6 parameters available in the form).
    I would like to avoid the large number of IF … THEN statements, and hope that there is a way of passing a string to a query, where the Dynamic SQL would in Select close and Where close reflect parameters passed by the form.
    In addition to this I would like to avoid creating and populating a table or a view dedicated to the report, because this may lead to a conflict in case of multiple users concurrently generating reports with different choice of parameters.
    Edited by: user6883574 on May 28, 2009 9:16 PM

  • I Lost My Application Folder and I Can't Get It Back With It's Previous Features

    I lost my application folder!! I have tried dragging it from my hard drive but all I have left over is my skype. when i was trying to change the size of my screen's window i accidently picked up the applications folder and when i let go of my mouse it disappeared and now I cant get it back with everything in it. (front row, screen grab, etc)

    First of all don't empty the Trash.
    Second, it is unlikely the folder is gone, you just dragged it someplace else. Here is one easy way to find it:
    Go to Spotlight and type in the name of one of the programs that you had in that folder. Click on the program when it finds it. When the program launches, click and hold its icon in the Dock until you get the pop up menu. Choose "options > show in Finder".
    That will open the enclosing folder and select the program. While you are there drag the folder back to where you want it.

  • Unable to Clear Recent Address Searches in Maps Application

    How do I clear or delete recent address searches in the Maps application on a Blackberry 9850?  When I select Maps, Get Directions, Select End Location, Find a Location, my recent address searches are displayed under Recent Searches.  How do I delete them?

    * Make sure that you not run Firefox in (permanent) [[Private Browsing]] mode
    * You enter Private Browsing mode if you select: Tools > Options > Privacy > History: Firefox will: "Never Remember History"
    * To see all History and Cookie settings, choose: Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    * Uncheck: [ ] "Automatically start Firefox in a private browsing session"

  • Is it possible to import and display/plot (Google Earth) KML files as overlays in Mac OS 10.9 Maps application?

    Is it possible to import and display/plot (Google Earth) KVM files as overlays in Mac OS 10.9 Maps application?
    Here is the particular application: (note I haven't gotten the code to compile yet -- seems to be several differently named environment variables in Mac unix than in Linux that are making the compile blow up -- but that's another issue) there is a freeware application that can do radio path loss prediction and plot path loss contours on a map. It has an option to output the data as KML files which can be imported into Google Earth, in order to display the path loss contours on Google Earth maps. I guess you could liken it to displaying overlays of GIS-like data in Google Earth. I would like to know if there is a mechanism to facilitate importing KML data files to overlay (preferably in a translucent fasion so that you could see the underlying map) onto Mac OS 10.9 Maps?

    varjak paw wrote:
    They're also known to patent things they never release. So while it indicates that they're investigating such things, a patent application is no guarantee that anything will ever come of it, much less be immanent. And that application was filed in 2012 and is really for something rather different.
    Regards.
    As I stated, "possibly."
    While the commerce side of it has little to do with the KML files, per se, the API for the layer data should allow for any type of overlay.
    Also, the patent was filed Dec 19, 2013. There was a related patent filed in 2012. Not sure what it is about.

  • I've lost the application folder from Favorites. How do I get it back?

    I've somehow lost the application folder which should be located in Finder - left hand side under Favorites. I can do a search and find a specific application located on the hard drive - so I haven't deleted them.  But I want the Application folder with the different applications back in Finder.  I'm kind of hesitant about starting a search in areas I know nothing about.  Can anyone help?

    Hi JanMP,
    The sidebar in a Finder window can be easily modified, so it's possible that the Applications folder may have been accidentally dragged out of it. You should be able to drag it back on from its current location (Macintosh HD > Applications), as outlined in the following article:
    OS X Yosemite: Customize the Finder toolbar and sidebar
    Regards,
    - Brenden

  • HT1386 Hello, I synchronized my iPhones with iTunes, having a new laptop, I had to do this step. But instead of helping it, I lost many applications. All my good applications disappeared. How do I get them back? What I have to do? I bought those app!!!

    Hello, I synchronized my iPhones with iTunes, having a new laptop, I had to do this step. But instead of helping it, I lost many applications. All my good applications disappeared. How do I get them back? What I have to do? I bought those app!!!
    How is this possible? How can the iTunes eat what I bought and what for? To buy the applications again?! Geez!
    Tell me the solution. It must exist one!

    You can redownload you previously purchased apps for free as long as they are still available in the app store.  Be sure you are logged into the Apple ID in iTunes used to purchase them, then follow this guide: http://support.apple.com/kb/HT2519.

  • How do you change the distance units in the new Maps application on Mavericks from KM to miles?

    How do you change the distance units in the new Maps application on Mavericks from KM to miles?

    The scale in Maps follows your regional settings in System Preferences > Language & Region > Region.
    Selecting United States, for example, will use English units (feet and statute miles).
    There may be other methods I'm unaware of.

  • Map application does not show blue route between destinations.

    recently installed io6 but MAP appliacation is not showing Blue line between starting and final destination.? what is wrong and how to correct - plse advice.
    informatively location service and map is ON. Phone has been rebooted.

    Got the same problem. Ios6 maps is the worst maps application for me. What is the point having a map and don't give navigation. APPLE PLEASE GIVE US THE GOOGLE MAPS BACK. why don't they give us the option to choose from these two map application. Ill go for google maps because it got much more POI than apple maps. Please do something for this otherwise I'm gonna loose interest on my 4S

  • IOS 6 Maps application did not install on my IPhone 4

    When I updated my IPhone to IOS 6, I must not have had enough space for Maps to be installed, because it didn't install. I now have freed 2.7 GB, but I don't know how to get the app installed without having to restore the phone. I have the settings category for maps, but not the app. Anyone have a suggestion?

    For anyone who has a similar odd problem, I found a solution.
    First, I reset my home screen (under Settings--General--Reset). The reset brought back Maps, but disarranged my home screen and other app screens.
    Next, I restored to a backup that had the Maps application in it, which kept Maps and restored my app organization (because all the apps were on my phone already, but just were not showing up in the right place).
    Finally, I noted some rollbacks in my calendar (and possibly other application data), but the missing data was quickly restored automatically by syncing with ICloud.
    So all is well now. I'll now have a clean and complete backup to restore from when I get my IPhone 5 next week.

  • Audigy SE lost its applications in Windows 7

    ,Audigy SE lost its applications in Windows 7vHello, folks. I upgraded my OS to Windows 7 Home Premium 64 bits and My Audigy SE lost its applications, such as Graphic Equalizer, Surround Mixer, Speaker Settings and etc. The OS does not recognize these functions when I try to open them. I installed all the drivers available for Windows 7 and I just have a very basic adjust and that?s it. The sound card is also crashing my OS. I had to uninstall it and remove the sound card. And I work with these features, so I had to go back to my old rig with XP.
    Now I wonder? Windows advisor said that my Audigy was ok to run in Windows 7. What is happening and what can I do to have the equalizer and the whole thing working properly? Does this happen with all models? Creative doesn?t have a real Windows 7 compatible sound card? They just run with a basic setup fix?
    I appreciate any response,?

    I just forgot something!
    The Audigy budget line (SE/LS/Value) do have the EAX Console! These card are the only Audigy card with the EAX Console, if my information is correct. Got my info from:
    <a rel="nofollow" target="_blank" href="http://tweakers.net/productreview/27856/creative-audigy-se.html"]http://tweakers.net/productreview/27856/creative-audigy-se.html[/url]
    It is Dutch.
    In that review, the reviewer is saying that he likes the EAX Console with the Audigy SE card, and also mentions that he runs Windows 7 when making the review....So, it looks like these card do have the full EAX Console, if the screenshot is correct.
    What may be the problem is that you downloaded the latest version of the driver. In the README of the latest, there is no reference to the EAX Console application, BUT the previous onse DOES!!
    Just search for the following file on the Creative support site at:
    <a rel="nofollow" target="_blank" href="http://support.creative.com/Downloads/searchdownloads.aspx"]http://support.creative.com/Downloads/searchdownloads.aspx[/url]
    SB24_VTDRV_LB__04_0077.exe
    Also, would you be so kind to let me know if this driver release DOES contain the Eax Console. I know someone that is desperately searching for it on his new Windows 7 machine.

  • How to map Application Roles to Enterprise Roles

    Hello,
    i am having a problem with mapping Application Roles (from ADF Security) to the corresponding Enterprise Roles. I have already seen that it is possible with a tool called Enterprise Manager, but what if i do not have it??
    Can i map the roles in WebLogic Server itself? I have searched for such ability and did not found it. Also have not seen any tutorial on the internet. Someone help me pls.
    The version i am using is 12.1.2.0.0.

    Application roles and permissions defined within WebCenter Portal are stored in its policy store and, consequently, apply to the WebCenter Portal application only.
    Application Roles : Application roles control the level of access a user has to information and services in WebCenter Spaces. Specifically, application roles determine what a user can see and do in their personal space.
    Application Permissions : Again every application role has specific, defined capabilities known as permissions. These permissions allow individuals to perform specific actions in their personal Portal.
    Enterprise roles are different. Enterprise roles are stored within the application's identity store and do not imply any permissions within WebCenter Portal.
    2. How and where do we create these 5 Application Roles in WC 11.1.1.8 version ?
    You can create an application role from WebCenter Portal -> Portal Builder -> Administration tab -> Security -> Roles -> Create Role
    See : Managing Security Across Portals for more info :
    http://docs.oracle.com/cd/E29542_01/webcenter.1111/e27738/wcadm_ps_security.htm#WCADM398
    3. Last, where and how do we MAP these Application Roles TO Enterprise Roles in 11.1.1.8 version ?
    First, You can grant privileges to a specified group (say sales group) of users by granting Enterprise Roles in Enterprise LDAP.
    Next, Create custom application roles (say Contributor, Moderator, UIDesigner, Application Specialist, etc) and assign the appropriate permissions as explained above.
    Then, You can assign one or more Application Roles to a specified group (say sales group) from WebCenter Portal -> Portal Builder -> Administration tab -> Security -> users & Groups
    I hope it helps.

Maybe you are looking for