Good afternoon, everyone,
I am trying to figure out a way to populate the user "Location" information from our LDAP entry.

Below are my LDAP mappings:
'streetaddress' => array('text', 'textfield', t('Address'), 64, 64),
'l' => array('text', 'textfield', t('City'), 64, 64, t('Your city or other location')),
'st' => array('text', 'textfield', t('State'), 4, 2, t('Your state or province')),
'postalCode' => array('text', 'textfield', t('Postal Code'), 7, 5, t('Your Zip or Postal code')),

How do I go about mapping these into the location.module? This would make some interesting content on the Intranet page I am working on...

Thank you :)