Posted by atomicjeep on August 18, 2009 at 12:19pm
Provides an wrapper API which lets other modules query http://ernestmarples.com to convert a UK Postcode to LAT LON co-ordinates.
Use in your module or hook up to a CCK computed field like so:
This code check if the node has a postcode field if so then send it onto Mr Marples and then store the the LAT or LON in the computed field. Then use that computed field for some mapping magic :)
if (!$node->nid) {
node_save($node);
}
if (!$node->field_lac_postcode['0']['value']) {
}else {
if (module_exists('ernest_marples')){
$result = get_ernest_marples($node->field_lac_postcode['0']['value']);
$node_field[0]['value'] = $result['lat'];
}
}Project Information
- Module categories: Third-party Integration
- Maintenance status: Unknown
- Development status: Unknown
- Reported installs: 4 sites currently report using this module. View usage statistics.
- Last modified: August 18, 2009