将地址转换为地理编码,只返回“未定义”,为什么?
这就是我所拥有的:
我正在使用 Google 地图v3,地理编码。
我做了一个函数 showAddress( param )。这需要参数,检查它是否是一个地址,如果是,则返回cords,如果不是,则返回0。
如果你检查链接,你可以看到我已经为此编写了代码,但我只是收到一条警报“未定义” ”。
这里有什么问题吗?
This is what i have:
Im using Google maps v3, Geocode.
I made a function showAddress( param ). This takes the param, check if its a address if it is then it returns cords and if its not it returns 0.
If you check the link, you can see I have written the code for this, but I just get a alert "undefined".
What is wrong here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
呵呵,我终于明白这个案子了。问题不在于谷歌地图。
您不是从
showAddress
返回结果,而是从回调返回结果。所以,它实际上无处可去。您还需要使用回调来显示结果。就像这样:您可以在这里检查它的工作情况: http://jsfiddle.net/BgDQc/2/
Oh, I've finally realised the case. Problem is not in Google Maps.
You are returning result not from
showAddress
but from callback. So, it's actually goes nowhere. You need to display your result using callback also. Just like this:You can check it working here: http://jsfiddle.net/BgDQc/2/