《ArcGIS Runtime SDK for Android开发笔记》——翻译:ArcGIS Runtime SDK for Android 10.2.7发布
ArcGIS Runtime SDK for Android v10.2.7 released
We are excited to announce a new release to the ArcGIS Runtime SDK for Android v10.2.7. This is a bug fix release which includes the following issues addressed in our release notes.To apply this fix, update your build.gradle file with the following dependency:
我们非常高兴的宣布ArcGIS Runtime SDK for Android v10.2.7发布,这是一个bug修复版本,该版本解决的问题包括在发布说明的更新日志中。应用此修复,更新build.gradle文件,并设置以下依赖。
dependencies {
compile 'com.esri.arcgis.android:arcgis-android:10.2.7'
}
You can download the latest version of the SDK from our developers site. All of our sampleshave been updated to use the latest version and developer instructions on how to sync your local fork of the samples with our GitHub repository. We invite you to collaborate with the community and the Esri development team on GeoNet& our GitHub samples.
你能够下载最新一个版本的SDK在ArcGIS开发者中心,所有的示例代码也将被更新至使用最新的版本和最新的开发接口。并且你能够从GitHub的分支代码中同步这些代码到本地工作。我们邀请你在社区、GeoNet、GitHub与开发团队在讨论完善。
Release notes for 10.2.7
This topic describes the changes in version 10.2.7 of ArcGIS Runtime SDK for Android.
这个主题描述了ArcGIS Runtime SDK for Android 10.2.7的变化。
Issues addressed (问题解决)
- BUG-000084945: Adding an offline geodatabase content to a map does not display the label of a feature class if the label is in the Chinese language.
解决离线geodatabase内容添加到地图上时不显示标签为中文标签的情况。
- BUG-000089134: The Location Display Manager stops updating the phone's current location on the map if the accuracy of the incoming coordinate is much less accurate than the previous coordinate.
位置显示管理器(Location Display Manager)停止更新手机的当前位置,如果在地图上如果传入的坐标的精度比以前坐标精度更低的话。
- BUG-000089200: The LocationDisplayManager class shows an obviously bigger GPS indicator on Motorola Droid Turbo.
LocationDisplayManager类显示了一个更大的全球定位系统(GPS)指示器在摩托罗拉Droid Turbo。
- ENH-000090442: The geocode.arcgis.com service has new properties that enable developers to tailor suggest results to specific areas making suggest results more meaningful. Country code and location, geometry, and distance are now honored as suggest parameters.
geocode.arcgis.com服务有了更好的性能,开发人员可以定制显示特定区域,使显示结果更有意义。国家代码和位置、几何形状和距离现在评为显示参数。
- BUG-000088984/BUG-000088511: This fix for the PortalInfo print service parsing allows a web map to open from an organization when the print service is not set as esri default on the org.
PortalInfo打印服务解析,允许web地图打开打印服务时,设置组织为非esri默认值的在org。
Known issues (已知问题)
- Some services have a casing mismatch between the field names used in the EditFieldsInfo returned from ArcGISFeatureLayer.getEditFieldsInfo() and the Fields JSON attribute, which is defined in the service's REST endpoint. A workaround for this mismatch is to correct the casing in your app code.
一些服务中存在一个这样的现象,即通过ArcGISFeatureLayer.getEditFieldsInfo()方法返回的字段信息中的字段名与JSON属性中的字段名不匹配,JSON属性定义在service的REST端点中,一个变通的解决方案是使错乱的字段通过代码预处理的方式在应用程序中变的正确。
- Advanced symbology doesn't support MIL-STD-2525C and APP-6(B) dictionaries installed on the same device. Work around this issue by setting the path of one of the resources explicitly, using the MessageProcessor constructor that allows you to set the symbol dictionary path.
高级符号MIL-STD-2525C和APP-6(B)字典在同一设备上安装不被支持。解决这个问题通过设置明确的资源位置,使用MessageProcessor构造函数设置符号字典路径。
以上翻译若有不准确的地方,欢迎留言批评指正!
参考链接
https://developers.arcgis.com/android/guide/release-notes.htm
http://blogs.esri.com/esri/arcgis/2015/10/01/arcgis-runtime-sdk-for-android-v10-2-7-released/
《ArcGIS Runtime SDK for Android开发笔记》——翻译:ArcGIS Runtime SDK for Android 10.2.7发布的更多相关文章
- 《ArcGIS Runtime SDK for Android开发笔记》——(1)、Android Studio下载与安装
1.前言 Android Studio 是一个Android开发环境,基于IntelliJ IDEA. 类似 Eclipse ADT,Android Studio 提供了集成的 Android 开发工 ...
- 《ArcGIS Runtime SDK for Android开发笔记》——(2)、Android Studio基本配置与使用
1.前言 在上一篇文章<Android Studio下载与安装>里我们已经介绍了Android Studio的下载与安装步骤,这一篇我们将针对Android Studio的基本常见使用做一 ...
- 《ArcGIS Runtime SDK for Android开发笔记》
开发笔记之基础教程 ArcGIS Runtime SDK for Android 各版本下载地址 <ArcGIS Runtime SDK for Android开发笔记>——(1).And ...
- 【转】Android开发笔记(序)写在前面的目录
原文:http://blog.csdn.net/aqi00/article/details/50012511 知识点分类 一方面写写自己走过的弯路掉进去的坑,避免以后再犯:另一方面希望通过分享自己的经 ...
- 《ArcGIS Runtime SDK for Android开发笔记》——离在线一体化技术:概述
1.前言 数据生产和数据展示是常见的两大专业级移动GIS应用场景,这里我们针对数据生产环节的ArcGIS的离在线一体化技术给大家做一个基本的介绍和梳理. 使用ArcGIS离在线一体化技术首先需要以下基 ...
- 《ArcGIS Runtime SDK for Android开发笔记》——离在线一体化技术:离线矢量数据同步
1.前言 上一篇文章中我们实现了离线要素的编辑操作,这一篇中主要介绍离在线一体化技术中最后一个环节离线数据的同步功能,通过对数据的上传,服务器端的版本化管理,实现数据生产管理的整个流程. 转载请注明出 ...
- 《ArcGIS Runtime SDK for Android开发笔记》——(7)、示例代码arcgis-runtime-samples-android的使用
1.前言 学习ArcGIS Runtime SDK开发,其实最推荐的学习方式是直接看官方的教程.示例代码和帮助文档,因为官方的示例一般来说都是目前技术最新,也是最详尽的.对于ArcGIS Runtim ...
- 《ArcGIS Runtime SDK for Android开发笔记》——(9)、空间数据的容器-地图MapView
1.前言 在上一篇内容里介绍了 关于ArcGIS Android开发的未来(“Quartz”版Beta)相关内容,期间也提到了关于API接口的重构,开发思路的调整,根据2015UC资料也可以知道新版预 ...
- 《ArcGIS Runtime SDK for Android开发笔记》——(6)、基于Android Studio的ArcGIS Android工程结构解析
1.前言 Android Studio 是第一个Google官方的 Android 开发环境.其他工具,例如 Eclipse,在 Android Studio 发布之前已经有了大规模的使用.为了帮助开 ...
- Android开发笔记--hello world 和目录结构
原文:Android开发笔记--hello world 和目录结构 每接触一个新东西 都有一个hello world的例子. 1.新建项目 2.配置AVD AVD 没有要新建个,如果不能创建 运行SD ...
随机推荐
- i++操作非原子的验证代码
package incre; public class Incre { public static void main(String[] args) { class Count implements ...
- 用C#写一个函数,在一个数组中找出随意几个值相加等于一个值 与迭代器对比
算法!用C#写一个函数,在一个数组中找出随意几个值相加等于一个值比如,数组{1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20} 要找出那些数相加等 ...
- P2264 情书
传送门 正常会想到字典树 然鹅数据怎么小直接map也能过 然后就写map暴力匹配了 毫无思维难度,毫无代码难度 注意逗号算单词分隔符,如果有句号就算另一句 同一句的单词重复出现只计算一次贡献 再开个m ...
- 经典SQL行列转换
-- http://www.programbbs.com/doc/4885.htm /* 标题:普通行列转换(version 2.0) 说明:普通行列转换(version 1.0)仅针对sql ser ...
- linux 中varnish服务
一.安装varnish在server1中安装两个包varnish-3.0.5-1.el6.x86_64.rpm varnish-libs-3.0.5-1.el6.x86_64.rpm1.在server ...
- 单点登录-JWT(Json Web Tokens)
来自:http://www.ruanyifeng.com/blog/2018/07/json_web_token-tutorial.html 1.跨域认证 1.用户向服务器发送用户名和密码. 2.服务 ...
- vuex 浅认知
什么是Vuex? Vuex 是一个专为 Vue.js 应用程序开发的状态管理模式. 采用了集中式存储管理应用的所有组件的状态,并以相应的规则保证状态以一种可预测的方式发生变化. 什么情况下我应该使用 ...
- my26_Slave failed to initialize relay log info structure from the repository
重启了一下从库,忘记先stop slave ,直接mysqladmin shutdown关闭实例,结果起不来了 mysql> start slave;ERROR 1872 (HY000): Sl ...
- 研磨设计模式学习笔记1--简单工厂(SimpleFactory)
需求:实现一个简单工厂,客户端根据需求获取实现类. 简单工厂优点: 客户端不需要知道工厂内部实现,然组件外部实现面向接口编程. 客户端.实现类解耦. 一.接口及实现类 //接口 public inte ...
- Mybatis学习笔记15 - 两个内置参数_parameter和_databaseId
两个内置参数:除了方法传递过来的参数可以被用来判断,取值外,mybatis默认还有两个内置参数: _parameter:代表整个参数 单个参数:_parameter就代表这个单个参数 多个参数:参数会 ...