arcgis android 图上记录gps轨迹
原文arcgis android 图上记录gps轨迹 public class MainActivity extends Activity { MapView mMapView; LocationDisplayManager lDisplayManager = null; GraphicsLayer gpsGraphicsLayer; Polyline mPolyline; int pointCount = 0; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); // after the content of this activity is set // the map can be accessed from the layout mMapView = (MapView) findViewById(R.id.map); ArcGISTiledMapServi...
