GraphicsLayer是图形图层,可以自定义图形添加到地图上。调用GraphicsLayer的addGraphic方法就能添加图形,此方法要一个Graphic对象,此对象的构造方法是Graphic(Geometry geometry, Symbol symbol),前面第一个是要素,而Geometry的子类有Envelope, MultiPath, MultiPoint, Point, Segment,Line, Polygon, Polyline。我们所常用的有点Point,线Polyline,面Polygon。而后面一

个参数是样式,点的样式是SimpleMarkerSymbol,线的样式是SimpleLineSymbol,面的样式是SimpleFillSymbol。

一、GraphicsLayer添加点:

  1. Graphic graphic = new Graphic(point, new SimpleMarkerSymbol(Color.RED,5, SimpleMarkerSymbol.STYLE.CIRCLE));
  2. graphicsLayer.addGraphic(graphic);

二、添加线,样式有实线、虚线、点虚线、点点虚线、点线等。效果图如下:

  1. Polyline polyline = new Polyline();
  2. polyline.startPath(new Point(113,23));//第一个点用startPath,后面的点用lineTo方法
  3. polyline.lineTo(new Point(123,23));
  4. graphic = new Graphic(polyline,new SimpleLineSymbol(Color.RED,3, SimpleLineSymbol.STYLE.SOLID));
  5. graphicsLayer.addGraphic(graphic);

三、添加面Polygon,效果图如下:

  1. Polygon polygon = new Polygon();
  2. //第一个点startPath,后面的点用lineTo
  3. polygon.startPath(new Point(118,23));
  4. polygon.lineTo(new Point(118,15));
  5. polygon.lineTo(new Point(113,13));
  6. graphic = new Graphic(polygon,new SimpleFillSymbol(Color.GREEN,SimpleFillSymbol.STYLE.SOLID));
  7. graphicsLayer.addGraphic(graphic);

