iPhone5s maps shows "unavailable Direction".

Hi all

Good day..!

I use iPhone5s and while trying to use the Maps app it shows "Not available Directorate a route could not be determined between these different places."

I was part of the INDIA country. My country is not listed under maps: Directions

Can someone help me solve this problem, if possible.

Thank you.

Directions in map is not supported in India.

Tags: iPhone

Similar Questions

  • BlackBerry Blackberry Z10 cards do not map shows just a location

    Shows no maps BlackBerry card just a location on att with 10.0.10.822 os and software 10.0.10.116

    http://forums.CrackBerry.com/BlackBerry-Z10-F254/BlackBerry-maps-not-working-818297/

    "NOTE TO ALL THE PROBLEMS, ALL THE HISTORY, CLEAR CARDS THIS CURED MY PROBLEM."

    http://forums.CrackBerry.com/BlackBerry-Z10-F254/BlackBerry-maps-not-working-818297/

    It works

    Thank you all!

  • Google map - show several markers location

    Hi all

    I'm working with google api and javascript and show multiple markers of location

    I got this code to get started:

    http://jsfiddle.NET/g95q8L76/


    Places My goal is to get my address to my database and replace hardcoded with my variable addresses rather than their...

    below, may seem a little strange, but illustrates my fail...

    -I get an error when I try to replace the text of harcoded with my variable (with the same text)


    -> This causes error undefined geocode = failed: OVER_QUERY_LIMIT

    I think it's because it's a string not not an array / object?

    Q: How can I get this to work and convert tabular return?



    <! doctype html >

    < html >

    < head >

    < meta charset = "UTF-8" >

    the multi Document < title > 1 < /title >

    " < link rel ="stylesheet"href =" https://code.jQuery.com/Mobile/1.4.5/jQuery.mobile.structure-1.4.5.min.CSS " />

    " < script src =" https://code.jQuery.com/jQuery-1.11.1.min.js "> < / script > .

    " < script src =" https://code.jQuery.com/Mobile/1.4.5/jQuery.Mobile-1.4.5.min.js "> < / script > .

    < script type = "text/javascript".

    SRC =

    " https://maps.googleapis.com/maps/API/js?v=3.exp & Sensor = false ">

    < /script >

    < style type = "text/css" >

    HTML, body {#map_canvas}

    height: 500px;

    Width: 500px;

    margin: 0px;

    padding: 0px

    }

    < / style >

    < / head >

    < body >

    < script >

    try to replace this work with my version-var error of fact

    localities of var =]

    ['Location 1 name', 'New York, NY","URL of location 1"].

    ["Name location 2", "Newark, NJ", "URL of location 2"],

    ['Location 3 Name', 'Philadelphia', "URL of the location 3"]

    ];

    my attempt (really come from addresses database - this simple for the moment)

    var sites =

    "[["Name location 1","New York, NY","URL of location 1"], ["Name location 2","Newark, NJ, "2 location URL"] ["Name of the location 3", "Philadelphia, PA", "3 location URL"]];

    localStorage.setItem ("tryit", communities);

    This will cause the error = undefined geocode failed: OVER_QUERY_LIMIT

    I think it's because it's a string not not an array / object?

    Q: How can I get this to work and convert tabular return?

    var sites = localStorage.getItem ("tryit");

    var geocoder;

    var map;

    var limit = new google.maps.LatLngBounds ();

    function initialize() {}

    map = new google.maps.Map)

    document.getElementById ("map_canvas"), {}

    Center: new google.maps.LatLng (37,4419,-122.1419),.

    Center: new google.maps.LatLng (34.1623449,-118.3995877).

    Zoom: 13,

    mapTypeId: google.maps.MapTypeId.ROADMAP

    });

    Geocoder = new google.maps.Geocoder ();

    for (i = 0; i < locations.length; i ++) {}

    geocodeAddress (rentals, i);

    }

    }

    google.maps.event.addDomListener (window, "load", initialize);

    function geocodeAddress (rentals, i) {}

    Title var = rentals [i] [0];

    var address = rentals [i] [1];

    var url = locations [i] [2];

    Geocoder.geocode ({}

    'address': locations [i] [1]

    },

    {function (results, status)

    If (status == google.maps.GeocoderStatus.OK) {}

    var marker = new google.maps.Marker({)

                    icon: ' http://maps.Google.com/mapfiles/Ms/icons/blue.PNG ',

    Card: card location,

    position: results [0].geometry.location,.

    Title: title,.

    Animation: google.maps.Animation.DROP

    address: address,.

    URL: url

    })

    infoWindow (marker, map, title, address, url);

    Bounds.extend (Marker.GetPosition ());

    map.fitBounds (bounds);

    } else {}

    Alert ("geocode from" "+ address +" failed: "+ status);

    }

    });

    }

    function infoWindow (marker, map, title, address, url) {}

    google.maps.event.addListener (marker, 'click', function () {}

    var html = "h3 > < div > < ' + title + ' < / h3 > < p >" + address + "< br > < / div > < a href =" "" + url + "' > display location < /a > < /p > < / div >"

    IW = new google.maps.InfoWindow({)

    content: html,.

    maxWidth: 350

    });

    IW. Open (map, marker);

    });

    }

    function createMarker (results) {}

    var marker = new google.maps.Marker({)

            icon: ' http://maps.Google.com/mapfiles/Ms/icons/blue.PNG ',

    Card: card location,

    position: results [0].geometry.location,.

    Title: title,.

    Animation: google.maps.Animation.DROP

    address: address,.

    URL: url

    })

    Bounds.extend (Marker.GetPosition ());

    map.fitBounds (bounds);

    infoWindow (marker, map, title, address, url);

    return marker;

    }

    < /script >

    < div id = "map_canvas" style = "width: 750px; height: 450px; border: 2px solid #3872ac; "> < / div >

    < / body >

    < / html >

    The question is because your attempt to locations var is actually a string, not a table that is needed to treat a Geolocation. That's why you get 150 thousand alert messages trying to loop through each element of array and process geolocation, but since your var is a string, it is a loop in the length of the string, which is equivalent to 150 thousand characters. The solution is to build a picture of your DB rather than build a chain. Essentially when you query your DB create an empty array, then when you dynamically loop results from your DB to get the data use the array.push method javascript (or the equivalent php if you treat the results of DB in php) to push loop iteration in a new array element. You must also use a console.log instead of an alert message you don't need to close each message alert and essentially freeze your application being debugged.

    OVER_QUERY_LIMIT is because you're trying to send too many requests of geolocation (see 150 thousand above), who is strangled by Google. So he tries not to geotag a location that already has a location recorded in the comic book, you should be storing the result of geolocation in your database. Also I don't really know why you create a var, try storing in localstorage, then immediately retreiveing data storage local to continue the process of your markers. It seems unnecessary to do so, unless you store in the local storage for another reason. For debugging, the issue of marker, it is best to remove any factor the localstorage useless until make you it work with your markers and then refactor your localstorage logic in the script after that a Lite version works.

    best,

    Shocker

  • No map showing "Find my iPhone" (iPhone 6 s more iOS9.3.2)

    Nice day! Help, please!

    No display card in only to find my iPhone

    I can see other phone & distance between phones, but not card.  Only the empty boxes

    iPone 6 s Plus 128 GB iOS 9.3.2

    You see a card if you open Apple's Maps application?

    Depending on the network connection it can take a while to load the map data. You're connected to Wi - Fi?

    Have you ever tried to force reboot the phone by holding down the button sleep and home for 10 seconds, until the Apple logo comes back again?

    You won't lose data, but it can cure a few glitches.

  • My google map stopped working: I have firefox 12.0 and my google map shows just a white square instead of the map.

    My Google map does not load. It displays an empty blue square instead of the map. I disabled all extensions of pluginsand started in safe mode, cleared cache and cookies, but nothing is done. WOT to do!
    It works in Chrome, but also have the same problem with IE9. I don't know when it started, but it was working fine last month.

    Looks like a problem with the width of the containers that have the width set to 100% 0

    These style rules make the images appear for me:

    @-moz-document domain(www.ctiscarborough.org.uk){
    div.view-content > div > div > div,
    div.view-content > div > div > div > div,
    div.view-content > div > div > div > div > div {width:100%}
    }
    
  • Google Maps shows a white screen to 9.1 Safari

    Hello.

    I tried to solve this problem for a customer for a few days now. When I try to open Google Maps in Safari, I get a blank screen or the same screen with text (he said so far the two 'Google Maps' and ' < '). Very occasionally, I will be able to use the site correctly, apparently at random. This problem does not occur on Google Chrome, which is also installed on this computer, but my customer insists on the use of Safari.

    I tried to clear the cache using the "Safari > Preferences... > privacy > remove all data from the Web site" without success. I also tried the system update to the latest version of El Capitan, hoping that it would include an update for Safari, which would solve the problem. Yet once again, this proved unnecessary.

    Can anyone help me identify and solve the problem?

    Safari - no support for third-party modules can cause Safari to suddenly quit, or have performance problems

    Safari does not load a page or webpage elements are missing

    Safari / other browsers - Web site does not

  • Arrows turn on Skype logo, all contacts show unavailable, IM is available, calls are not

    Hello! I use Skype 7.18.66.103 on Windows 7 x 64. From 11 January 2016 he behaves badly - arrows turn on Skype logo, all contacts are shown to be unavailable, but can I do IM with them. Calls are not available. I have reinstalled it several times with profile user, registry cleaning and removal of Skype tool. I tried to change the connection settings. IE11 connection settings. Windows Firewall settings. Unfortunately, nothing helps. Please, help to return my Skype to stabilize the condition. Thanks in advance.

    After discussing with the help of Skype we downgraded in 7.18.0.109 and it works great so far

  • iPhone5 only showing the first 8 digits of the wi - fi address

    Address wi - fi is only showing the first 8 digits, then... How do I access the other 4?  Even when I turn the phone on its side for more space it does not when you view the settings screen.  I try to connect to a secure wireless network and may not without the entire address.  Any help appreciated.

    I go in settings/general/to say and it displays all my WiFi address. Yours does not work?

  • Router R6250 map shows TV but Samsung TV cannot find wireless connection

    It worked up to one week, other devices work - TV searches wireless but can't find anything

    Hi @wfps6296,.

    The TV will be displayed only in the network map if she was able to connect to the network. If you try to scan for wireless network available on the TV and it does not detect anything then I recommend to contact TV manufacturer.

    Kind regards

    Dexter

    The community team

  • Places have stopped working... no map shows upwards in places or when I entered a location.  I have 11 IPhoto

    Places in IPhoto 11 quit working - no map appears in places, or when I entered a location

    What version of iPhoto 11 on which version of the operating system?

  • How to speed up the drive mapped persistent unavailable timeout?

    I have a mapped drive on my laptop that is only accessible when I am connected to my work VPN.

    If I'm not on the VPN or connected to the internet, open "My computer" or by searching for the results equivalent directory in a timeout, two Windows waits to try to access the drive.

    It is extremely annoying, because it takes time interminably long to determine that the drive is not accessible. How can I reduce this time? Is there a registry key, that I can change or some other parameter?

    Thank you

    Richard

    Hi Richard,

    Your question of Windows is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the IT audience Pro on TechNet, the machine is connected to the virtual private network (VPN).

    Please ask your question in the Forums Pro Windows XP IT.

  • Photo Viewer shows photos directly in spite of, including files with Irfanview

    I associate the pictures files including jpg, with Irfanview, but when I connect my camera to my computer and open a file directly, Windows Photo Viewer displays the image instead. Despite the fact the Irfanview icon will appear in the directory for all jpg images, these files are taken hostage by the Windows Photo Viewer. My default viewer works with files on my computer of the disks. This only happens when I connect my camera. How can I stop this program quite useless and buggy of misappropriation of my file associations?

    I also had Photo Viewer 'diversion' Irfanview in Windows 8. No matter what I did, JPEG and TIFF files, but in the 'open with' associated with IrfanView, kept opening of photo viewer.

    After trying everything else, found a safe and definitive solution.

    1. start Regedit

    2 go to the ROOT of HKEY_CLASSES

    3. go to the file association that does not correctly (for example, .jpg or .tif)

    4. just rename while it becames disabled: for example to rename «.jpg' as «.jpx»

    Return to your Windows Explorer or any other file manager, make a right click on a JPG or TIF file, open with and associate with IrfanView (or any other program). THIS TIME Windows will automatically register a new .jpg or .tif extension and IrfanView open files when double-clicked.

  • Google Maps showing is not the real device...

    Hi all

    I use third party API for google maps on BlackBerry. I downloaded the library card from the link below.

    http://www.nutiteq.com/MGMaps-lib-SDK-downloads

    The app works very well and the cards are displayed in the Simulator, but when it is deployed on

    real aircraft, the map is displayed in red. I use Wi-Fi for internet and I use

    BlackBerry 8520 device and BB Java Plug in for Eclipse.

    Please help me, very important in my project.

    Kind regards

    Saran.

    Hi Simon,.

    Thanks for your reply, I solved my problem and its working fine now.

    Kind regards

    Saran.

  • BlackBerry App maps showing just white screen

    This is a new Q5 and I'm very well connected to the internet. From maps app but all I get is a white screen with a blue dot. Is there something that I am missing.

    Namely that there are no cards BB for the India

  • Diagram of network pro Windows 7 (map) shows the presence of the network connection missing

    Windows 7 pro network diagram shows the presence of the away network, connect to the local network, but in the adapters (plug net) adapter is disabled.

    Hi jogladik,

    Thanks for posting in the Microsoft community.

    The question you posted would be better suited in the TechNet Forums. I would recommend posting your query in the TechNet Forums.

    http://social.technet.Microsoft.com/forums/en-us/categories

