2

当我包含以下代码时,不会出现任何标记,并且控制台中的错误是:

未捕获的 TypeError:this.callInitHooks 不是 pointToLayer 的函数。

如果您知道任何解决方案,请分享。

var map = L.map('map', {
            center: [53.423933, -7.94069], 
            zoom: 7,
            layers: [grayscale]
        });

var url = "howdy.json";

var geojsonMarkerOptions = L.icon({
            iconUrl: 'howdy.png',
            iconSize:     [16, 28], 
            iconAnchor:   [8, 18], 
            popupAnchor:  [-3, -13] 
        });

function forEachFeature(feature, layer) {

        var popupContent = 
        feature.properties.Cabin+
        feature.properties.Crew + 
        feature.properties.Mobile;

        if (feature.properties && feature.properties.popupContent) {
            popupContent += feature.properties.popupContent;
        }
            layer.bindPopup(popupContent);
        };

      var howdy = L.geoJSON(null, {
        onEachFeature: forEachFeature, 
        pointToLayer: function (feature, latlng) {
            return L.Marker(latlng, geojsonMarkerOptions);
        }
  });

$.getJSON(url, function(data) {
        Shelter.addData(data);
});

Shelter.addTo(map);
4

1 回答 1

1

该错误很可能是由您的行引起的:

return L.Marker(latlng, geojsonMarkerOptions);

...您尝试在没有触发实例化的 JavaScript 关键字的情况下实例化调用L.Marker 类构造函数的 Leaflet Marker。new

请注意与 Leaflet 提供的工厂 L.marker(第一个小写字母m)的区别,它只是new L.Marker.

于 2018-05-19T00:45:09.757 回答