Привет, я создал mashup, где пользователь может ввести местоположение. Когда с помощью IE7 почти все местоположение может быть геокодировано, но не с другими браузерами ...... как вы думаете, проблема здесь или есть исправление для этого? Я использую геокодирование JavaScript, как:
function addToMap(response) {
var x="Fa, France";
// Retrieve the object
if (x.length > 0 && x != "") {
if (!response || response.Status.code != 200) {
alert("Please enter a valid location.I cannot geocode it!");
}
else
{
place = response.Placemark[0];
// Retrieve the latitude and longitude
point = new GLatLng(place.Point.coordinates[1],
place.Point.coordinates[0]);
// Center the map on this point
map.setCenter(point, 4);}}
... больше кода