1
      public void onLoad() {

// Opening the sharedPreferences object
preferences = getSharedPreferences("location", 0);

// Getting number of locations already stored
routeType = preferences.getInt("routeType", 0);

// Getting stored zoom level if exists else return 0
String zoom = preferences.getString("zoom", "0");

// If locations are already saved
if (routeType != 0) {

    String lat = "sourceAdd";
    String lng = "destinationAdd";

    // Iterating through all the locations stored
    for (int i = 0; i < routeType; i++) {

        // Getting the latitude of the i-th location
        lat = preferences.getString("lat" + i, "0");

        // Getting the longitude of the i-th location
        lng = preferences.getString("lng" + i, "0");

        // Drawing marker on the map
        drawMarker(new LatLng(Double.parseDouble(lat),
                Double.parseDouble(lng)));
    }
    // Moving CameraPosition to last clicked position
    map.moveCamera(CameraUpdateFactory.newLatLng(new LatLng(Double
            .parseDouble(lat), Double.parseDouble(lng))));

    // Setting the zoom level in the map on last position is clicked
    map.animateCamera(CameraUpdateFactory.zoomTo(Float.parseFloat(zoom)));
}

}

public void drawMarker(LatLng ポイント) {

    // Creating an instance of MarkerOptions
    MarkerOptions markerOptions = new MarkerOptions();

    // Setting latitude and longitude for the marker
    markerOptions.position(point);

    // Adding marker on the Google Map

    map.addMarker(new MarkerOptions()
            // map.addMarker(markerOptions);
            .title("Marker")
            .snippet("Marker Yo Yo")
            .icon(BitmapDescriptorFactory
                    .defaultMarker(BitmapDescriptorFactory.HUE_AZURE))
            .position(point)

    );

}

やあ、

出発地と目的地などの地図に 2 つのマーカーを追加する必要があります。上記のコードを使用し、アプリケーションを実行すると、出発地と目的地の間のルートを示す黒い線が表示されますが、地図にマーカーが表示されません。 :(誰かが私を助けることができますか?

4

1 に答える 1

2

このコードを試してください

public void drawMarker(LatLng source_point,LatLong destination_point) {

    // Creating an instance of MarkerOptions
    MarkerOptions markerOptions1 = new MarkerOptions();
    markerOptions1.title("Marker");
    markerOptions1.snippet("Marker Yo Yo");
    markerOptions1.icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_AZURE));
    markerOptions1.position(source_point);

    MarkerOptions markerOptions2 = new MarkerOptions();
    markerOptions2.title("Marker2");
    markerOptions2.snippet("Marker Xo Xo");
    markerOptions2.icon(BitmapDescriptorFactory.defaultMarker(BitmapDescriptorFactory.HUE_AZURE));
    markerOptions2.position(destination_point);

    // Adding marker on the Google Map

    map.addMarker(markerOptions1);
    map.addMarker(markerOptions2);
}
于 2013-09-05T06:43:23.383 に答える