6

我正在尝试使用来自 Json 响应的数据在谷歌地图上绘制标记。我整天都在 Stack Overflow 上寻找答案,但没有找到适合我的解决方案。

我猜这与我提取 Lat & Lng 的方式有关,但我无法理解它。下面是我的代码和 Json,Json 来自 API。

我的代码中的错误在哪里?

脚本

<script>   
  function initialize() {
              var myOptions = {
                  zoom: 4,
                  center: new google.maps.LatLng(34.397, 150.644),
                  mapTypeId: google.maps.MapTypeId.ROADMAP
              };

              map = new google.maps.Map(document.getElementById("map"), myOptions);
              };

  function getLocations() {

      $.getJSON("URL", function (json) {

          $.each(json["resultsPage"]["results"]["event"], function(i, entry){
              addMarker(entry.location.lat,entry.location.lng);
          });
      });
  }

  function addMarker(lat,lng) {
          marker = new google.maps.Marker({
          position: new google.maps.LatLng(lat,lng),
          map: map,
          });
          markersArray.push(marker);
  }
  </script>

json响应

被告知使用以下代码请求 Json 数据。如果我在最后留下问号,当我通过http://jsonlint.com运行它时会收到一条无效消息,因为 Json 的开头有一个问号。把它拿出来似乎可以解决问题,但我不是 100% 确定这样可以吗?

    $.getJSON("http://api.songkick.com/api/3.0/events.json?location=clientip&apikey={your_api_key}&jsoncallback=?",
    function(data){
    // data is JSON response object
    });

如果我在最后留下问号,当我通过http://jsonlint.com运行它时会收到一条无效消息,因为 Json 的开头有一个问号。把它拿出来似乎可以解决问题,但我不是 100% 确定这样可以吗?

当我在调试器中查看代码时,我得到“SyntaxError: Unexpected token ':'”,但这个响应来自 API,所以我不确定我能做些什么?

    {
    "resultsPage": {
    "status": "ok",
    "results": {
        "event": [
            {
                "type": "Concert",
                "status": "ok",
                "performance": [
                    {
                        "artist": {
                            "displayName": "Arcade Fire",
                            "uri": "http://www.songkick.com/artists/66758-arcade-fire?utm_source=16289&utm_medium=partner",
                            "identifier": [
                                {
                                    "mbid": "52074ba6-e495-4ef3-9bb4-0703888a9f68",
                                    "href": "http://api.songkick.com/api/3.0/artists/mbid:52074ba6-e495-4ef3-9bb4-0703888a9f68.json"
                                }
                            ],
                            "id": 66758
                        },
                        "billingIndex": 1,
                        "billing": "headline",
                        "displayName": "Arcade Fire",
                        "id": 29913729
                    },
                    {
                        "artist": {
                            "displayName": "Doody and Kami",
                            "uri": "http://www.songkick.com/artists/6334389-doody-and-kami?utm_source=16289&utm_medium=partner",
                            "identifier": [],
                            "id": 6334389
                        },
                        "billingIndex": 2,
                        "billing": "support",
                        "displayName": "Doody and Kami",
                        "id": 29913734
                    },
                    {
                        "artist": {
                            "displayName": "Leah Gordon",
                            "uri": "http://www.songkick.com/artists/6334394-leah-gordon?utm_source=16289&utm_medium=partner",
                            "identifier": [],
                            "id": 6334394
                        },
                        "billingIndex": 3,
                        "billing": "support",
                        "displayName": "Leah Gordon",
                        "id": 29913739
                    }
                ],
                "venue": {
                    "metroArea": {
                        "country": {
                            "displayName": "Canada"
                        },
                        "state": {
                            "displayName": "QC"
                        },
                        "displayName": "Montreal",
                        "uri": "http://www.songkick.com/metro_areas/27377-canada-montreal?utm_source=16289&utm_medium=partner",
                        "id": 27377
                    },
                    "lat": 45.5014288,
                    "displayName": "Phi Center",
                    "lng": -73.5564459,
                    "uri": "http://www.songkick.com/venues/1973969-phi-center?utm_source=16289&utm_medium=partner",
                    "id": 1973969
                },
                "popularity": 0,
                "location": {
                    "lat": 45.5014288,
                    "lng": -73.5564459,
                    "city": "Montreal, QC, Canada"
                },
                "start": {
                    "time": null,
                    "date": "2013-02-23",
                    "datetime": null
                },
                "displayName": "Arcade Fire with Doody and Kami and Leah Gordon at Phi Center (February 23, 2013)",
                "uri": "http://www.songkick.com/concerts/15215934-arcade-fire-at-phi-center?utm_source=16289&utm_medium=partner",
                "id": 15215934
            }
        ]
    },
    "perPage": 50,
    "page": 1,
    "totalEntries": 1
    }
    }  

