Also works fine for me, thx magnus :up:
@bugriders:
Some posts above was mentioned that the street-data is verified by yahoo.com, neither uk- or ge-adresses are covered with this solution. magnus wrote that the googlemap-API doesnt give back an error code.
Question: Does anybody have a yahoo-call for verifying german adresses?
Code:
http://api.local.yahoo.com/MapsService/V1/geocode?appid=YahooDemo&location=rhaland+5+bottrop
responses "The street could not be found. Here is the center of the city."
When i directly call googlemap-API with the same street-adress, i get back code 200:
Code:
−
<kml>
−
<Response>
<name>Rhaland 5 Bottrop</name>
−
<Status>
<code>200</code>
<request>geocode</request>
</Status>
−
<Placemark id="p1">
<address>Rhaland 5, 46242 Bottrop, Germany</address>
−
<AddressDetails Accuracy="8">
−
<Country>
<CountryNameCode>DE</CountryNameCode>
−
<AdministrativeArea>
<AdministrativeAreaName>Nordrhein-Westfalen</AdministrativeAreaName>
−
<SubAdministrativeArea>
<SubAdministrativeAreaName>Bottrop</SubAdministrativeAreaName>
−
<Locality>
<LocalityName>Bottrop</LocalityName>
−
<Thoroughfare>
<ThoroughfareName>Rhaland 5</ThoroughfareName>
</Thoroughfare>
−
<PostalCode>
<PostalCodeNumber>46242</PostalCodeNumber>
</PostalCode>
</Locality>
</SubAdministrativeArea>
</AdministrativeArea>
</Country>
</AddressDetails>
−
<Point>
<coordinates>6.913915,51.502829,0</coordinates>
</Point>
</Placemark>
</Response>
</kml>
By mistyping the street (Rxaland instead of Rhaland) i get back code 602 which seems to be an error code:
Code:
−
<kml>
−
<Response>
<name>Rhxaland 5 Bottrop</name>
−
<Status>
<code>602</code>
<request>geocode</request>
</Status>
</Response>
</kml>
Anybody an idea ???
Thx in advance