こんにちは私はユーザーが場所を入力できるマッシュアップを作成しました。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);}}
...詳細コード