android – 从坐标获取位置

前端之家收集整理的这篇文章主要介绍了android – 从坐标获取位置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我给出了纬度和经度的坐标,我想用那些制作一个位置对象.没有一个构造函数需要双倍才能创建一个位置,所以我尝试这样:
Location l = null;
 l.setLatitude(lat);
 l.setLongitude(lon);

但它崩溃了.任何不同的想法?

解决方法

只需使用新位置创建一个新位置(“reverseGeocoded”);
像这样
GeoPoint newCurrent = new GeoPoint(59529200,18071400);
        Location current = new Location("reverseGeocoded");
        current.setLatitude(newCurrent.getLatitudeE6() / 1e6);
        current.setLongitude(newCurrent.getLongitudeE6() / 1e6);
        current.setAccuracy(3333);
        current.setBearing(333);
原文链接:https://www.f2er.com/android/317116.html

猜你在找的Android相关文章