0

我有一个像这样的pojo:

public class LocationPoint {

    protected double la;
    protected double lo;

    public double getLat() {
        return la;
    }

    public void setLat(double value) {
        this.la = value;
    }

    public double getLong() {
        return lo;
    }

    public void setLong(double value) {
        this.lo = value;
    }

}

场景:在 MapView 活动上做某事后,我回到名为 id 的活动

if (resultCode == RESULT_OK) {

                    int latitude = data.getIntExtra("Latitude", 0); 
                    int longitude = data.getIntExtra("Longitude", 0);

                    if (latitude!=0 && longitude!=0)
                    {
                                                                                                                                                   LocationPoint p = new LocationPoint();
                        p.setLat((double) latitude);
                        p.setLong((double) longitude);
                    }

int latitude = 43802334 and int longitude = 24825592 p 中的转换值为:4.3802334E7 和 2.4825592E7

我希望双精度值没有 E7,因为 Web 服务会因此引发错误。我做错了什么,不明白为什么。你能给个建议吗?谢谢

4

1 回答 1

0

没关系,我只需要从地图意图发送纬度和经度作为两倍和 clikcedLocation.getLatidudeE6 / 1E6

于 2010-10-18T11:23:38.860 回答