12 2016 档案
ArcGIS for android添加图层几何体
摘要:GraphicLayer lyr; Map<String,Object> attr = new HashMap<String,Object>(); attr.put(this.objectIdField, oid); Graphic graphic = new Graphic(selection, 阅读全文
posted @ 2016-12-13 15:07 janehlp 阅读(521) 评论(0) 推荐(0)
地图坐标点转换成布局坐标点
摘要:1 IPoint mapPnt; 2 int xpixels=0,ypixels=0; 3 MapControl.FromMapPoint(mapPnt, ref xpixels, ref ypixels); 4 IPoint pagePnt = PageLayoutControl.ToPagePoint(xpixels, ypixels); 阅读全文
posted @ 2016-12-12 23:18 janehlp 阅读(373) 评论(0) 推荐(0)
andriod InputType.TYPE_NUMBER_FLAG_DECIMAL只能输入数字和小数点无效问题
摘要:在java文件里edittext设置InputType.TYPE_NUMBER_FLAG_DECIMAL, 输入法能输入的是文本输入方式(数字、字母、符号等),和想要只能输入数字和小数点背道而驰。 在布局文件里edittext设置为inputType=“numberDecimal”,是预期效果。 后 阅读全文
posted @ 2016-12-03 16:41 janehlp 阅读(6245) 评论(0) 推荐(0)
ArcGIS for android访问天地图
摘要:底图采用Web Mercator投影坐标系 获取元数据信息:http://t0.tianditu.com/img_w/wmts?SERVICE=WMTS&REQUEST=GetCapabilitieshttp://t0.tianditu.com/vec_w/wmts?SERVICE=WMTS&REQ 阅读全文
posted @ 2016-12-02 19:55 janehlp 阅读(1085) 评论(0) 推荐(0)