Maybe you are looking for

  • Satellite M40 - format and install NO CD from recovery

    HelloI need to format the hard drive and install XP Pro SP2 on my Satellite M40 - 239 (pre installed XP HE). How do we install the Express Media Player? Do I need to do before installing with my own XP disks? The Express Media recovery disk reformat

  • Equium L10-273: speaker crackling

    Helloone of the speakers on my laptop doesn't work very well anymore. When its at full volume, it makes a horrible crackling noise and distorts everything. Im having to use the other speaker.It can be replaced? Thank you. Jennifer

  • IPad2 and MS Outlook.

    I use MS Outlook 2010 to access my hotmail account. Why did my Ipad2 hangs when accessing my email?

  • Windows 7 does not recognize my drive Blu - Ray LG Electronics WH10LS30

    For over 3 months now, my computer decided that it didn't recognize my drive then under Windows. Seen in the Bios very well. I can not even start it. But once I am on Windows, it does not yet appear and it says that it cannot install the driver corre

  • Fill with the previous 'not null' value ' Null' known values

    Hi allI have the following requirement to fill in missing values (null values) with the "Not null" values known previously available.Source of the example:Emp_Id Start_Dt LOC Comm GradeA10101/01/2013NJ4000BA10115/03/2013CA4800A10115/05/20133500CA1012