Map defaults to kilometers

The map application that comes with iPhones has somehow developed a glitch. Sometime (after an update) the map continually displays distances in kilometers no matter how many times I change it to miles. It just reverts back to kilometers!
This phone (iPhone 4) in question is now my son's but I'm currently using it because I broke my iPhone 5c display. So I don't have any idea which update caused this glitch.
Does anyone have a solution or has anyone else experienced this anomaly?

I have had similar issues on a few sites that usually comes from BC not having the zip codes in their database.  Do you see a pin point in the middle of the ocean? If so then that particular zip code for that web app item isn't in the database, in which case contact support and have them add the zip code.
If you don't see a pin point, I'm guessing maybe your default search radius might be way to large and it's trying to fit everything onto the screen within the search radius?
Try setting the search radius to various levels and see what results you get and either way maybe contact Support with a list of specific zip codes being used to make sure they are in their database.

Similar Messages

  • How to make apple maps default on my mac?

    I want apple maps to default on my map, e.g.., when I need to send meeting location address in calendar.

    Hi ajjacoby14,
    To make iTunes the default application to use for playing music, use the steps found in this article -
    iTunes for Windows: How to make iTunes the default application for music and audio files
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • Map default values in Header based on multiple values in the line item

    Hi
    I have a scenario in which the Header field of an IDOC should be populated with some default values based on some mixed mvt types in the line items.
    eg:
    Header -
    > Delivery type -
    > needs to be mapped to A (for X of line item 1)or B (for Y of line item 2) or C (for Z of line item 3 )
    based on line items field
    line item1---> mvt type---> X
    line item 2-->mvt type----->Y
    line item 3 -
    > mvt type -
    > Z
    mvt types doesnt necessarily have to come in that order and even the same mvt type can repeat in multiple line items.
    Can we achieve this logic in XI ?

    I think if you include removeContext, Sort, SplitByValue (on Value Change), CollapseContext to mvt type in all line items and then use ifelse condition to achieve your result.
    I will give an example of line Item1
    mvt type --->RemoveContext ->Sort>SplitByValue(on value change) --> CollapseContext
    Use the above mapping to IF function and check if it is having X, Y or Z then map the appropriate value to target field.
    Do the same for rest of the line items.

  • Mapping default printer based on AD attribute

    Hi all ! 
    Sorry for my english, i'll try to be clear... :)
    I need to run a VBscript on TSE 2008 R2 servers to set computer's
    default printer (not user). For this, I need to use the ClientName var. 
    The default printer name is written in the computer's description attribute in Active Directory. 
    I'm a beginner in VBscripting. I have parts of scripts working, but not everything.
    Here is my script (my comments are written with ''''''''''''''''''''''''''''''''''''''''''''): 
    'find clientname
    strComputer = "."
    Const ForAppending = 8
    Set oNetwork = wscript.CreateObject("wscript.network") 'Create network object
    Set objShell = Wscript.CreateObject("Wscript.Shell")
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
    Set colAdapters = objWMIService.ExecQuery ("Select * from Win32_NetworkAdapterConfiguration Where IPEnabled = True")
    strUserName  = oNetwork.userName
    strComputerName  = oNetwork.computerName
    strClientName = objShell.ExpandEnvironmentStrings("%clientname%")
    ExecuteSearch = SearchDistinguishedName(strClientName)
    Public Function SearchDistinguishedName(ByVal vSAN)
    Const ADS_SCOPE_SUBTREE = 2
        Dim oRootDSE, oConnection, oCommand, oRecordSet
        Set oRootDSE = GetObject("LDAP://rootDSE")
        Set oConnection = CreateObject("ADODB.Connection")
        oConnection.Open "Provider=ADsDSOObject;"
        Set objCommand = CreateObject("ADODB.Command")
        objCommand.ActiveConnection = oConnection
    ldstring = "'LDAP://" & oRootDSE.get("defaultNamingContext") & "'" 
    objCommand.CommandText = "Select Name, distinguishedName from "& ldstring & " where objectClass='computer'"  
    objCommand.Properties("Page Size") = 1000
    objCommand.Properties("Timeout") = 30 
    objCommand.Properties("Searchscope") = ADS_SCOPE_SUBTREE 
    objCommand.Properties("Cache Results") = False 
    Set objRecordSet = objCommand.Execute
    objRecordSet.MoveFirst
    Do Until objRecordSet.EOF
    If lcase(objRecordSet.Fields("Name").Value) = lcase(vSan) Then
        Wscript.Echo "Client Name: " & objRecordSet.Fields("Name").Value & vbCrLf _ 
        & "Location: " & objRecordSet.Fields("distinguishedName").Value
        'Wscript.Quit
    End If
        objRecordSet.MoveNext
    Loop
    End Function
    ' find canonical name
    On Error Resume Next
    ADSRoot = "DC=domain,DC=fr"
    Const ADS_SCOPE_SUBTREE = 2
    Set objConnection2 = CreateObject("ADODB.Connection")
    Set objCommand2 = CreateObject("ADODB.Command")
    objConnection2.Provider = "ADsDSOObject"
    objConnection2.Open "Active Directory Provider"
    Set objCommand2.ActiveConnection = objConnection2
    objCommand2.Properties("Page Size") = 1000
    objCommand2.Properties("Searchscope") = ADS_SCOPE_SUBTREE
    objCommand2.CommandText = _
    "SELECT * FROM 'LDAP://" & ADSRoot & "' WHERE objectCategory='user' OR objectCategory='computer'"
    ''''''''''''''''''''''''''''''''''''Here, I use a input box to enter the clientname, cause I don't know how to re-use the clientname found in the lasts vars.
    srchTrm = LCase(InputBox("Please enter your search term.", "Active Directory Search"))
    WScript.Echo srchTrm
    i = 0
    If Len(srchTrm) < 4 or Instr(srchTrm, "=") Then
    WScript.Echo "Please enter a search term in excess of 3 characters. Don't use ""="""
    WScript.Quit
    End If
    Set objRecordSet2 = objCommand2.Execute
    objRecordSet2.MoveFirst
    Do Until objRecordSet2.EOF
    strADPath = LCase(objRecordSet2.Fields("adsPath").Value)
    If InStr(strADPath, srchTrm) Then
    Set objUser = GetObject(objRecordSet2.Fields("adsPath").Value)
    Select Case objUser.Class
    Case "user"
    strMsg = "Type: Person" & VbCrLf
    strMsg = strMsg & "Name: " & objUser.DisplayName & VbCrLf
    strMsg = strMsg & "Email: " & objUser.mail & VbCrLf
    strMsg = strMsg & "Telephone: " & objUser.telephoneNumber & VbCrLf
    strMsg = strMsg & "Department: " & objUser.department & VbCrLf
    strMsg = strMsg & "Title: " & objUser.title & VbCrLf
    Case "computer"
    strMsg = "Type: Computer" & VbCrLf
    strMsg = strMsg & "Name: " & objUser.Get("name") & VbCrLf
    strMsg = strMsg & "OS: " & objUser.operatingSystem & VbCrLf
    Case Else
    strMsg = "Unidentified" & VbCrLf
    End Select
    'strMsg = strMsg & "LDAP: " & objUser.adsPath & VbCrLf
    objUser.GetInfoEx Array("canonicalName"), 0
    strMsg = strMsg & "AD Path: " & objUser.canonicalName & VbCrLf
    objUser.GetInfoEx Array("description"), 0
    strMsg = strMsg & "Imprimante: " & objUser.description
    WScript.Echo strMsg & VbCrLf
    ''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''Here I want to use the "objuser.description" to set default printer
    Dim WshNetwork
    Set WshNetwork = CreateObject("WScript.Network")
    WshNetwork.SetDefaultPrinter "\\SRV-PRINT.domain.fr\" & objUser.description
    i = i + 1
    End If
    objRecordSet2.MoveNext
    Loop
    If Not i > 0 Then
    WScript.Echo "No results found."
    End If
    I think there's a most simple way to do this, but for the moment, I Don't know how to do. 
    Any help would be grateful. 

    Hello. 
    We need to do this because each computer in the office as a network printer (or nearly each computer). I can't do a Group Policy for each computer in my domain. We cannot work with users accounts, only computers . 
    My problem is that if the user1 is connected on Comp1, he must have the printer near computer 1 as default printer.
    If user1 is connected on computer 2, at the other side of the office, he must have the printer near computer 2. So I cannot imagine a group policy to do this :). 
    We had the idea to use the descprition attribute in Active Directory to indicate the default printer to map.
    We must now make a script to get clientname on the TSE session, look for the computer account in Active Directory, read its description's attibute and map the default printer. 
    For example, my computer is COMP01. I use a TSE environment on SRVTSE01. 
    The script need to determine which computer (COMP01) is connected to the SRVTSE01 server (clientname var), search Active Directory computer account of COMP01, read the account's description attribute (for example PRINT01) and set \\SRV-PRINT\PRINT01 as the
    default printer on COMP01.
    Hope it's better with this example... 

  • Script to map default printer based on user input

    Hello everyone,
    Complete scripting noob here but I managed to cludge together a vb script (from various sources) that will remove all current printers and then add printers based on group membership.  It can also add a default printer and if they have a local printer
    make that default.  All that works just fine, my problem is that we have very large floors with many printer clusters.  Group membership for printers is by floor and I do not have the option to further define this (Also GPO is not an option as getting
    our network group to deploy anything takes years so we need to go this route).
    What I would need is something graphical (like an HTA) that when run it prompts the user to input which floor they are on, then it asks them which of the print clusters (on the floor they specified) is closest to them.  It would then install all the
    printers on the floor and make the default printer one from the print cluster they indicated (unless they have a local printer).  I hope this make sense. 
    I think I have most of the pieces laid out but I don't know how to get the user prompts/GUI and then perform the correct mappings.  Thank you in advanced!

    I agree with Bill. Using the correct method will be best.  You network people will be more than happy to tell you what is set up and how to use it.  You just need to ask your manager to get you in contact with them for a little parley.
    If you are really insisting on a script then look in the repository.  There are dozens of scripts that you can use and modify.
    You should try to see this as a challenge to bring modern technology to your company.  Approaching this kind of thing as a global IT challenge will usually get the attention of IT and they will usually take it seriously.  You will likely learn
    many things about the IT resources your company has.
    ¯\_(ツ)_/¯
    I'm sorry if I wasn't clear but I'm not asking anyone to write the script for me, as I said I have most of the parts working.  My issue is getting the user input and getting the script to take the action I need it to (I can map the printers based on
    AD group membership I really just need to prompt the user to select which one they want as default).  My thoughts were to wrap a GUI around it but it's not needed.
    I agree that GPO is the way to go but in State Government it takes an act of Congress to get anything done in the mean time I'm trying to get things done with the means available to me.

  • Mapping default values

    I've following requirement
    1) output XML consist a section of address data which are mandatory (mandatory data are pointed below with * *);
              *<ShipToParty>*
                   *<Party>*
                        <Identification>
                             *<InternalID></InternalID>*
                             <ExternalID></ExternalID>
                        </Identification>
                        *<NameAddress>*
                             *<Name></Name>*
                             *<Address1></Address1>*
                             <Address2/>
                             *<PostalCode></PostalCode>*
                             *<City>SANDEFJORD</City>*
                             <Country></Country>
                        </NameAddress>
                        <Contact>
                             <Identification>
                                  *<InternalID></InternalID>*
                             </Identification>
                             *<ContactName></ContactName>*
                             *<EMail></EMail>*
                        </Contact>
                   </Party>
              </ShipToParty>
    2) I should map from INVOICE02 IDOC partner address data for WE if they exists;
    3) In case they doesn't exists I need to map address data from special Z segment;
    4) If Z-segment doesn't exist I need to put there some default values (to simplify case, let it be "1");
    The point is, that I can would like to find out solution which
    A) will use createIf for <ShipToParty> when WE found with else - create covering 2) and 3)
    B) I want to avoid checking against PARVW = WE for each node under <ShipToParty>
    Any ideas how to create such mapping?

    Hi Tomasz
    This seems to be your requirement.Correct me if i am wrong
    IF PARVW = WE then your creating <ShipToParty>
    (if this fails then)
    else if Zsegment exists then your creating <ShipToParty>
    else you have to pass some default value (constant) which you have mentioned in your point 4)
    What default constant to pass? That can be answered by a functional.
    You have to create this node as its a mandatory node. I hope this helps.
    Thanks
    S

  • Google Map default Zoom setting

    Hi.. is there a way to change the default setting in the Google map so it appears at suburb level rather than as it currently does (almost state level). Thanks DC

    Come here good people, gather around, fresh community solution coming up!
    Eat it while it's hot!
    <script>
    CMS.Maps.map.setZoom(1);
    </script>
    Add it after the webappsmap module tag.
    Adjust zoom level from 0-10 by changing the number.

  • Mapping Default Profiles of PT groups and folders for automating subportal experience

    I need to automate the subportal experience by adding the users to the folders. These folders will correspond to the Plumtree groups that we create.
    We are already planning on automating the maintainence of these PT groups by authentication source by applying custom business logic in Java program. I believe I can do the folder maintainence in the same program as well. However to make iot more effeicient and maintainable, I have the following questions.
    Is there a way to map the PT groups to the folders by using Default profiles(by auth source?)? I think this would help me avoid hard coding which users belonging to certain groups go in which folders. Is there another better approach? Any help would be appreciated.
    Thanks.
    Vanita
    Staples

    Thanks a lot for you reply Mark. I tried to add the Plumtree only groups to the Auth source and I am not allowed. It seems like this works only for the Auth Sorce(NTLM, AD etc.) groups not Plumtree only groups. Is there a way to do this kind of mapping for Plumtree only groups (to avoid doing this programmatically)?
    Regards
    Vanita
    ------- Mark Dimas wrote on 1/28/05 10:41 AM -------
    You can have users placed directly in folders based off of group membership by using the Partial Users Synchronization mode.
    On the auth source select Partial Users Synchronization and run a synch job. This will import all the groups. Then go back to the auth source, on the first page under Default Profiles add the groups, and for each group you can select the destination folder for members of that group. Then, on the Fully Sychronized Groups page you can add all the groups you want to import members from. Run the job again and all the users that are members of the selected groups will be imported and placed in the correct folder.

  • Display webapp items on a map, defaults to zoomed in on indian ocean?

    Hi, I want to setup a web app to display locations for a store, but after adding a few web app items, all in the middle of North america, when i load the webapps map, the default view is zoomed in on the indian ocean...
    Shouldn;tit zoom into the closest web app items address?  I have to manually zooom all the way out, then back into a marker which is pinned correctly....

    I have had similar issues on a few sites that usually comes from BC not having the zip codes in their database.  Do you see a pin point in the middle of the ocean? If so then that particular zip code for that web app item isn't in the database, in which case contact support and have them add the zip code.
    If you don't see a pin point, I'm guessing maybe your default search radius might be way to large and it's trying to fit everything onto the screen within the search radius?
    Try setting the search radius to various levels and see what results you get and either way maybe contact Support with a list of specific zip codes being used to make sure they are in their database.

  • Changing Map Default App on Lumia 920

    Just got a new lumia 920, love the Windows Phone 8, not liking so much that Nokia apps have taken over default Windows Phone apps like Maps.  How do I get default Maps app back.  I know that underlying system components are still there because Local Scout uses Bing Maps and not Nokia Maps app.  
    Thanks
    john

    hmm. i actually prefer the nokia products.
    you could try to uninstall the nokia maps.
    other than that, i do not see anywhere in the device to change that.

  • Mapping Default Printers

    I am having problems mapping printers via group policy..
    Its all setup correctly in Group Policy Preferences. However the default print only sets when the user has already logged in once.
    Before this we get the error:
    The user 'XXXX' preference item in the 'XXXX {0D45B364-A217-4489-9489-38B5111DBA76}' Group Policy object did not apply because it failed with error code '0x80070709 The printer name is invalid.' This error was suppressed.
    Because of our type of environment we can't have users having to logon twice or having to manually map their default printers.

    Hi John,
    Sorry for misunderstanding your concern.
    Did you mean that you had to logon twice to apply this GPO? If so, this may be caused by that this GPO is applied during background process. Please try the following steps:
    Create a new GPO or edit an existing one (it will need to be linked to either the Domain, Site or OU where your targeted clients can be affected).
    Within the GPMC Editor, expand the Computer Configuration Node and go to Policies/Administrative Templates/System/Logon
    Within the Logon settings, choose Always wait for the network at computer startup and logon.
    Enable this setting to cause your clients to process GPOs synchronously at startup/logon.
    What's more, will this GPO apply sucessfully if you do not confgure this printer as the default one?
    Regards,
    Lany Zhang

  • Mapping Item value Default and incrementing it

    Hi all
    I am new to sap XI, i am doing  a file to idoc scenario,
    how to map default value( for eg 0001) to an item field and keep on incrementing it by the occurence of no items in my file structure?
    Full points are guaranteed .
    Regards
    Bhasker.

    Hi,
    Any default value can be mapped by using the constants in the graphical mapping.
    Is your requirement is to count the no of occurance of a field i.e. item and map it to the target field..?
    If so use this mapping..
    items(Source) -
    remove contexts(node function) -
    count (Statistic function) -
    item field(target)
    Thanks
    SaNv...
    Edited by: Sãnthosh Kûmãr  V on Jul 30, 2008 10:25 AM

  • Apple Maps Navigation Doesn't Work on 3G on iPhone 5

    Has anyone else noticed that on iPhone 5, Apple Maps defaults to non-voice guided navigation when LTE is purposely turned off?
    Since navigation is supposed to work on the iPhone 4S, I assumed that while on 3G the navigation should work. But it doesn't.
    I have the switch set to off to preserve battery life, plus have really bad LTE coverage here anyway.

    It will not find another phone.  This has never been a feature of iphone/ipod/ipad.
    Bluetooth is supported for stereo headsets/speakers, handsfree telephone devices, some keyboards, some apps from the app store, and internet tethering if provided by the carrier.
    Other than this it will not connect to a phone or computer.

  • Error in jbosscmp-jdbc.xml : datasource-mapping Pointbase not found

    Hi I'm having problems deploying my EJBs using the Pointbase Database.
    This is what I'm working with:
    standardjbosscmp-jdbc.xml:
    <jbosscmp-jdbc>
       <defaults>
          <datasource>java:/PointbaseDS</datasource>
          <datasource-mapping>Pointbase</datasource-mapping>pointbase-ds.xml:
    <datasources>
         <local-tx-datasource>
              <jndi-name>PointbaseDS</jndi-name>
    <connection-url>jdbc:pointbase:server://localhost:19092/sample</connection-url>
              <driver-class>com.pointbase.jdbc.jdbcUniversalDriver</driver-class>
              <user-name>jboss</user-name>
              <password>password</password>
         </local-tx-datasource>
    </datasources>jbosscmp-jdbc.xml:
    <jbosscmp-jdbc>
         <defaults>
              <datasource>java:/PointbaseDS</datasource>
              <datasource-mapping>Pointbase</datasource-mapping>
         </defaults>I keep getting the error message:
    org.jboss.deployment.DeploymentException: Error in jbosscmp-jdbc.xml : datasource-mapping Pointbase not found
    Any ideas why?
    Thanks.

    By the way I'm using JBoss server.

  • Mapping execution failed

    Hi All,
    One of my customer is facing the following issue:
    Customer has a mapping that loads tha data from an external table to two staging tables.
    Deployment of the mapping went fine.
    When trying to run the mapping mapping fails with status 'Error'
    But there are no errors displayed in Job details window ,runtime log file , Repository
    Audit Browser or even in database trace.
    Please suggest to trace this issue.
    Thank you,
    Regards,
    Padmanabh.

    Check mapping Default audit level. it must be none.
    Change it to Error_details (Right Click mapping-> Configure -> Default_audit level )
    Cheers
    Nawneet

Maybe you are looking for