我是 android 编程新手,我尝试在 google maps v2 android 上绘制折线。坐标(超过 100 个)存储在 asstes 目录中的两个 txt 文件中(一个 txt 用于 lat,一个用于 lng)。我试图将文件的内容加载到字符串中,但现在我不知道如何将这些转换为折线功能的双倍。Double.parseDouble(contentdlat); 行不通!
txt 的 ar 中的坐标用“,”分隔,看起来像:
dlat.txt = 42.4630,42.4539
dlng.txt = -75.0572,-73.9737
更新:现在我只使用一个文件而不是两个。
coord_short.txt = 42.4630,-75.0572,42.4539,-73.9737
旧代码如下所示:
//Add Polyline
ArrayList<LatLng> all=new ArrayList<LatLng>();
ArrayList<Double> lat1=new ArrayList<Double>();
ArrayList<Double> lon=new ArrayList<Double>();
AssetManager assetManager = getAssets();
// To load dlat text file
InputStream inputdlat;
try {
inputdlat = assetManager.open("dlat.txt");
int sizedlat = inputdlat.available();
byte[] bufferdlat = new byte[sizedlat];
inputdlat.read(bufferdlat);
inputdlat.close();
// byte buffer into a string
String contentdlat = new String(bufferdlat);
Toast.makeText(this, contentdlat, Toast.LENGTH_SHORT).show();
//String[] splitdlat = contentdlat.split(",");
}
catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
// To load dlng text file
InputStream inputdlng;
try {
inputdlng = assetManager.open("dlng.txt");
int sizedlng = inputdlng.available();
byte[] bufferdlng = new byte[sizedlng];
inputdlng.read(bufferdlng);
inputdlng.close();
// byte buffer into a string
String contentdlng = new String(bufferdlng);
Toast.makeText(this, contentdlng, Toast.LENGTH_SHORT).show();
//String[] splitdlng = contentdlng.split(",");
}
catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
double dlat = Double.parseDouble(contentdlat);
double dlat = Double.parseDouble(contentdlng);
//double[] dlat = {42.4630,42.4539};
//double[] dlon = new double[]{-75.0572,-73.9737};
for(double n : dlat){
lat1.add(n);
}
for(double n : dlon){
lon.add(n);
}
for(int a=0;a<lat1.size();a++)
{
LatLng allLatLng= new LatLng(lat1.get(a),lon.get(a));
all.add(allLatLng);
}
Polyline polyline = map.addPolyline(new PolylineOptions()
.addAll(all)
.width(8)
.color(Color.GREEN));
如果有人可以帮助我,那就太好了。
好的,在 Piyush Gupta 的帮助下,我将代码更改为:
AssetManager assetManager = getAssets();
// To load coordinate text with hundreds of coordinates file like
InputStream input;
try {
input = assetManager.open("coord_short.txt");
int size = input.available();
byte[] buffer = new byte[size];
input.read(buffer);
input.close();
// byte buffer into a string
String content = new String(buffer);
String[] separated = content.split(",");
String latString = separated[0];
String longString = separated[1];
double coordlat = Double.parseDouble(latString);
double coordlon = Double.parseDouble(longString);
LatLng coordlocation = new LatLng(coordlat, coordlon);
Polyline polyline = map.addPolyline(new PolylineOptions()
.add(coordlocation)
.width(8)
.color(Color.GREEN));
}
catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
但是现在我的折线没有画在地图上。
现在出了什么问题?