Google отображает пользовательский кластер с html вместо изображения - PullRequest
0 голосов
/ 17 декабря 2018

Я хочу создать маркерный кластер, отображаемый с использованием html вместо изображения.

var markerCluster = new MarkerClusterer(map, markers,
        {imagePath: 'https://developers.google.com/maps/documentation/javascript/examples/markerclusterer/m'});

У меня есть одна ссылка для этого, но это для leafletjs. Мне нужно то же самое для API карт Google.

var markerCluster = L.markerClusterGroup({
            showCoverageOnHover: false,
            iconCreateFunction: function (cluster) {
                return L.divIcon({ html: '<div><span>' + cluster.getChildCount() + '</span></div>', 
                className: 'marker-cluster-custom marker-cluster-grey', 
                iconSize: [50, 50],
                iconAnchor: [25, 25]});
            }
        });

Заранее спасибо.

...