Here is a screenshot from an app that I have in podio. I am trying to set the address field via a php script. The following is how I set my fields.
$field->values = array(
'value' => $latLong['address'],
'lat' => $latLong['latitude'],
'lng' => $latLong['longitude']
);
From the item activity feed is shows that the address was updated. But when you look at the actual item, the address location is blank, but it has the right map location. Any ideas on what is causing this issue?
Try setting value a bit differently :)
addr_full = { 'street_address' => 'some street address here',
'postal_code' => 'some zip code, eg: 90210',
'city' => 'Beverly Hills',
'state' => 'CA',
'country' => 'United States' }
Sorry, code is from Ruby but it shouldn't be hard to convert it to php syntax.