1

mapViewXML ファイルから座標をダウンロードして を作成しています。私はすでに座標を解析したいと思っていますが、私はそれらをハードコーディングしていることを知っています.2つの問題がありGeoPointsます。2 つ目の問題は、ポリゴンを分離できないことです。ポリゴン ビューごとに 5 つの座標があります。問題は、ポリゴンが 1 つのように接続されていることです。誰かが私が間違っていることを教えてもらえますか、それとも他に何かする必要がありますか. 以下は、私が現在持っているものです。

元の質問を更新しました。Laire の questionを使用して、xml から配列部分を動作させました。そのため、すべての座標が xml ファイルからマップにダウンロードされますが、問題はそれらが 1 つの座標セットであるかのように接続されていることです。を参照してください多角形を使った地図

これが私のmainActivity.Javaで非常に公平なコードです

public class MapViewActivity extends MapActivity {
ArrayList<HashMap<String, Object>> boslst;
MapView mapView; 
MapController mapcontrol;
GeoPoint p;
Polygon polygon;

private static final class LatLonPoints extends GeoPoint { 
    public LatLonPoints(double latitude, double longitude) { 
        super((int) (latitude * 1E6), (int) (longitude * 1E6)); 
    } 
} 
public static BigDecimal round(float d, int decimalPlace) {
    BigDecimal bd = new BigDecimal(Float.toString(d));
    bd = bd.setScale(decimalPlace, BigDecimal.ROUND_HALF_UP);      
    return bd;

}  
@Override
protected boolean isRouteDisplayed() {
    return false;
}

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);



    String coordinates[] = {"35.20418", "-89.86862"};
    double lat = Double.parseDouble(coordinates[0]);
    double lng = Double.parseDouble(coordinates[1]);

    p = new GeoPoint(
            (int) (lat * 1E6), 
            (int) (lng * 1E6));

    MapView mapView = (MapView) findViewById(R.id.mapview);
    mapcontrol = mapView.getController();
    mapcontrol.animateTo(p);
    mapcontrol.setZoom(10);
    mapView.setBuiltInZoomControls(true);

    ArrayList<GeoPoint> points = new ArrayList<GeoPoint>();
    try {

        URL url = new URL(
                "my url");
        DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
        DocumentBuilder db = dbf.newDocumentBuilder();
        Document doc = db.parse(new InputSource(url.openStream()));
        doc.getDocumentElement().normalize();

        NodeList nodeList = doc.getElementsByTagName("Section");


        for (int i = 0; i < nodeList.getLength(); i++) {

            Node node = nodeList.item(i);

            Element locElement = (Element) node;
            NodeList nameList = locElement.getElementsByTagName("coords");


            int locationCount = nameList.getLength();

        for (int j = 0; j < nameList.getLength(); j++) {

            Node nodel = nameList.item(j);

            Element fstElement = (Element) nodel;
            NodeList nameL = fstElement.getElementsByTagName("coords");
            Element nameE = (Element) nameL.item(0);
            nameL = nameE.getChildNodes();

            String latit = ((Node) nameL.item(0)).getNodeValue();
            String[] latt = latit.split(",");
            BigDecimal latitude = round(Float.parseFloat(latt[0]),5);
            BigDecimal longitude = round(Float.parseFloat(latt[1]),5);


            double Lat = latitude.doubleValue();
            double Long =  longitude.doubleValue();


            points.add(new LatLonPoints(Lat,Long));
            polygon = new Polygon(points);
      }
            polygon = new Polygon(points);

        }
    }catch (Exception e) {
        Log.e("APP","Failed", e);
    }        

    mapView.getOverlays().clear();
    mapView.getOverlays().add(polygon);
    mapView.invalidate();
}

Polygon.java

public class Polygon extends Overlay {
ArrayList<GeoPoint> geoPoints;

public Polygon(ArrayList<GeoPoint> points){
    geoPoints = points;
}

@Override
public void draw(Canvas canvas, MapView mapView, boolean shadow){
    //Set the color and style
    Paint paint = new Paint();
    paint.setColor(Color.parseColor("#88ff0000"));
    paint.setAlpha(50);
    paint.setStyle(Paint.Style.STROKE);

    //Create path and add points
    Path path = new Path();
    Point firstPoint = new Point();
    mapView.getProjection().toPixels(geoPoints.get(0), firstPoint);
    path.moveTo(firstPoint.x, firstPoint.y);

    for(int i = 1; i < geoPoints.size(); ++i){
        Point nextPoint = new Point();
        mapView.getProjection().toPixels(geoPoints.get(i), nextPoint);
        path.lineTo(nextPoint.x, nextPoint.y);
    }

    //Close polygon
    path.lineTo(firstPoint.x, firstPoint.y);
    path.setLastPoint(firstPoint.x, firstPoint.y);
    canvas.drawPath(path, paint);
    super.draw(canvas, mapView, shadow);

 }
 }

それで私の質問は、ポリゴンを一度に1つずつ構築し、1つとして機能させないようにするにはどうすればよいですか?

4

1 に答える 1

0

これを変更する必要があると思います:

//Close polygon
path.lineTo(firstPoint.x, firstPoint.y);
path.setLastPoint(firstPoint.x, firstPoint.y);
canvas.drawPath(path, paint);
super.draw(canvas, mapView, shadow);

これに:

    //Close polygon
    path.lineTo(firstPoint.x, firstPoint.y);
    path.setLastPoint(firstPoint.x, firstPoint.y);
    canvas.drawPath(path, paint);
    path.close();
    super.draw(canvas, mapView, shadow);

最後にパスを閉じると、元のポイントに戻ります。

于 2013-01-10T02:35:10.383 に答える