私のアンドロイドアプリケーションでGoogleマップにロケーションフォームのfirebaseデータベースを更新しようとしています。私はfirebaseのonDataChangeメソッドを使用しています。私の問題は、高度と経度の場所がfirebaseデータベースで変更されても、私はまだGoogleマップ上の場所を更新できないということです。以下は私のMapsActivity.javaクラスのコードです。firebaseを使用してGoogleマップの場所を更新できません
import android.support.v4.app.FragmentActivity;
import android.os.Bundle;
import android.util.Log;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.OnMapReadyCallback;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.MarkerOptions;
import com.google.firebase.database.DataSnapshot;
import com.google.firebase.database.DatabaseError;
import com.google.firebase.database.DatabaseReference;
import com.google.firebase.database.FirebaseDatabase;
import com.google.firebase.database.ValueEventListener;
public class MapsActivity extends FragmentActivity implements OnMapReadyCallback {
private GoogleMap mMap;
String value;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_maps);
// Obtain the SupportMapFragment and get notified when the map is ready to be used.
SupportMapFragment mapFragment = (SupportMapFragment) getSupportFragmentManager()
.findFragmentById(R.id.map);
mapFragment.getMapAsync(this);
FirebaseDatabase database = FirebaseDatabase.getInstance();
DatabaseReference myRef = database.getReference("Location");
// myRef.setValue("Hello, World!");
myRef.addValueEventListener(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
value = dataSnapshot.getValue(String.class);
String [] separated = value.split(",");
String latiPos= separated[0].trim();
String longiPos =separated[1].trim();
String TAG ="VAL";
double dLat = Double.parseDouble(latiPos);
double dLong = Double.parseDouble(longiPos);
// Add a marker in Sydney and move the camera
LatLng sydney = new LatLng(dLat, dLong);
mMap.addMarker(new MarkerOptions().position(sydney).title(latiPos+" "+longiPos));
}
@Override
public void onCancelled(DatabaseError databaseError) {
}
});
}
/**
* Manipulates the map once available.
* This callback is triggered when the map is ready to be used.
* This is where we can add markers or lines, add listeners or move the camera. In this case,
* we just add a marker near Sydney, Australia.
* If Google Play services is not installed on the device, the user will be prompted to install
* it inside the SupportMapFragment. This method will only be triggered once the user has
* installed Google Play services and returned to the app.
*/
@Override
public void onMapReady(GoogleMap googleMap) {
mMap = googleMap;
// Add a marker in Sydney and move the camera
// LatLng sydney = new LatLng(-34, 151);
// mMap.addMarker(new MarkerOptions().position(sydney).title(value));
//mMap.moveCamera(CameraUpdateFactory.newLatLng(sydney));
}
}
を削除してくださいあなたは 'onDataChange'が呼び出されていることを確認して、正しく緯度/経度の値を解析するということがありますか?おそらくあなたの問題には関係しませんが、 'dataSnapshot.getValue()'をJavaクラスのlat/long値と一緒に使うことをお勧めします... 'gson'を使ってjson文字列から逆直列化します。 db内でのデータ構造の説明)。 –
はい、ログに値を出力して値を確認しました。 –
もう1つの可能性のある問題は、 'mMap'が利用可能なタイミングの周りにある可能性があります(つまり、' onDataChange'コールバックの後で 'onMapReady'が起きます)...もし起こった場合はNPEを取得するべきです...いずれにしても、 'mMap'が設定されるまでfirebaseクエリを実行します。 –