Sorry I'm a novice in this, I need to pass a string from one method to another
The string I try to pass is called (bd_lat)
protected void onCreate(Bundle savedInstanceState) {
String bd_lat = object.getString("latitude");
}
This is the method where I must pass it
@Override
public void onMapReady(GoogleMap googleMap) {
LatLng Bello = new LatLng(PONER ACA STRING bd_lat, -75.5580);
}