Geotagging (GPS) services with iPad WiFi?

So my question is: if I enable the Personal Hotspot (tethering) on my iPhone and I connect an iPad WiFi to the iPhone, I can start surfing with the iPad, and this is nice. But which are the disadvantages compared to an iPad 3G?
- during surfing with the iPad, I also use the iPhone's battery
- I also use the amount of downloadable MB/GB available for my iPhone
Other disadvantages? Can I ask the iPad to show my position in Maps?

rbrylawski wrote:
If you are moving, it will be virtually impossible to use a GPS service and maintain access to wifi on iPad alone.  If you have a wifi only iPad, there are ways to add a consistent wifi hotspot to your iPad.  One way is tether an iPhone to your iPad (you need a tethering plan from your carrier, if offered and at additional cost), or you could purchase a Mifi (a portable service which you can take with you anywhere like an iPhone to power your iPad's data connection.  Mifi's are sold by most major carriers and come with monthly data plans.
WiFi is not required for navigation.

Similar Messages

  • Add or edit geotag (GPS) data with Photos App

    Geotag is an EXIF metadata associated with a single photo that give the geographical location of where the photo has been taken. At this time, the geotag EXIF is fully supported by Photos (we see the location on a map) and we have the option to strip the information when we share the photo. To work with Photos, the EXIF geotagging info must be embedded with the photo when it is transferred from the camera to the Photos App.
    However, many cameras don't have a GPS that sets the photo location. The geotag must be added later manually. Some photo editing software strip EXIF data (or just Geotag data) and sometimes these photo editor apps set geotag of their own (the location where the picture is edited, not the original location where the picture comes from).
    It would be nice to add a geotag addition/edition feature to Photos.app.

    Now that iCloud drive keeps the photo library synced between all devices it would be nice if there was a way to edit tags, geotags, descriptions, etc.  on iCloud.com as well as IOS.
    I tested to add GPS using AppleScript, but most of the EXIF field are readonly and we cannot change the GPS tags with Apple Script in iPhoto. It was possible to do that in Aperture, but does not work in Photos.
    Right now, it is best to add GPS before importing to Photos.

  • Are there any known issues with iPad wifi connections to Comcast routers

    I consistently get the "unable to join network " error when trying to connect to my Comcast all in one router.  My other laptops and smartphones connect without issue.  I'm using 32GB iPad2 with wi-fi + 3G.  Coincidentally I switched to comast at the same time I did the 5.1.1 update.  Prior to the switch i had a fios router and 5.0 OS version. I've tried resetting the network info on the iPad and I've reset the router as well.  I can see the network just cant connect to it. 

    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router. Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130?tstart=60
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Web services with ipad

    Hi I'm new to iphone development, I'm working in at view based app for ipad in which I need to get information from a web service the problem is that I don't know how to consume the Web Service from the app ....
    Plzz help me with it
    Thanks in advance
    vinit sharma

    Hi,
    Thanks a lot for the reply
    now i am getting the response from web service   but still i have one problem that i am not able to pass parameter to the web service  . my service is taking one string arguments like name (vineet) and the output is "the web service has consumed successfully by vineet".  but here it is showing in the  log "the web service has consumed successfully by null "
    please check the following code .
    #import "MywsdlAppDelegate.h"
    #import "MyserviceWsdlService.h"
    @implementation MywsdlAppDelegate
    @synthesize window;
    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {   
        // Override point for customization after application launch
         MyserviceWsdlBinding *bwsdl=[[MyserviceWsdlService     MyserviceWsdlBinding]retain];
         bwsdl.logXMLInOut=YES;
         MyserviceWsdlService_wsdlOperation      *WsdlRequest=[[MyserviceWsdlService_wsdlOperation new]autorelease];
         WsdlRequest.name=@"vineet";
         [bwsdl wsdlOperationAsyncUsingParameters:WsdlRequest delegate:self];     
        [window makeKeyAndVisible];
         return YES;
    - (void) operation:(MyserviceWsdlBindingOperation *)operation completedWithResponse:(MyserviceWsdlBindingResponse *)response
         NSArray *responseBodyparts = response.bodyParts;
         for(id bodyPart in responseBodyparts)
         if([bodyPart isKindOfClass:[NSError class]]) {
              NSLog(@"this is an error :%@", ((SOAPFault *)bodyPart).simpleFaultString);
              return;
         // Handle faults
         if([bodyPart isKindOfClass:[SOAPFault class]]) {
              NSLog(@"this is a fault :%@",((SOAPFault *)bodyPart).simpleFaultString);
              return;
         // Do something with the NSString* result
         if ([bodyPart isKindOfClass: [MyserviceWsdlService_wsdlOperationResponse class]]) {
              MyserviceWsdlService_wsdlOperationResponse     body =(MyserviceWsdlService_wsdlOperationResponse)bodyPart;
              NSLog(@"the return is  :%@",body.return_);          
    - (void)dealloc {
        [window release];
        [super dealloc];
    Output in the log file is given below
    [Session started at 2011-02-28 23:31:45 -0800.]
    2011-02-28 23:32:03.535 Mywsdl[1454:207] OutputHeaders:
        "Content-Length" = 498;
        "Content-Type" = "text/xml; charset=utf-8";
        Host = "192.168.1.68";
        Soapaction = "";
        "User-Agent" = wsdl2objc;
    2011-02-28 23:32:03.548 Mywsdl[1454:207] OutputBody:
    <?xml version="1.0"?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:MyserviceWsdlService="http://model/" xsl:version="1.0">
      <soap:Body>
        <MyserviceWsdlService:wsdlOperation>
          <MyserviceWsdlService:name>vineet</MyserviceWsdlService:name>
        </MyserviceWsdlService:wsdlOperation>
      </soap:Body>
    </soap:Envelope>
    2011-02-28 23:32:06.666 Mywsdl[1454:207] ResponseStatus: 200
    2011-02-28 23:32:06.671 Mywsdl[1454:207] ResponseHeaders:
        "Content-Encoding" = gzip;
        "Content-Type" = "text/xml; charset=utf-8";
        Date = "Tue, 01 Mar 2011 13:34:26 GMT";
        Server = "SAP NetWeaver Application Server 7.20 / AS Java 7.20";
        "Set-Cookie" = "saplb_*=(J2EE2304020)2304050; Version=1; Path=/";
        "Transfer-Encoding" = Identity;
    2011-02-28 23:32:06.674 Mywsdl[1454:207] ResponseBody:
    <?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><SOAP-ENV:Body><ns2:wsdlOperationResponse xmlns:ns2='http://model/'><return>Web service has successfully consumed by null</return></ns2:wsdlOperationResponse></SOAP-ENV:Body></SOAP-ENV:Envelope>
    2011-02-28 23:32:06.677 Mywsdl[1454:207] the return is  :Web service has successfully consumed by null
    thanks and regards
    vineet sharma

  • Connecting to internet with iPad wifi

    I have an ipad that my high school gave to me. For some reason I can't connect to the wifi in my house. My ipad can pick up the signal that the wifi that is giving off, but when I enter the wifi password. It keeps saying that I am unable to connect to the wifi. I know the password is correct and that I'm not mixing up my wifi with my neighbors wifi. Does anyone think they can help me with my problem or do I need to go to able and get the inside of my ipad looked at? The ipad is a 3 generation with the latest software for it.

    It may be helpful to change the password of your wifi network to be absolutely sure you are entering it correctly.  Also, make sure the network name is a unique name (Linksys default is NOT a unique name). 

  • There is definately something wrong with iPads' wifi...hear us please Apple

    Altough I am 30cm away from my wireless modem, iPad keeps dropping of from the connection. And when I'm away from the modem, say around 2 rooms away, iPads' signal strength dramatically drops....
    Apple please find a solution to this wifi problem, which seems to effect everbody, I do not have to try this and that, fix myself...I paid for the device that is supposed to operate as promised....why bother with fixes found around the net while you can supply us with the proper one..

    What kind of an answer is that...
    For a user with a fault that cannot be resolved, it is the most reasonable answer possible. Not only because it can help the user resolve the problem to her or his satisfaction, but also because it helps Apple discover the nature and extent of common problems, such as the wifi issues being discussed here.
    If enough people have an issue I am sure Apple will resolve it.
    As long as Apple even know about the problems that is. Engineering teams may monitor these discussions, or have their attention drawn to specific topics, but even so, it is nothing like as helpful as having faulty devices to examine and test.
    If Apple does not whatch these forums, why host them ...?
    Despite your entirely rational thoughts on the subject, these are (almost) entirely user-to-user discussions, provided by Apple to help resolve issues users have with Apple hardware and software. Hosting these, and letting users loose to help each other is infinitely less expensive than providing an equivalent number of support staff on the other end of phone lines or in stores worldwide.
    And as users, when faced by what seems to be a significant level of fault reports on one single issue, it does in fact make the greatest sense to recommend some users return their apparently faulty devices.

  • What is The Best external gps receiver for iPad wifi

    I am looking to use my iPad as flight navigator

    Hi All
    there are plenty, search for WAAS GPS, ARHS,ADS-B.
    http://www.sagetechcorp.com/general-aviation-solutions/clarity-ads-b.cfm
    http://www.aviation.levil.com/ilevil-sw-1.html
    Joe

  • Does gps work on ipad 3 without cell service or wifi connection?

    does gps work on ipad 3 without cell service or wifi connection?

    Yes it works. Initial position acquisition time may be longer, but works fine. Some applications download maps from the network. Unless your application has built in maps or the maps are cached, you won't be able to access maps or navigation feature. But GPS will work.

  • Location services on iPad 3rd gen with wifi not working.

    We use iZettle for business payment solution at our store, and we switch between iPhone 5s and iPad 3rd generation... The phone is working, but the iPad that is stationary at our shop ALWAYS fails when we resync the bank terminal. Most likely because the Location services is showing a place far away from where we are...
    We get the ipad to work after hours spent to reset Network settings and a lot of things... But we cannot do business this way... I am sad to say, be we are thinking of going to Samsung Galaxy or something... Because this is ridiculous...
    I think Apple should fix this in some way...

    Location services cause problem because of the wifi network: iPad relies on databases of location of wifi router, and the router you have was probably used somewhere "far away" before. You have 2 options:
    change router and network name
    or sell your iPad 3rd Generation wifi model and get a (second hand) iPad erg gen cellular model. it should cost about 50$ more than what you sold the iPad at. you won't need an access plan, the cellular model has a GPS chip that will solve your problems. (unless the building you're in is full of concrete, preventing GPS communication: check if phones in the building can access GPS before "changing" iPads.

  • I have an iPhone with an unlimited data plan. Is there a way to go online with a wifi only iPad using my phone for access?

    I have an iPhone with an unlimited data plan. Is there a way to go online with a wifi only iPad using my phone for access?

    If your iPhone cell carrier allows you to use Tethering, you can turn your iPhone into a wifi hotspot, then your iPad Air can connect to that for internet access.  Not all cell carriers allow tethering without you signing up for additional fees/services.  For example, AT&amp;T in the US still has grandfathered "unlimited" data plans, but they do not allow tethering for those plans.  With AT&amp;T you need to switch to a Mobile Share plan (or a tiered plan if still available) to use tethering (legally).

  • I am having problems with the wifi connection on my ipad 4th generation only 3 weeks old. Have left it back to the shop i bought it in and they said they have to send it away now i am left with no ipad. What after sales support do you give really?

    Does anyone else have problems with the wifi connection on their 4th generation  Mine keeps going off line and its only 3 weeks old.I had the ipad mini and this problem never existed. I brought it back to the shop where i bought it Expert Laois last week and they said they couldnt find a problem but had to take it back today as it keeps disconneting from wifi still, anyway they are sending it back for repair and it am left with no ipad.  After spending in excess of 700e i feel that this is really bad after sales service.  I bought something that i want to use now and cant so what  a waste of money it is .

    Thankyou, but the shop said that they spoken to apple and that they have now changed their policy and that they do not give a replacement.  So are you telling me that their information is false.  Also what should they have done.  This problem has existed since i bought it.?????  What should i do?????

  • I currently have a D-Link DI-604 broadband router with windows computers.  How can I add wifi to the network for use with ipad?  Can I use AirPort Express?

    I currently have a D-Link DI-604 broadband router with windows computers.  How can I add wifi to the network for use with ipad?  Can I use AirPort Express?

    Yes. You can directly connect an 802.11n AirPort Express Base Station (AXn) using an Ethernet cable. The AXn would then just need to be configured as a bridge to allow the D-Link to continue to provide both NAT & DHCP services for all network clients connected to either router.
    In this configuration, the AXn would broadcast a wireless network for your wireless network clients to connect to.

  • Good night. I'm going to the U.S. and want to buy an air ipad wifi   4G . They are unlocked ? I use in Brazil with local carriers here ?

    Good night.
    I'm going to the U.S. and want to buy an air ipad wifi + 4G. I need to know if they are unlocked because the site did not see this option. A friend said that looking at the settings for frequency imagine themselves to be unlocked, but I need to be sure. I use the air ipad wifi + 4G in Brazil with local carriers here? Thank you.

    They may be purchased unlocked at full price. But whether you can use them in Brazil depends on whether you have GSM service there.
    Note that if you buy in the US then any warranty work will require you to bring the device to the US for service. The US warranty is only good in the US, not in Brazil. You would be better off buying it in Brazil which will also save you duty and import taxes plus US sales tax.

  • Using iPad maps with no wifi

    HI,
    im going travelling soon, Im bring my iPad mini retina wifi and I was wondering if I would still be able to use maps with no wifi Connection. I understand that it won't be able to pin point my location but will it still be able to load up maps so that I can manually use it like you would with a paper map.
    thanks
    matt

    Without an internet connection a wifi-only iPad only be able to locate you nor load the Maps app - only cellular iPads have a built-in GPS chip, wifi-only iPads rely on getting their location from the router that they are connected to being in Apple's database.
    There are some external GPS units that appear to work with an iPad.
    There are also maps apps where the maps are stored within the app, and which therefore don't require an internet connection to download them

  • New iPad Mini with Retina - Wifi+Cellular causing problems.

    Bought an iPad Mini with Retina - Wifi+Cellular last month.
    It is lagging now. Animation during opening of minimized apps, scrolling and games are lagging. Took it to the service center, they said its an OS issue. I am using iOS 7.0.4. Please advice me what to do and will there be any updates soon from Apple for iOS 7? Will the problems be solved after update?

    Do yourself a favor and search the forums on this topic. Many people ask this daily and always get the same answer. Probably, but...
    Check that the LTE frequencies match your operator.
    Understand and accept the fact that if anything goes wrong, the warranty is good only in the US. Apple will not fix it for you in India (or anywhere else for that matter). You will need to physically get it back to the US as Apple does not accept shipped iDevices.
    You will also see that many people run into these issues and then are angry that their iDevices don't work or won't be repaired by Apple. If you're ok with accepting the risks, then it will likely be ok.

Maybe you are looking for

  • X11 there but not there

    Hi, I thought I had x11 installed but I cant find it and an app that I am trying to use cant find it. I downloaded the installer from Apple, but when I try to install it, it says that newer software already exists. Im trying to use Darwine. Thanks Jo

  • Is there any way to stop details showing up in reminders?

    Is there any way to stop details showing up in reminders? Before a recent ios update, you had to click on the reminder to show details. Now the details show up in reminders automatically which has made my task list unmanageable - I often create tasks

  • 60p vs 60i video quality

    Sorry for asking a very common question but every thread I've searched tends to go down a tangent that doesn't quite answer my question. I have a Panasonic camcorder that records in 1080 60p or 60i.  My question is video quality.  Even though all my

  • Why won't Pages 5.2 defer to my default printer?  All my other applications do.

    I am using Pages 5.2 on  a Macbook Pro with OS X 10.9.4.  My default printer is a Canon MG5520. Except for Pages all my applications automatically defer to the MG5520.  But every time I print from Pages another printer appears in place of the default

  • Command+backspace issue

    Hi there, I've been trying to send files to the trash through the command+backspace shortcut, but from some days 'till now, it only says to me that the file will be deleted immediately (with a confirmation dialog box), instead. I've defaulted all of