任何帮助将不胜感激。谢谢

更新

4

3 回答 3

6

能够重现您的错误。

您正在使用的 API 不支持回调。您需要创建一个代理,并且必须从您的代码中访问代理,您的代理将依次调用 api。

这是代码

索引.html

        function getLocations() {
            $.ajax({
                type: "GET",
                url: "http://172.20.6.114/ontrack/data.php?callback=?",
                dataType: "jsonp",
                success: function(json){
                    $.each(json["resultsPage"]["results"]["event"], function(i, entry){
                        PlotMarker(entry.location.lat, entry.location.lng);
                    });
                },
                error: function(err){
                    console.log(err);
                }
            });
        }

        function PlotMarker(lat, lon){
            var marker = new google.maps.Marker({
                position: new google.maps.LatLng(lat, lon),
                map: gmap,
                draggable: false,
                animation: google.maps.Animation.DROP
            });
            markerLocations.push(marker);
        }

data.php 的代码

<?
$ch = curl_init();

curl_setopt($ch, CURLOPT_URL,"http://api.songkick.com/api/3.0/events.json?location=clientip&apikey={your_api_key}");

// receive server response ...
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$server_output = curl_exec($ch);

curl_close($ch);

echo $_GET['callback'] . '(' . $server_output . ');';
?>

然后它就会出现。

于 2013-02-27T10:56:42.937 回答
2

json的无效,"resultsPage:" {应该是"resultsPage" : {,冒号在双引号内,您可以json使用jsonlint.com验证您的。这是一个使用在控制台中打印的有效(已编辑)的示例。jsonlat, lng

来自的无效 json 错误jsonlint.com

在此处输入图像描述

更新:你也可以试试这个(检查)

function myCallBack(data){
    console.log(data);
}
<script type="text/javascript" src="http://api.songkick.com/api/3.0/events.json?location=clientip&apikey={your_api_key}&jsoncallback=myCallBack"></script>
于 2013-02-17T23:42:27.930 回答
0

可以&jsoncallback=? 安全删除

以下是我对此的看法:

如果您使用以下代码:

$.getJSON("http://api.songkick.com/api/3.0/events.json?location=clientip&apikey={your_api_key}&jsoncallback=?",
    function(data){
    // data is JSON response object
    });

然后,您不需要(可能)json 回调,因为您已经在逗号之后使用了一个回调(getJSON函数的第二个参数)。

因此,您可以简单地从您的 URL中删除&jsoncallback=?并使其http://api.songkick.com/api/3.0/events.json?location=clientip&apikey={your_api_key}

这是发生了什么 -

-- 为了方便 JSONP(和跨域 AJAX 请求),您正在向callbackURL 发送一个函数

-- 服务器然后读取jsoncallback=XYZ并返回包装在 XYZ函数调用中的数据

-- 这样您就可以XYZ在 JavaScript 中定义函数,如下所示:

function XYZ(jsonDATA) {
    // ... And do things Here. JSONP is cool !    
}

-- 但是由于你已经有一个函数回调getJSON函数,你不需要&jsoncallback=something它,因此可以删除它

PS:作为上述证明,尝试http://api.songkick.com/api/3.0/events.json?location=clientip&apikey={your_api_key}&jsoncallback=MyFunction在浏览器中点击 URL,您将在一行中收到以下响应:

MyFunction({
    "resultsPage": {
        "status": "error",
        "error": {
            "message": "Invalid or missing apikey"
        }
    }
})

更新:
为了解决您在评论中的 JavaScript 错误——
即使响应是有效的JSON,您也将响应用作JavaScript代码,这是无效的

JavaScript如果你这样做, 这将是一个有效的代码:

var myData = {
    "resultsPage": {
        "status": "error",
        "error": {
            "message": "Invalid or missing apikey"
        }
    }
}

但我的意思是,你为什么要用这个 JSON 数据检查控制台错误?控制台适用于JavaScript

于 2013-02-26T08:52:10.800 回答