Showing posts with label regular expression. Show all posts
Showing posts with label regular expression. Show all posts

Monday, March 17, 2008

Google Map values

Google map address provides data as follows:
$loc_id = (lat, log);

$loc_id
= '(47.718691, -122.28464)';
preg_match_all('/-?[0-9]+(?:\.[0-9]+)?/' , $loc_id, $matches);
$a = $matches[0][0];
$b = $matches[0][1];

$a and $b provides value of latitude and longitude.