I need to pass an instance of the LatLng class to another intent. How should I do it? Here\'s the code.
LatLng fromPosition = new LatLng(23.4555453556, 11.14
We have another alternative to get LatLng using intent in the activity
intent.putExtra(Constants.LOCATION, latLng); LatLng latLng = getIntent().getParcelableExtra(Constants.LOCATION);