0

将坐标从 kml 文件发送到我的模拟器时遇到了一些麻烦。例如,我发送long: 13,428753 lat: 52,518823和接收:13.42875166666666952.51882166666666

在使用这些坐标在 a 上创建标记时,GoogleMap我会收到一个位置稍有不同的标记,但这会破坏LatLng对象之间的比较。有什么想法可以解决这个问题吗?如果需要,我可以提供更多信息。

我如何接收我的数据:

@Override
    public void onLocationChanged(Location location) {  
        if(CurrentJourney.getInstance().getJourney() == null) {
            return;
        }

        CurrentJourney.getInstance().getJourney().getCoordinates()
            .add(new LatLng (location.getLatitude(), location.getLongitude()));

        String latitude = String.valueOf(location.getLatitude());
        String longitude = String.valueOf(location.getLongitude());

        Intent intent = new Intent(ACTION_NEW_LOCATION);
        intent.putExtra(EXTRA_NEW_LATITUDE, latitude);
        intent.putExtra(EXTRA_NEW_LONGITUDE, longitude);
        sendBroadcast(intent);
    }
4

0 回答 0