I'm having problems using geocoder and returning correct lat / lang coordinates.
The controller address is returning correct geo location, but when I'm using the character ø in the address, I'm gettin som weird coordinates.
Here is my code:
$controller = "Skovveien+7+0257+oslo+norway";
// base = Strømmen Storsenter, Støperiveien 5, 2010 Strømmen, Norway
$t1 = htmlentities("Strømmen+Storsenter+2010+strømmen+norway", ENT_QUOTES, 'UTF-8');
$t2 = htmlentities("Støperiveien+5+2010+strømmen+norway", ENT_QUOTES, 'UTF-8');
$adr = htmlentities($controller, ENT_QUOTES, 'UTF-8');
$res = getGeoLocation($adr);
echo '<p>Controll<br/> Lat: '.$res['lat'].' Lng: '.$res['lng']. '<p/>';
$adr = htmlentities($t1, ENT_QUOTES, 'UTF-8');
$res = getGeoLocation($adr);
echo '<p>Shopping mall<br/> Lat: '.$res['lat'].' Lng: '.$res['lng']. '<p/>';
$adr = htmlentities($t2, ENT_QUOTES, 'UTF-8');
$res = getGeoLocation($adr);
echo '<p>Adresse + post code<br/> Lat: '.$res['lat'].' Lng: '.$res['lng']. '<p/>';
public function getGeoLocation($adr) {
// Decode special chars
$adr = html_entity_decode($adr, ENT_QUOTES, 'UTF-8');
$url = "http://maps.google.com/maps/api/geocode/json?address=$adr&sensor=false";
$jsonData = file_get_contents($url);
$geocode = json_decode($jsonData);
if($geocode->status == 'OK') {
$geocode = $geocode->results[0];
$res['lat'] = $geocode->geometry->location->lat;
$res['lng'] = $geocode->geometry->location->lng;
return $res;
} else {
return false;
}
}
I know it seems a bit pointless first using htmlentities, then using html_entity_decode in the function. But if I don't, Google returns ZERO_RESULT.
Can anyone help me with correct code for fetching lat/lang address for street names with international characters?
htmlentities()stuff. 2. What character encoding is your PHP file in? If it's UTF-8, it should work - I would try that first – Pekka Nov 25 '11 at 10:53html_entity_decode- Still no change. 2. It's UTF-8. But "in real life" addresses are retrieved from DB and the tables are inDEFAULT CHARSET=utf8 COLLATE=utf8_danish_ci. – Steven Nov 25 '11 at 10:58