21

如果我的标记在每个结果的 ajax 成功中填充,我如何向我的标记添加标签。

map.gmap('addMarker', { 'position': new google.maps.LatLng(result.latitude, result.longitude) });

我试过这样,但没有成功:

map.gmap('addMarker', { 
    'position': new google.maps.LatLng(result.latitude, result.longitude), 
    'bounds': true,
    'icon': markerIcon,
    'labelContent': 'A',
    'labelAnchor': new google.maps.Point(result.latitude, result.longitude),
    'labelClass': 'labels', // the CSS class for the label
    'labelInBackground': false
});
4

5 回答 5

56

如果您只想在标记下方显示标签,那么您可以扩展 google maps Marker 为标签添加一个 setter 方法,您可以通过像这样扩展 google maps overlayView 来定义标签对象。

<script type="text/javascript">
    var point = { lat: 22.5667, lng: 88.3667 };
    var markerSize = { x: 22, y: 40 };


    google.maps.Marker.prototype.setLabel = function(label){
        this.label = new MarkerLabel({
          map: this.map,
          marker: this,
          text: label
        });
        this.label.bindTo('position', this, 'position');
    };

    var MarkerLabel = function(options) {
        this.setValues(options);
        this.span = document.createElement('span');
        this.span.className = 'map-marker-label';
    };

    MarkerLabel.prototype = $.extend(new google.maps.OverlayView(), {
        onAdd: function() {
            this.getPanes().overlayImage.appendChild(this.span);
            var self = this;
            this.listeners = [
            google.maps.event.addListener(this, 'position_changed', function() { self.draw();    })];
        },
        draw: function() {
            var text = String(this.get('text'));
            var position = this.getProjection().fromLatLngToDivPixel(this.get('position'));
            this.span.innerHTML = text;
            this.span.style.left = (position.x - (markerSize.x / 2)) - (text.length * 3) + 10 + 'px';
            this.span.style.top = (position.y - markerSize.y + 40) + 'px';
        }
    });
    function initialize(){
        var myLatLng = new google.maps.LatLng(point.lat, point.lng);
        var gmap = new google.maps.Map(document.getElementById('map_canvas'), {
            zoom: 5,
            center: myLatLng,
            mapTypeId: google.maps.MapTypeId.ROADMAP
        });
        var myMarker = new google.maps.Marker({
            map: gmap,
            position: myLatLng,
            label: 'Hello World!',
            draggable: true
        });
    }
</script>
<style>
    .map-marker-label{
        position: absolute;
    color: blue;
    font-size: 16px;
    font-weight: bold;
    }
</style>

这将起作用。

于 2014-03-08T18:00:31.070 回答
21

我怀疑标准库是否支持这一点。

但您可以使用 google maps 实用程序库:

http://code.google.com/p/google-maps-utility-library-v3/wiki/Libraries#MarkerWithLabel

var myLatlng = new google.maps.LatLng(-25.363882,131.044922);

var myOptions = {
    zoom: 8,
    center: myLatlng,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  };

map = new google.maps.Map(document.getElementById('map_canvas'), myOptions);

var marker = new MarkerWithLabel({
   position: myLatlng,
   map: map,
   draggable: true,
   raiseOnDrag: true,
   labelContent: "A",
   labelAnchor: new google.maps.Point(3, 30),
   labelClass: "labels", // the CSS class for the label
   labelInBackground: false
 });

关于标记的基础知识可以在这里找到:https ://developers.google.com/maps/documentation/javascript/overlays#Markers

于 2012-06-19T07:20:00.867 回答
9

在 3.21 版(2015 年 8 月)中,Google 地图添加了对单字符标记标签的支持。请参阅新的标记标签 API

您现在可以像这样创建标签标记:

var marker = new google.maps.Marker({
  position: new google.maps.LatLng(result.latitude, result.longitude), 
  icon: markerIcon,
  label: {
    text: 'A'
  }
});

如果您希望看到删除 1 个字符的限制,请投票给这个问题

2016 年 10 月更新:

此问题已得到修复,从 3.26.10 版开始,Google 地图原生支持多个字符标签以及使用MarkerLabels的自定义图标。

于 2015-09-08T17:20:51.393 回答
7

使用插件的方法是创建 google 的 OverlayView() 方法的子类。

https://developers.google.com/maps/documentation/javascript/reference?hl=en#OverlayView

您制作一个自定义函数并将其应用于地图。

function Label() { 
    this.setMap(g.map);
};

现在您为子类制作原型并添加 HTML 节点:

Label.prototype = new google.maps.OverlayView; //subclassing google's overlayView
Label.prototype.onAdd = function() {
        this.MySpecialDiv               = document.createElement('div');
        this.MySpecialDiv.className     = 'MyLabel';
        this.getPanes().overlayImage.appendChild(this.MySpecialDiv); //attach it to overlay panes so it behaves like markers

}

您还必须按照 API 文档中的说明实现 remove 和 draw 函数,否则这将不起作用。

Label.prototype.onRemove = function() {
... // remove your stuff and its events if any
}
Label.prototype.draw = function() {
      var position = this.getProjection().fromLatLngToDivPixel(this.get('position')); // translate map latLng coords into DOM px coords for css positioning
var pos = this.get('position');
            $('.myLabel')
            .css({
                'top'   : position.y + 'px',
                'left'  : position.x + 'px'
            })
        ;
}

这就是它的要点,你必须在你的具体实现中做更多的工作。

于 2013-04-24T19:31:35.243 回答
0

您现在可以通过 google.maps.MarkerLabel 接口向标记标签添加类名。例如:

const marker = new google.maps.Marker({
      position: position_var,
      map,
      label: {
        text: 'label text',
        className: "my-label-class",
      },
      title: "Marker Title",
});

有关选项的完整列表,请参阅谷歌地图参考文档: https ://developers.google.com/maps/documentation/javascript/reference/marker#MarkerLabel

于 2021-04-22T04:38:28.603 回答