Code for all:

  1. package com.arcgis.test;
  2. import android.graphics.Color;
  3. import android.os.Bundle;
  4. import android.support.annotation.Nullable;
  5. import android.support.v7.app.AppCompatActivity;
  6. import android.view.View;
  7. import android.widget.AdapterView;
  8. import android.widget.Button;
  9. import android.widget.Spinner;
  10. import com.esri.android.map.GraphicsLayer;
  11. import com.esri.android.map.MapView;
  12. import com.esri.android.map.ags.ArcGISTiledMapServiceLayer;
  13. import com.esri.android.map.event.OnSingleTapListener;
  14. import com.esri.core.geometry.Point;
  15. import com.esri.core.geometry.Polygon;
  16. import com.esri.core.geometry.Polyline;
  17. import com.esri.core.map.Graphic;
  18. import com.esri.core.symbol.SimpleFillSymbol;
  19. import com.esri.core.symbol.SimpleLineSymbol;
  20. import com.esri.core.symbol.SimpleMarkerSymbol;
  21. import java.util.ArrayList;
  22. import java.util.List;
  23. public class GraphicActivity extends AppCompatActivity {
  24. private MapView mMapView;
  25. private Spinner graphicTypeSpinner;
  26. private Button clernBtn;
  27. private ArcGISTiledMapServiceLayer arcGISTiledMapServiceLayer;
  28. private GraphicsLayer graphicsLayer;
  29. private String mapServerUrl = "http://services.arcgisonline.com/ArcGIS/rest/services/World_Street_Map/MapServer";
  30. //点集合
  31. private List<Point> pointList = new ArrayList<>();
  32. private Graphic graphic;
  33. @Override
  34. protected void onCreate(@Nullable Bundle savedInstanceState) {
  35. super.onCreate(savedInstanceState);
  36. setContentView(R.layout.activity_graphic);
  37. initView();
  38. addLayer();
  39. }
  40. private void initView() {
  41. mMapView = (MapView) findViewById(R.id.map_view);
  42. //mapview点击事件
  43. mMapView.setOnSingleTapListener(new OnSingleTapListener() {
  44. @Override
  45. public void onSingleTap(float x, float y) {
  46. handleSingleTap(x, y);
  47. }
  48. });
  49. graphicTypeSpinner = (Spinner) findViewById(R.id.spinner_type);
  50. graphicTypeSpinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
  51. @Override
  52. public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
  53. pointList.removeAll(pointList);
  54. graphicsLayer.removeAll();
  55. }
  56. @Override
  57. public void onNothingSelected(AdapterView<?> parent) {
  58. }
  59. });
  60. clernBtn = (Button) findViewById(R.id.clear_graphic);
  61. clernBtn.setOnClickListener(new View.OnClickListener() {
  62. @Override
  63. public void onClick(View v) {
  64. pointList.removeAll(pointList);
  65. graphicsLayer.removeAll();
  66. }
  67. });
  68. }
  69. private void addLayer() {
  70. arcGISTiledMapServiceLayer = new ArcGISTiledMapServiceLayer(mapServerUrl);
  71. mMapView.addLayer(arcGISTiledMapServiceLayer);
  72. graphicsLayer = new GraphicsLayer();
  73. mMapView.addLayer(graphicsLayer);
  74. }
  75. private void handleSingleTap(float x, float y) {
  76. Point point = mMapView.toMapPoint(x, y);
  77. graphicsLayer.removeAll();
  78. pointList.add(point);
  79. String type = graphicTypeSpinner.getSelectedItem().toString().trim();
  80. switch (type) {
  81. case "点":
  82. graphic = new Graphic(point, new SimpleMarkerSymbol(Color.RED,5, SimpleMarkerSymbol.STYLE.CIRCLE));
  83. graphicsLayer.addGraphic(graphic);
  84. break;
  85. case "线":
  86. Polyline polyline = new Polyline();
  87. if (pointList.size()>1){
  88. for(int i=0;i<pointList.size();i++){
  89. if (i==0){
  90. polyline.startPath(pointList.get(i));
  91. }else{
  92. polyline.lineTo(pointList.get(i));
  93. }
  94. }
  95. }
  96. graphic = new Graphic(polyline,new SimpleLineSymbol(Color.RED,3, SimpleLineSymbol.STYLE.SOLID));
  97. graphicsLayer.addGraphic(graphic);
  98. break;
  99. case "面":
  100. Polygon polygon = new Polygon();
  101. for(int i=0;i<pointList.size();i++){
  102. if (i==0){
  103. polygon.startPath(pointList.get(i));
  104. }else{
  105. polygon.lineTo(pointList.get(i));
  106. }
  107. }
  108. graphic = new Graphic(polygon,new SimpleFillSymbol(Color.GREEN,SimpleFillSymbol.STYLE.SOLID));
  109. graphicsLayer.addGraphic(graphic);
  110. break;
  111. }
  112. }
  113. }

