JS Maps v3:带有用户个人资料图片的自定义标记

IT技术 javascript google-maps google-maps-api-3 google-maps-markers marker
2021-03-03 02:14:25

自 2 天以来,我一直在努力做一些我认为很容易的事情,在地图上,我必须为每个用户显示一个标记,其中包含用户 FB 个人资料图片。

在此处输入图片说明

我想知道如何得到与此类似的结果?我试过的东西真的很hackish。

  • 我把FB图片作为标记图标
  • 我在标记的标签上放了一个 CSS 类
  • 我找到兄弟添加这个边框和这个箭头来装饰用户图片

但是当地图上有多个标记时它不起作用。

.marker-labels {
    display: none !important;

    + div  { 
        background-color: $dark-gray; 
        border: 2px solid $dark-gray;
        @include radius(0.2em);
        height: 54px !important;
        width: 54px !important;
        overflow: inherit !important;

       > img {
            height: 50px;
            width: 50px;
        } 

        &:after {
            content: ' ';
            height: 0;
            width: 0;
            border: 6px solid transparent; 
            border-top-color: $dark-gray;
            position: absolute;
            top: 52px;
            left: 19px;
        }
    }
}

全球问题:

感谢您的帮助

1个回答

此答案假设您已经拥有 facebook 个人资料图片的 URI。老实说,感觉有一种更简单的方法,但我找到了一些代码,展示了如何使用自定义 HTML 元素创建自定义标记,然后我从那里开始。从那里可以很容易地创建一个接受图像 URI 作为参数的自定义标记。从原来的开始,我只是添加了一个imageSrc参数,通过将类名附加到新的 div 来将样式移到代码之外。在 html 和 css 方面,我只是将带有传递的图像 URI 的图像附加到 div 中,并添加了一些 CSS 以使其看起来像您拥有的那样。

演示

所以 javascript 代码看起来像这样:

function CustomMarker(latlng, map, imageSrc) { 
    this.latlng_ = latlng;
    this.imageSrc = imageSrc; //added imageSrc
    this.setMap(map);
}

CustomMarker.prototype = new google.maps.OverlayView();

CustomMarker.prototype.draw = function () {
    // Check if the div has been created.
    var div = this.div_;
    if (!div) {
        // Create a overlay text DIV
        div = this.div_ = document.createElement('div');
        // Create the DIV representing our CustomMarker
        div.className = "customMarker" //replaced styles with className

        var img = document.createElement("img");
        img.src = this.imageSrc; //attach passed image uri
        div.appendChild(img);
        google.maps.event.addDomListener(div, "click", function (event) {
            google.maps.event.trigger(me, "click");
        });

        // Then add the overlay to the DOM
        var panes = this.getPanes();
        panes.overlayImage.appendChild(div);
    }

    // Position the overlay 
    var point = this.getProjection().fromLatLngToDivPixel(this.latlng_);
    if (point) {
        div.style.left = point.x + 'px';
        div.style.top = point.y + 'px';
    }
};

CustomMarker.prototype.remove = function () {
    // Check if the overlay was on the map and needs to be removed.
    if (this.div_) {
        this.div_.parentNode.removeChild(this.div_);
        this.div_ = null;
    }
};

CustomMarker.prototype.getPosition = function () {
    return this.latlng_;
};

我想我在这里只添加了一两行。我认为您可以将其添加到您的页面中。有了这个,你就可以像往常一样设置容器的样式,它应该应用于所有自定义标记。您可以添加您认为合适的元素和类来实现您想要的外观。但为了完成起见,我在此处添加了用于演示的样式。

.customMarker {   /* the marker div */
    position:absolute;
    cursor:pointer;
    background:#424242;
    width:100px;
    height:100px;

    /* we'll offset the div so that
       the point passed doesn't end up at
       the upper left corner but at the bottom
       middle. so we'll move it left by width/2 and
       up by height+arrow-height */
    margin-left:-50px;  
    margin-top:-110px;
    border-radius:10px;
    padding:0px;
}
.customMarker:after { //triangle
    content:"";
    position: absolute;
    bottom: -10px;
    left: 40px;
    border-width: 10px 10px 0;
    border-style: solid;
    border-color: #424242 transparent;
    display: block;
    width: 0;
}
.customMarker img { //profile image
    width:90px;
    height:90px;
    margin:5px;
    border-radius:2px;
}

对于演示,我在数组中有一些示例数据,并使用 for 循环将它们放在地图上。

var data = [{
    profileImage: "http://domain.com/image1.jpg",
    pos: [37.77, -122.41],
}, {
    profileImage: "http://domain.com/image2.jpg",
    pos: [37.77, -122.41],
}]

for(var i=0;i<data.length;i++){
   new CustomMarker(
      new google.maps.LatLng(data[i].pos[0],data[i].pos[1]),
      map,
      data[i].profileImage
   )
}

我希望这有帮助。

它是否适用于 MarkerClusterer ( googlegeodevelopers.blogspot.com/2009/04/... )?无论如何,谢谢,我今晚会试试。
2021-04-23 02:14:25
感谢您提供出色的解决方案。干杯!
2021-04-26 02:14:25
如何在 div 单击时打开信息窗口?
2021-05-02 02:14:25
@icl1c 似乎有效,但我使用了标记集群的 v3 版本,而不是该链接中引用的 v2。jsfiddle.net/mfirdaus/DVKEj/7
2021-05-17 02:14:25
在这个例子中,点击事件抛出“ReferenceError: me is not defined”错误。我实际上正在尝试打开信息窗口,但不能。我需要一个解决方案。
2021-05-21 02:14:25