Ernest Marples
atomicjeep - August 18, 2009 - 12:19
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'];
}
}
