久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

  1. <legend id='sAkjV'><style id='sAkjV'><dir id='sAkjV'><q id='sAkjV'></q></dir></style></legend>
    • <bdo id='sAkjV'></bdo><ul id='sAkjV'></ul>

    <small id='sAkjV'></small><noframes id='sAkjV'>

    1. <i id='sAkjV'><tr id='sAkjV'><dt id='sAkjV'><q id='sAkjV'><span id='sAkjV'><b id='sAkjV'><form id='sAkjV'><ins id='sAkjV'></ins><ul id='sAkjV'></ul><sub id='sAkjV'></sub></form><legend id='sAkjV'></legend><bdo id='sAkjV'><pre id='sAkjV'><center id='sAkjV'></center></pre></bdo></b><th id='sAkjV'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='sAkjV'><tfoot id='sAkjV'></tfoot><dl id='sAkjV'><fieldset id='sAkjV'></fieldset></dl></div>
      <tfoot id='sAkjV'></tfoot>

    2. GPS需要互聯網嗎?

      Does GPS require Internet?(GPS需要互聯網嗎?)

      • <tfoot id='m8WwJ'></tfoot>

              <bdo id='m8WwJ'></bdo><ul id='m8WwJ'></ul>
              <i id='m8WwJ'><tr id='m8WwJ'><dt id='m8WwJ'><q id='m8WwJ'><span id='m8WwJ'><b id='m8WwJ'><form id='m8WwJ'><ins id='m8WwJ'></ins><ul id='m8WwJ'></ul><sub id='m8WwJ'></sub></form><legend id='m8WwJ'></legend><bdo id='m8WwJ'><pre id='m8WwJ'><center id='m8WwJ'></center></pre></bdo></b><th id='m8WwJ'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='m8WwJ'><tfoot id='m8WwJ'></tfoot><dl id='m8WwJ'><fieldset id='m8WwJ'></fieldset></dl></div>
              1. <legend id='m8WwJ'><style id='m8WwJ'><dir id='m8WwJ'><q id='m8WwJ'></q></dir></style></legend>
                  <tbody id='m8WwJ'></tbody>

                <small id='m8WwJ'></small><noframes id='m8WwJ'>

                本文介紹了GPS需要互聯網嗎?的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                問題描述

                是否需要同時打開 InternetGPS 才能在我的應用中讀取我的當前位置(國家、城市、地區等)?如果是,那么是否有任何替代方法可以僅從 GPS 獲取位置?由于互聯網可用性是一個問題.

                Is it necessary to turn both Internet and GPS on before I can read my current location(country, city, locality etc) in my app? If they are, then any alternative way to get the location only from GPS? Since the internet availability is an issue.

                推薦答案

                正如其他人所說,GPS 不需要互聯網.

                As others have said, you do not need internet for GPS.

                GPS 基本上是一種基于衛星的定位系統,旨在根據從 GPS 星座中的多個衛星接收到的時間信息計算地理坐標.GPS 的首次定位時間 (TTFF) 相對較慢,并且從冷啟動(意味著沒有最后一個已知位置)開始,可能需要長達 15 分鐘才能從衛星下載所需的數據以計算位置.蜂窩網絡使用的 A-GPS 通過使用蜂窩網絡縮短了這個時間網絡將衛星數據傳送到手機.

                GPS is basically a satellite based positioning system that is designed to calculate geographic coordinates based on timing information received from multiple satellites in the GPS constellation. GPS has a relatively slow time to first fix (TTFF), and from a cold start (meaning without a last known position), it can take up to 15 minutes to download the data it needs from the satellites to calculate a position. A-GPS used by cellular networks shortens this time by using the cellular network to deliver the satellite data to the phone.

                但無論是 A-GPS 還是 GPS 位置,派生的只是地理坐標(緯度/經度).僅從 GPS 獲取更多信息是不可能的.

                But regardless of whether it is an A-GPS or GPS location, all that is derived is Geographic Coordinates (latitude/longitude). It is impossible to obtain more from GPS only.

                為了能夠返回坐標以外的任何內容(例如地址),您需要一些機制來執行 反向地理編碼.通常這是通過查詢服務器或網絡服務來完成的(例如使用 Google 地圖或 Bing 地圖,但還有其他).某些服務將允許您在本地緩存數據,但仍需要一段時間的互聯網連接才能下載周邊地區的地圖信息.

                To be able to return anything other than coordinates (such as an address), you need some mechanism to do Reverse Geocoding. Typically this is done by querying a server or a web service (like using Google Maps or Bing Maps, but there are others). Some of the services will allow you to cache data locally, but it would still require an internet connection for periods of time to download the map information in the surrounding area.

                雖然這需要大量的工作,但您可以編寫自己的工具來進行反向地理編碼,但您仍然需要能夠將數據存放在某個地方,因為執行此操作所需的數據量遠遠超出您的能力存儲在手機上,這意味著您仍然需要互聯網連接才能做到這一點.如果您想到 Garmin GPS 導航裝置之類的工具,它們確實會在本地存儲數據,所以這是可能的,但您需要對其進行優化以獲得最大的存儲空間,并且可能需要比手機中通常可用的更多.

                While it requires a significant amount of effort, you can write your own tool to do the reverse geocoding, but you still need to be able to house the data somewhere as the amount of data required to do this is far more you can store on a phone, which means you still need an internet connection to do it. If you think of tools like Garmin GPS Navigation units, they do store the data locally, so it is possible, but you will need to optimize it for maximum storage and would probably need more than is generally available in a phone.

                對您的問題的簡短回答是,不,您不需要有效的互聯網連接來獲取坐標,但除非您正在構建專用設備或擁有無限存儲空間,否則您將需要互聯網連接將這些坐標變成其他任何東西.

                The short answer to your question is, no you do not need an active internet connection to get coordinates, but unless you are building a specialized device or have unlimited storage, you will need an internet connection to turn those coordinates into anything else.

                這篇關于GPS需要互聯網嗎?的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                相關文檔推薦

                Help calculating X and Y from Latitude and Longitude in iPhone(幫助從 iPhone 中的緯度和經度計算 X 和 Y)
                Get user#39;s current location using GPS(使用 GPS 獲取用戶的當前位置)
                IllegalArgumentException thrown by requestLocationUpdate()(requestLocationUpdate() 拋出的 IllegalArgumentException)
                How reliable is LocationManager#39;s getLastKnownLocation and how often is it updated?(LocationManager 的 getLastKnownLocation 有多可靠,多久更新一次?)
                CLLocation returning negative speed(CLLocation 返回負速度)
                How to detect Location Provider ? GPS or Network Provider(如何檢測位置提供者?GPS 或網絡提供商)
                  <tbody id='hWjMC'></tbody>
                <i id='hWjMC'><tr id='hWjMC'><dt id='hWjMC'><q id='hWjMC'><span id='hWjMC'><b id='hWjMC'><form id='hWjMC'><ins id='hWjMC'></ins><ul id='hWjMC'></ul><sub id='hWjMC'></sub></form><legend id='hWjMC'></legend><bdo id='hWjMC'><pre id='hWjMC'><center id='hWjMC'></center></pre></bdo></b><th id='hWjMC'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='hWjMC'><tfoot id='hWjMC'></tfoot><dl id='hWjMC'><fieldset id='hWjMC'></fieldset></dl></div>
                  <bdo id='hWjMC'></bdo><ul id='hWjMC'></ul>

                        <legend id='hWjMC'><style id='hWjMC'><dir id='hWjMC'><q id='hWjMC'></q></dir></style></legend>

                        1. <small id='hWjMC'></small><noframes id='hWjMC'>

                          <tfoot id='hWjMC'></tfoot>
                          主站蜘蛛池模板: 欧美黄色片 | 亚洲天天干 | 欧美视频在线免费 | 精品1区2区3区4区 | 毛色毛片免费看 | 精品一区二区三区在线观看 | 日韩a | 91看片网 | 国内自拍真实伦在线观看 | 青青草av网站 | 日本午夜精品一区二区三区 | 精品久久久久久一区二区 | 免费一级黄色录像 | 国产在线精品一区二区 | 亚洲第一网站 | 亚洲一区毛片 | 国产精品一区二区在线观看 | 国产一区二区在线观看视频 | 亚洲人在线播放 | 精品久久久久久久久久久久久久 | 成人视屏在线观看 | 欧美精品黄 | 国产精品美女久久久 | 亚洲色片网站 | 国产日韩精品视频 | 狠狠婷婷综合久久久久久妖精 | 超碰成人av | 国产成人网 | 精品国产99 | 国产 日韩 欧美 中文 在线播放 | 日韩欧美网 | 欧美视频一区二区三区 | 老外黄色一级片 | 久久久精品视频免费看 | 91在线看视频 | 中文字幕亚洲一区二区三区 | 欧美亚洲国产一区二区三区 | 国产精品亚洲一区二区三区在线观看 | 欧美在线视频一区二区 | 视频在线亚洲 | 在线成人av|