无法在其他浏览器中进行地理编码
您好,我创建了一个混搭,用户可以在其中输入位置。使用 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);}}
...更多代码
Hi I created a mashup where a user can enter a location.When using IE7 almost all the location can be geocoded but not with other browsers......what do you think is the issue here or is there a fix for this?I use javascript geocoding like:
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);}}
...more code
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 API 的最新版本中,有必要使用数字作为 GLatLng() 的参数。在以前的版本中,您通常可以像您所做的那样将它们保留为 String 对象。
尝试使用 parseFloat(place.Point.coordinates[1]), parseFloat(place.Point.coordinates[0])
我不知道为什么 MSIE7 应该有什么不同,或者为什么你在 Firebug 中没有收到明确的错误消息。也许有些事情你没有告诉我们。
In recent versions of the API it has become necessary to use Numbers as the parameters for GLatLng(). In previous releases you could often get away with leaving them as String objects, as you are doing.
Try using parseFloat(place.Point.coordinates[1]), parseFloat(place.Point.coordinates[0])
I've no idea why MSIE7 should be any different, or why you're not getting a clear error message in Firebug. Perhaps there's something you're not telling us.