谷歌地图与地理编码器的问题

发布于 2024-11-25 12:40:20 字数 598 浏览 0 评论 0原文

重点是指出 JSON 文件中的标记,但如果当前的 json 没有任何 lat 和 lng,它应该计算它,但它不起作用,

//For example when
item.county = 'Orust'
//and 
item.region = 'Bohuslän'

为什么会这样?

if(lat == null)
            {
                geocoder.geocode({ 'address': item.county+', '+item.region}, function(result, status) {
                if (status == google.maps.GeocoderStatus.OK) {
                    if(result[0])
                    {
                        latlng = result[0].geometry.location
                    }
                }
                });

我错过了什么吗?

The point is to point out the markers from a JSON file, but if the current json, dont have any lat and lng it should calculate it, but it dont work

//For example when
item.county = 'Orust'
//and 
item.region = 'Bohuslän'

Why is that?

if(lat == null)
            {
                geocoder.geocode({ 'address': item.county+', '+item.region}, function(result, status) {
                if (status == google.maps.GeocoderStatus.OK) {
                    if(result[0])
                    {
                        latlng = result[0].geometry.location
                    }
                }
                });

Have I missed something?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最后的乘客 2024-12-02 12:40:20

首先检查回调内的情况是否按预期工作。为此,请将以下内容更改

latlng = result[0].geometry.location;

为:(

console.log(result[0].geometry.location);

您也可以将 console.log 添加到 latlng 赋值上方,而不是更改它。实际上,这可能更好。)

如果 JavaScript 控制台中生成的消息看起来像一个 latlng 对象,则问题可能是范围问题 - 换句话说,回调之外的 latlng 不是与里面的latlng相同回调。

如果 JavaScript 控制台中生成的消息看起来不像 latlng 对象,则问题出在回调本身内部。通过将其放在上面最后一个 console.log() 的位置来检查是否获得任何结果:

console.log(result);

如果这些 console.log 命令从未触发且没有任何结果出现在您的 JavaScript 控制台中,则从 geocoder.geocoder() 返回的状态不是 OK,您需要在回调中添加一些错误处理以查看发生了什么。

First check to see if things are working as expected inside the callback. To do that, change this:

latlng = result[0].geometry.location;

To this:

console.log(result[0].geometry.location);

(You can also just add the console.log above the latlng assignment rather than changing it. Actually, that's probably better.)

If the resulting message in your JavaScript console looks like a latlng object, then the problem is likely a scope problem--in other words, latlng outside of the callback is not the same as latlng inside the callback.

If the resulting message in your JavaScript console does not look like a latlng object, then the problem is inside the callback itself. Check to see if you are getting any results at all by putting this where you put the last console.log() above:

console.log(result);

If these console.log commands never fire and nothing appears in your JavaScript console, then the status returned from the geocoder.geocoder() is not OK and you need to add some error handling in the callback to see what's going on.

慢慢从新开始 2024-12-02 12:40:20

对地理编码器的请求异步运行。您无法从外部代码访问回调内部分配的变量。实际上你可以,但它是未定义的。

Request to geocoder runs asynchronously. You cannot access to vriable which is assigned inside the callback from the outside code. Actually you could but it will be undefined.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文