2

私が書いた JavaScript/jQuery コードが Webkit ブラウザー (Chrome と Safari) で完全に動作するのに困惑していますが、Firefox や IE ではまったく動作しません。

私がやっていることは、jQuery を使用して GeoRSS フィードを取り込み、リーフレットを使用して地図上に位置点をプロットすることです。Firefox や IE を使用しているときに、どういうわけかポイントがプロットされませんか? 問題のページは次のとおりです: http://bit.ly/19N0I75

コードは次のとおりです。

var map = L.mapbox.map('map', 'primitive.geography-class').setView([42, 22], 4);

var wordpressIcon = L.icon({
iconUrl: 'http://www.shifting-sands.com/wp-content/themes/shiftingsands/images/icons/wordpress.png',

iconSize:     [18, 18], // size of the icon
shadowSize:   [0, 0], // size of the shadow
iconAnchor:   [9, 9], // point of the icon which will correspond to marker's location
shadowAnchor: [0, 0],  // the same for the shadow
popupAnchor:  [0, 0] // point from which the popup should open relative to the iconAnchor
});

jQuery(document).ready(function($){
$.get("http://shifting-sands.com/feed/", function (data) {
var $xml = $(data);
var $i = 0;
$xml.find("item").each(function () {
    var $this = $(this),
        item = {
            title: $this.find("title").text(),
            linkurl: $this.find("link").text(),
            description: $this.find("description").text(),
            pubDate: $this.find("pubDate").text(),
            latitude: $this.find("lat").text(),
            longitude: $this.find("long").text()
        }

                lat = item.latitude;
                long = item.longitude;
                title = item.title;
                clickurl = item.linkurl;

                //Get the url for the image.
                var htmlString = '<h4><a href="' + clickurl + '" target="_blank">' + title + '</a></h4>';                       
                var contentString = '<div id="content">' + htmlString + '</div>';   

                //Create a new marker position using the Leaflet API.
                var rssmarker = L.marker([lat, long], {icon: wordpressIcon}).addTo(map);

                //Create a new info window using the Google Maps API

                rssmarker.bindPopup(contentString, {closeButton: true});


    $i++;
});
});
});

ありがとう!

4

1 に答える 1

0

lat 値は名前空間 (geo:lat) であるため、 から値を取得できませんfind()。したがって、 error (,)、コンマで区切られた 2 つの空の値。クエリを次のように変更する必要があります。

latitude: $this.find("geo\\:lat").text()

二重のバックスラッシュはコロンをエスケープします。

于 2013-10-18T14:21:09.690 に答える