Android GIS开发系列-- 入门季(3) GraphicsLayer添加点、线、面的更多相关文章

  1. Android GIS开发系列-- 入门季(14)FeatureLayer之范围查询

    Android GIS开发系列-- 入门季(5),这篇文章中,我们知道如何去查找要素.现在有一个需求,查找某点5000米范围的要素,那如何来做呢?首先我们需要在地图上画个5000米半径的圆,然后根据Q ...

  2. Android GIS开发系列-- 入门季(6)GraphicsLayer添加文字与图片标签

    一.GraphicsLayer添加图片 GraphicLayer添加图片Graphic,要用到PictureMarkerSymbol,也是样式的一种.添加代码如下: Drawable drawable ...

  3. Android GIS开发系列-- 入门季(4) GraphicsLayer的点击查询要素

    上一讲中我们学会了如何在MapView中添加Graphic要素,那么在百度或高德地图中,当我们点击要素时,会显示出相应的详细信息.在GraphicsLayer中也提供了这样的方法.下面我们来学习在Gr ...

  4. Android GIS开发系列-- 入门季(1) 起点

    前言 这个系列,待最终完成更新,大家体谅点,第一版本全部是参考的网络教程,最近会逐步的细化更新为可以直接使用的情况. 本系列的开发基于AS (  Android Studio ), 和ArcGIS 的 ...

  5. Android GIS开发系列-- 入门季(2) MapView与图层介绍

    一.MapView MapView是Arcgis中的最基本的类,与高德地图SDK的MapView的重要性一样.MapView的创建有两种方法,一种是在Layout文件中直接写控件.一种是实例化,Map ...

  6. Android GIS开发系列-- 入门季(5) FeatureLayer加载本地shp文件与要素查询

    FeatureLayer是要素图层,也是Arcgis的主要图层.用这个图层可以加载本地的shp文件.下面我们看怎样加载shp文件到MapView中.查看ArcGis API可知FeatureLayer ...

  7. Android GIS开发系列-- 入门季(13)Gdal简单写个shp文件

    Gdal是用来读写栅格与矢量数据的,在Gdal官网,可以下载相关的资源进行平台的编译.其实Arcgis底层也是用Gdal来读取shp文件的,那在Android中可以直接读写shp文件吗,是可以的.这里 ...

  8. Android GIS开发系列-- 入门季(12) 显示载天地图

    在项目中可以经常需要动态加载一些图层,像投影地图服务.投影地图服务器.其实网上有大量这样的服务,比如天地图官网, . 随便点开一个服务,里面有相关的信息.那如何加载这样图层服务呢. 一.首先感谢这篇博 ...

  9. Android GIS开发系列-- 入门季(10) MapView快速定位到Geometry

    我们知道某个Geometry的坐标,但不知道具体的位置,该如何使地图快速定位呢?这时需要用到MapView.setExtent方法,来看下这个方法的介绍:Zooms the map to the gi ...

随机推荐

  1. 构造 Codeforces Round #107 (Div. 2) B. Phone Numbers

    题目传送门 /* 构造:结构体排个序,写的有些啰嗦,主要想用用流,少些了判断条件WA好几次:( */ #include <cstdio> #include <algorithm> ...

  2. UC浏览器中,设置了position: fixed 的元素会遮挡z-index值更高的同辈元素

    "UC浏览器中,设置了position: fixed 的元素会遮挡z-index值更高的同辈元素(非fixed)." 我们使用的artDialog弹窗中,在UC浏览器中,如果页面高 ...

  3. 一个用pyton写的监控服务端进程的软件hcm

    使用udp实现,简单,方便,不用三次握手 1. 所有部署服务器进程的机器有一个代理进程hagent,用来监听hcm console中发送过来的命令 2.hcm需要提供以下命令 start :普通方式启 ...

  4. 如何向expect脚本里面传递参数

    如何向expect脚本里面传递参数   比如下面脚本用来做ssh无密码登陆,自动输入确认yes和密码信息,用户名,密码,hostname通过参数来传递   ssh.exp   Python代码   # ...

  5. window下编写python脚本在linux下运行出错 usr/bin/python^M: bad interpreter: No such file or directory

    今天在windows下使用notepad++写了个python脚本,传到linux服务器执行后提示:-bash: ./logger.py: usr/bin/python^M: bad interpre ...

  6. ZENCART 二级 分类 展开

    zencart首页默认的是只显示一级分类,很多做仿牌外贸的朋友觉得只显示一级分类不好看,也不利于产品展示.怎么让zencart首页显示二级目录?下面分享给大家: 打开文件’includes/class ...

  7. KM算法(Kuhn-Munkres)

    算法理论基础: 可行顶点标号 用l(v)表示顶点v的标号,w(uv)表示边(u,v)的权,对于赋权二分图G=(X,Y),若对每条边e=xy,均有l(x)+l(y)>=w(xy),则称这个标号为G ...

  8. 安全,轻松的Axios与Nuxt.js集成

    modules: [ // Doc: https://github.com/nuxt-community/axios-module#usage '@nuxtjs/axios' ], /* ** Axi ...

  9. 打造个人的vimIDE

    环境说明 系统版本:centos7.Ubuntu16 vim版本:7.4 安装git工具 整体说明:本文的vim配置是针对Linux的单个系统用户,python的自动补全使用的是 jedi-vim 插 ...

  10. oracle文件 结构01

    1.减少数据的冗余(例如使用id) 2.保证数据库一致性 关联表越多越慢 主机名 hosts 文件 ntp 时间同步