2

我第一次在我的 android 应用程序(java)中使用 ArcGis。

我通过“一张地图” http://www.onemap.sg/API/Help/RESTExamples.aspx获得了一个位置的 X 和 Y 坐标,

现在我想在地图中将此点显示为红点。

X-26005.0765 Y-30007.0973

有谁知道要遵循的任何教程。我看到了“你好地图教程”。

任何人都可以通过示例将我引导到教程或文档。

阿斯米塔

4

1 回答 1

2

您必须使用图形图层来添加您的点的图形表示。下面的代码是一个示例,您在给定的坐标中打印一个点。

public class Test extends Activity {

// View elements
MapView map;
GraphicsLayer measures = new GraphicsLayer();
Point point;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);


    // Get elements of the view
    map = (MapView) findViewById(R.id.map);

    map.addLayer(measures);

    Point point = new Point(26005.0765, 30007.0973);

    measures.addGraphic(new Graphic(point,new SimpleMarkerSymbol(Color.RED,10,STYLE.CIRCLE)));

    map.zoomTo(point, 0);
}

}

于 2013-05-21T12:32:48.057 回答