PlaceResult object returns latitude/longitude as object, not sure how to get them individually
You can use like this.
var latitude = place.geometry.location.lat();
var longitude = place.geometry.location.lng();
You can use:
var LatLng = place.geometry.location.toJSON();