arcgis for android Geometry获取中心点

来源:互联网 发布:hybrid端口 编辑:程序博客网 时间:2024/05/29 16:30

话不多说,直接上代码!

Envelope tEnvelope = new Envelope();
geometry.queryEnvelope(tEnvelope);
Point tPoint = tEnvelope.getCenter();

1 0