高德导航离线能用吗怎么离线使用

请问高德地图的离线导航怎么使用呢?
当前位置: >
请问高德地图的离线导航怎么使用呢?
请问高德地图的离线导航怎么使用呢?
请问高德地图的离线导航怎么使用呢?相关软件推荐下载:
所属栏目:
请问高德地图的离线怎么使用呢? &大家想知道在无网络的时候如何使用GPS进行导航吗?其实也是很简单的,接下来小编跟大家一起分享吧!
高德有两个产品:高德地图和。大家平时试用的应该是高德地图的导航功能,该功能不能离线使用,必须联网运行,所以当输入导航指令时,要求检查网络连接后重视()。
高德导航()是相对来说比较专业的导航软件,可以完全离线导航,无需依赖网络。该软件本来是收费的,但现在实行的是免费政策。如果想使用离线导航,可以到其官下载该版本。
乡巴佬下载站小编以上的回答希望可以帮到大家,如果大家还有其他相关问题的可以给小编留言,也可以自己到乡巴佬文章教程中心查找。谢谢大家!
上一篇文章:
下一篇文章:
已有条评论,
(您的评论需要经过审核才能显示,请文明发言!)
07-0807-0807-0807-0807-0707-0707-0707-0707-0707-07
可能你喜欢的软件
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
类似"顶"、"沙发"之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
本文章名称:
本文章地址:离线地图(3D)
高德地图API
认证开发商
您现在的位置: >
> 离线地图(3D)
离线地图(3D)
离线地图(3D)
注意:Android SDK V2.1.X 版本为全新搜索服务,与 V2.0.4 版本搜索接口互不兼容。
用户在使用 3D 地图应用时,可以使用离线地图来减少使用过程中的调用地图的流量,提高访问速度。
目前您可以根据城市编码和城市名称两种方式下载该城市的离线地图。使用方法为 OfflineMapManager.downloadByCityCode(String citycode) 和 OfflineMapManager.downloadByCityName(String cityname)。
示例代码如下(详细信息,请参考示例工程“离线地图”案例 / com.amapv2.apis.offlinemap.OfflineMapActivity.java):
* 开始下载离线地图
private void downloadMap(String city) {
amapManager = new OfflineMapManager(this, this);
boolean start =
start = amapManager.downloadByCityName(city);
if (!start) {
ToastUtil.show(this, "下载离线地图数据失败");
ToastUtil.show(this, "开始下载离线地图数据");
} catch (Exception e) {
e.printStackTrace();
ToastUtil.show(this, "开启下载失败,请检查网络是否开启!");
离线地图下载过程中,可以通过代码暂停地图的下载。
示例代码如下(详细信息,请参考示例工程“离线地图”案例 / com.amapv2.apis.offlinemap.OfflineMapActivity.java):
* 点击暂停按钮响应事件回调
public void pauseButton(View view) {
amapManager = new OfflineMapManager(this, this);
amapManager.pause();
ToastUtil.show(this, "暂停下载离线地图数据");
正在下载的离线地图包可以使用 OfflineMapManager.stop() 方法停止下载。
示例代码如下(详细信息,请参考示例工程“离线地图”案例 / com.amapv2.apis.offlinemap.OfflineMapActivity.java):
* 点击停止按钮响应事件回调
public void stopButton(View view) {
amapManager = new OfflineMapManager(this, this);
amapManager.stop();
ToastUtil.show(this, "停止下载离线地图数据");
更改手机下载目录
默认离线地图数据下载到手机存储卡的“amap\mini_mapv3\vmap”目录下,您可以参照示例代码自定义该路径。
示例代码如下(详细信息,请参考示例工程“离线地图”案例 / com.amapv2.apis.offlinemap.OfflineMapActivity.java):
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// 设置应用单独的地图存储目录,在下载离线地图或初始化地图时设置
MapsInitializer.sdcardDir = getSdCacheDir(this);
……………………………………………………………………………………………………………
* 获取map缓存和读取目录
private String getSdCacheDir(Context context) {
if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {
java.io.File fExternalStorageDirectory = Environment.getExternalStorageDirectory();
java.io.File autonaviDir = new java.io.File(fExternalStorageDirectory, "Company");
boolean result =
if (!autonaviDir.exists()) {
result = autonaviDir.mkdir();
java.io.File minimapDir = new java.io.File(autonaviDir, "Name");
if (!minimapDir.exists()) {
result = minimapDir.mkdir();
return minimapDir.toString() + "/";
获取离线地图城市列表
使用 OfflineMapManager.getOfflineMapCityList() 方法您可以查看离线地图可下载城市的列表。
获取全国离线地图数据
OfflineMapProvince 类可以用来获取全国包括各省、市离线地图的数据。
获取已下载城市列表
使用 OfflineMapManager.getDownloadOfflineMapCityList() 方法您可以查看已下载的城市列表。
获取正在或等待下载城市列表
使用 OfflineMapManager.getDownloadingCityList() 方法您可以查看正在或等待下载的城市列表。
已经下载的离线地图包,可以使用 OfflineMapManager.updateOfflineCityByName(String cityname) 方法判断该地图包是否存在更新。
示例代码如下(详细信息,请参考示例工程“离线地图”案例 / com.amapv2.apis.offlinemap.OfflineMapActivity.java):
* 点击更新按钮响应事件回调
public void updateButton(View view) {
final String city = AMapUtil.checkEditText(cityName);
if ("".equals(city)) {
ToastUtil.show(OfflineMapActivity.this, "请输入城市名字");
ToastUtil.show(this, "下载离线地图数据失败");
new Thread(new Runnable() {
public void run() {
update = amapManager.updateOfflineCityByName(city);
runOnUiThread(new Runnable() {
public void run() {
if (update) {
ToastUtil.show(OfflineMapActivity.this,
city + "离线数据有更新");
downloadMap(city);
ToastUtil.show(OfflineMapActivity.this,
city + "离线数据已经是最新的了");
} catch (Exception e) {
e.printStackTrace();
}).start();
删除城市离线地图包
当您不需要某一城市的离线地图包时,可以根据城市名称使用 OfflineMapManager.remove(String cityname) 删除该离线地图包。
示例代码如下(详细信息,请参考示例工程“离线地图”案例 / com.amapv2.apis.offlinemap.OfflineMapActivity.java):
* 点击删除按钮响应事件回调
public void deleteButton(View view) {
String city = AMapUtil.checkEditText(cityName);
if ("".equals(city)) {
ToastUtil.show(OfflineMapActivity.this, "请输入城市名字");
amapManager.remove(city);
ToastUtil.show(this, "删除离线地图数据");
该文档对您是否有帮助?
您的点滴建议,将有助于开发文档的快速完善。
感谢您的建议!
本文档由 酸奶小妹,欢仔 共同提出改进建议。
(C) 2002- 版权所有 | 京ICP证070711号使用帮助 ·
高德导航是一款为广大车主用户设计的最安全、最易用、最准确、最高效的离线手机导航软件,导航过程中无流量消耗。
高德导航专注导航研究十余年,产品覆盖全部主流手机平台,始终保持国内手机导航第一的市场份额,被国内外主流手机厂商作为重点应用预置于高端旗舰机型当中。
高德导航拥有最先进的离线引擎、最精准的路线算法、最智能的导航引导、最新的地图数据、最先进3D渲染引擎、最人性化的设计理念。如今搭载最前沿的AR实景导航、车主服务、完善的升级方案、动态路况等功能,重新定义手机导航领域新标杆。
离线地图下载(安卓版)
1. 客户端直接下载
运行高德导航,在主界面点击“设置”按钮,在 “地图管理”中可以按需下载对应省份\城市数据;
已下载的地图数据在“已下载”列表可查看到;
由于地图数据比较大,建议使用WIFI网络下载城市数据。
2. 网站下载全国数据
在下载页面:
点击“全国地图下载”下载地图数据autonavidata60/70.zip压缩包,解压后获得autonavidata60/70文件夹。
将解压后的autonavidata60/70文件夹放入手机内置存储卡或手机外置存储卡。然后运行高德导航,系统会自动判断数据存储位置并提示用户做出选择。
3. 网站下载分城市数据
分城市数据的下载包括“基础资源“+”城市数据“,下载后需将数据解压,拷贝至手机内方可正常运行高德导航。
在网站公众版页面:
点击“分城市地图下载”,下载地图数据基础资源autonavidata60/70.zip压缩包,解压后获得autonavidata60/70文件夹。
城市数据下载,选择需要下载的城市得到不同的ZIP压缩包,解压后获取data文件夹,直接放入autonavidata60/70文件夹下。
离线地图下载(iPhone版)
1. 客户端直接下载
运行高德导航,在主界面点击“设置”按钮,在 “地图管理”中可以按需下载对应的城市数据;
已下载或下载中的地图数据在“下载管理”列表可查看到;
由于地图数据比较大,建议使用WIFI网络下载城市数据。
2. 网站下载全国数据
如果您的电脑上没有安装iTunes,请立即获取 。
在下载页面:
优先确认手机系统版本,点击“全国地图下载”下载地图数据autonavidata70.zip压缩包。
iPhone与电脑相连,打开电脑上的iTunes,选择您的设备,点击上方菜单中的“应用程序”。
此页面下拉找到“文件共享”功能,选中“高德导航”,点击“添加”,选择已下载的autonavidata70.zip地图包,如图:
导入添加完成后,iphone打开高德导航,按照弹出提示解压、安装离线地图包;
注:请选择正确的iphone系统版本,下载错误版本可能无法正常使用导航软件。
3. 网站下载分城市数据
分城市数据的下载包括“基础资源“+”城市数据“,分别下载,并“添加”到iphone。
在网站公众版页面:
点击“分城市地图下载”,下载地图数据基础资源autonavidata70.zip压缩包。
城市数据下载,选择需要下载的城市得到不同的ZIP压缩包。
通过iTunes,选择您的设备,点击上方菜单中的“应用程序”;此页面下拉找到“文件共享”功能,选中“高德导航”,点击“添加”,选择已下载的zip地图包;导入添加完成后,iphone打开高德导航,按照弹出提示解压、安装离线地图包;
高德导航android版的安装
高德导航可以通过各大电子市场PC、手机客户端进行下载并自动安装
也可以将手机通过数据线连接至电脑,将高德导航公众版安装程序(Autonavi_V*.apk)+地图数据(autonavidata60/70文件夹),复制到手机内存或外置存储卡根目录下。
在手机上找到Autonavi_V*.apk安装程序,点击“安装”,完成软件安装。
如何卸载高德导航公众版
进入手机&设置& -& &应用程序& -&
&管理应用程序&,
在程序列表中选择&高德导航&,然后选择&卸载&,按照提示完成高德导航的卸载;或长按图标,点击删除标记,即可完成卸载。
老版预装版的安装卸载
由于不同机型对应安装方式及地图数据文件不同,具体安装请仔细阅读对应机型的“安装说明”。
高德导航预装版在出厂时即集成在手机系统内,部分机型不能进行卸载,如果需要卸载请联系手机厂商客服中心。
如仍然无法解决,可自行上网搜索ROOT软件将设备ROOT,然后通过手机管理软件安进行下载。
注:ROOT手机设备存在一定风险,不熟悉android系统的用户切勿自行操作,如因误操作出现问题,后果自负。
高德导航本地数据包删除
高德导航地图数据包文件夹名称autonavidata**,由于版本的不同地图数据文件夹名也有所不同。
由于版本众多,请在官网预装版页面找到对应机型,查看安装说明里面内地图数据文件名。
删除地图数据有多种方式,您可以将手机连接电脑,在电脑上直接删除,也可以利用第三方软件,
删除存储卡内的地图数据文件夹(如公众版autonavidata60/70);
手机操作请通过手机自带或从应用市场下载“文件管理器”删除手机存储卡内的地图数据文件夹 (autonavidata60/70)。
确认GPS或移动网络其中一项已经打开
运行高德导航系统自动定位,目前高德导航同时支持GPS定位和A-GPS定位
由于导航仪是利用三角原理定位,需要有三颗星以上的有效卫星方可成功定位。
GPS定位是否准确、时间长短由多方面因素构成,并非导航软件本身所能控制。
手机本身GPS芯片质量、所处周边自然环境、周边建筑物高低、室内室外等等均可影响到GPS信号的稳定,因此请将设备移至室外,且周边无高大建筑物的位置进行卫星定位。
根据设备硬件的不同,首次GPS定位时间差异较大。首次定位所需时间较长,首次定位成功后再次定位时间将明显缩短。
高德导航提供除导航之外的车主服务,您可以结合自身需求选择下载使用。
开启导航,主界面点击“服务”按钮,您可以看到我们为您精心准备的推荐服务,点击服务进入服务详情后,点击安装按钮,即可下载并安装选中服务。如需安装更多服务,点击更多进行查看并安装。(在车主服务界面,通过长按可以升级、置顶、或移除服务)
查看实时路况
点击主界面上“红绿灯”图标,即可查看实时路况。
说明:实时路况功能使用过程中需要连接网络,产生的流量费用由无线运营商收取。
AR实景导航
AR 实景导航是通过手机摄像头将真实道路场景显示在屏幕上,通过将导航引导信息、道路指示图标叠加在屏幕上,
为您提供“身临其境”的导航体验。
导航路线规划完成后,在导航界面,点击“ 图层按钮”,选择实景导航即可切换到AR实景导航模式 。
备份与同步
通过“备份与同步”功能,可以将用户数据进行云端备份,并可在电脑上登录官网管理您的个性化数据。
关于程序使用Apache开源代码的说明
Apache Public License Version 2.0, January 2004
http://www.apache.org/licenses/
CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms
and conditions for use, reproduction, and distribution as
defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized
by the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under
common control with that entity. For the purposes of this
definition, "control" means (i) the power, direct or indirect,
to cause the direction or management of such entity, whether by
contract or otherwise, or (ii) ownership of fifty percent (50%)
or more of the outstanding shares, or (iii) beneficial ownership
of such entity.
"You" (or "Your") shall mean an
individual or Legal Entity exercising permissions granted by
this License.
"Source" form shall mean the
preferred form for making modifications, including but not
limited to software source code, documentation source, and
configuration files.
"Object" form shall mean any
form resulting from mechanical transformation or translation of
a Source form, including but not limited to compiled object
code, generated documentation, and conversions to other media
"Work" shall mean the work of authorship,
whether in Source or Object form, made available under the
License, as indicated by a copyright notice that is included in
or attached to the work (an example is provided in the Appendix
"Derivative Works" shall mean any work,
whether in Source or Object form, that is based on (or derived
from) the Work and for which the editorial revisions,
annotations, elaborations, or other modifications represent, as
a whole, an original work of authorship. For the purposes of
this License, Derivative Works shall not include works that
remain separable from, or merely link (or bind by name) to the
interfaces of, the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including the
original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright
owner or by an individual or Legal Entity authorized to submit
on behalf of the copyright owner. For the purposes of this
definition, "submitted" means any form of electronic, verbal, or
written communication sent to the Licensor or its
representatives, including but not limited to communication on
electronic mailing lists, source code control systems, and issue
tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work,
but excluding communication that is conspicuously marked or
otherwise designated in writing by the copyright owner as "Not a
Contribution."
"Contributor" shall mean Licensor
and any individual or Legal Entity on behalf of whom a
Contribution has been received by Licensor and subsequently
incorporated within the Work.
2. Grant of
Copyright License. Subject to the terms and conditions of this
License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute
the Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and
conditions of this License, each Contributor hereby grants to
You a perpetual, worldwide, non-exclusive, no-charge,
royalty-free, irrevocable (except as stated in this section)
patent license to make, have made, use, offer to sell, sell,
import, and otherwise transfer the Work, where such license
applies only to those patent claims licensable by such
Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If
You institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes
direct or contributory patent infringement, then any patent
licenses granted to You under this License for that Work shall
terminate as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of
the Work or Derivative Works thereof in any medium, with or
without modifications, and in Source or Object form, provided
that You meet the following conditions:
&&&&&You must give any other recipients
of the Work or Derivative Works a copy of this L and
&&&&&You must cause any
modified files to carry prominent notices stating that You
&&&&&You must retain, in the Source
form of any Derivative Works that You distribute, all copyright,
patent, trademark, and attribution notices from the Source form
of the Work, excluding those notices that do not pertain to any
part of the Derivative W and
&&&&&If the Work includes a "NOTICE"
text file as part of its distribution, then any Derivative Works
that You distribute must include a readable copy of the
attribution notices contained within such NOTICE file, excluding
those notices that do not pertain to any part of the Derivative
Works, in at least one of the following places: within a NOTICE
text file distributed as part of the Derivative W within
the Source form or documentation, if provided along with the
Derivative W or, within a display generated by the
Derivative Works, if and wherever such third-party notices
normally appear. The contents of the NOTICE file are for
informational purposes only and do not modify the License. You
may add Your own attribution notices within Derivative Works
that You distribute, alongside or as an addendum to the NOTICE
text from the Work, provided that such additional attribution
notices cannot be construed as modifying the License. You may
add Your own copyright statement to Your modifications and may
provide additional or different license terms and conditions for
use, reproduction, or distribution of Your modifications, or for
any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies
with the conditions stated in this License.
Submission of Contributions. Unless You explicitly state
otherwise, any Contribution intentionally submitted for
inclusion in the Work by You to the Licensor shall be under the
terms and conditions of this License, without any additional
terms or conditions. Notwithstanding the above, nothing herein
shall supersede or modify the terms of any separate license
agreement you may have executed with Licensor regarding such
Contributions.
6. Trademarks. This License does
not grant permission to use the trade names, trademarks, service
marks, or product names of the Licensor, except as required for
reasonable and customary use in describing the origin of the
Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or
conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or
FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for
determining the appropriateness of using or redistributing the
Work and assume any risks associated with Your exercise of
permissions under this License.
8. Limitation of
Liability. In no event and under no legal theory, whether in
tort (including negligence), contract, or otherwise, unless
required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor
be liable to You for damages, including any direct, indirect,
special, incidental, or consequential damages of any character
arising as a result of this License or out of the use or
inability to use the Work (including but not limited to damages
for loss of goodwill, work stoppage, computer failure or
malfunction, or any and all other commercial damages or losses),
even if such Contributor has been advised of the possibility of
such damages.
9. Accepting Warranty or Additional
Liability. While redistributing the Work or Derivative Works
thereof, You may choose to offer, and charge a fee for,
acceptance of support, warranty, indemnity, or other liability
obligations and/or rights consistent with this License. However,
in accepting such obligations, You may act only on Your own
behalf and on Your sole responsibility, not on behalf of any
other Contributor, and only if You agree to indemnify, defend,
and hold each Contributor harmless for any liability incurred
by, or claims asserted against, such Contributor by reason of
your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS APPENDIX: How to
apply the Apache License to your work
the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
&&&&&&Copyright [yyyy] [name of
copyright owner]
&&&&&&Licensed under the Apache
License, Version 2.0 (the "License");
&&&&&&you may not use this file
except in compliance with the License.
&&&&&&You may obtain a copy of the
License at
&&&&&&&&&&http://www.apache.org/licenses/LICENSE-2.0
&&&&&&Unless required by
applicable law or agreed to in writing, software
&&&&&&distributed under the
License is distributed on an "AS IS" BASIS,
&&&&&&WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied.
&&&&&&See the License for the
specific language governing permissions and
&&&&&&limitations under the
客服电话: 400-810-0080
客服邮箱:
/ 微信:Gaodedaohang
Copyright c 2014 高德软件Autonavi.
All Rights Reserved.
京ICP备号 - 5
京公网安备号
Windows Phone版}

我要回帖

更多关于 如何使用高德离线导航 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信