/ Published in: PHP
Expand |
Embed | Plain Text
// ------------------------------------------ // converts a string with a stret address // into a couple of lat, long coordinates. // ------------------------------------------ public function getLatLong($address){ $_result = false; $_coords['lat'] = $_match[1]; $_coords['long'] = $_match[2]; } return $_coords; }
You need to login to post a comment.
