2

我正在通过 JSON 提取我的标记数据。当我开发我的本地副本时,我将它放在一个 JS 文件中,然后使用它调用它

<script src="assets/js/locations.js"></script>

我现在将站点移动到 CMS(ExpressionEngine)上,因为标记数据是动态的,所以我有一个 JS 模板,它现在保存 JSON 数据。

我现在必须将文件包含为(注意没有文件扩展名)

<script src="http://domain.com/map/locations"></script>

这是我拥有的 JSON 示例。

var locations = [

    [2, 51.39006, -0.02976, 'telecommunications', 'Test 2', '<div><img src="http://localhost/map/assets/graphics/info_window/default.jpg" alt="Test 2" width="105" height="70" style="float:right;"> <p>fdgj fdh uhfj bfd nibjdfjb ndfjn fd vfn vbjdc&nbsp; ifs n ei klmvf.cx fi fskn d</p></div>', '<a href="http://www.yahoo.com" target="_blank">Read more</a>' ],   
    [1, 51.51400, -0.12002, 'transport', 'Test map marker', '<div><img src="{image:url:thumb}" alt="Test map marker" width="{image:width:thumb}" height="{image:height:thumb}" style="float:right;"> <p>eubnglrsk nekfldb jndklvcbv jdnfhl kvbmd klbndvl kbjn dkbnm lkd nbmfljeb ygdjfjn</p></div>', '<a href="http://www.google.com" target="_blank">Read more</a>' ]  

];

这是地图的标记循环

var markers = [];

    // Looping through the JSON data
    for (var i = 0; i < locations.length; i++) {

        // Creating a marker and putting it on the map
        var marker = new google.maps.Marker({
            position: new google.maps.LatLng(locations[i][1], locations[i][2]),
            map: map,
            title: locations[i][4],
            icon: iconSrc[locations[i][3]]
        });
        markers.push(marker);


        google.maps.event.addListener(marker, 'click', (function(marker, i) {
            return function() {
                infoWindow.setContent("<div class='cont_box' id='" + locations[i][0] + "'>" + "<h2>" +locations[i][4] + "</h2>" + "<div class='cont'>" + locations[i][5] + "</div><div style='clear:both;'></div><div class='link'>" + locations[i][6] + "</div></div>");
                infoWindow.open(map, marker);
            }
        })(marker, i));

    }// END for loop

显然,当我引用由 CMS 呈现的 JSON 数据时,我得到的错误是 ::

ReferenceError:未定义位置

该 URL 是有效的,只是它似乎不像我使用 JS 文件时那样被拉入。

我不知道在地图 JS 代码本身中调用文件是否会更好。

关于如何完成这项工作的任何建议都会很棒

4

2 回答 2

0

确保在您的 HTML 脚本中,您在获取创建地图的脚本之前获取“locations.js”脚本。使用 firebug 或 chrome 控制台,确保浏览器正确加载了这两个脚本。

查看加载这些脚本的 html 片段会很有帮助。

另外,你的意思是写:

<script src="http://domain.com/map/locations.js"></script>

上面而不是:

<script src="http://domain.com/map/locations"></script>
于 2013-02-06T17:42:35.707 回答
0

我有2个想法。

  1. 在你的脚本标签中声明类型(你知道你的整个页面是否是 html5 吗?):
<script type="text/javascript" src="http://domain.com/map/locations"></script>

我的另一个想法是在代码中加载您的数据:

var xhr = new XMLHttpRequest();
xhr.open('GET', 'http://domain.com/map/locations', true);
xhr.onload = function() {load you markers here}
};
xhr.send();
于 2013-02-06T22:01:13.300 回答