最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How can I programmatically open the tooltip of a leaflet marker? - Stack Overflow

programmeradmin1浏览0评论

I am using leaflet and I have a few markers. If I hover on the marker icon its tooltip automatically opens, showing the related data. I have my markers stored inside a variable called woMarkers and everything works using it except this feature. If I do something like this:

$(woMarkers[0]._icon).hover();

then nothing happens, no error and the tooltip does not open. These are the options I am using:

        var woOptions = {
            fitBounds: true,
            enableLandmarkLink: false,
            reDrawBounds: true,
            showControls: true,
            getName: function(record) {
                return record[('Job Number' in record ? 'Job Number' : 'Name')];
            },
            markerIconTemplate: '<div class="fi-marker-container %6" data-workorder="%3"><a class="icon" style="color: %4;">%1%2</a></div><div class="fi-marker-pointer-container"><div class="fi-marker-pointer %6"></div></div>',
            markerSelection: true,
            displayLabels: mapLabels,
            additionalMarkerMarkup: {
                column: 'Status', /* Display additional Marker html pending on a column value */
                values: {
                    '1': '<img class="top-right-icon" src="/Images/Icons/Help.png" />',
                    '2': '<img class="top-right-icon" src="/Images/Icons/CheckCircle.png" />',
                    '3': '<img class="top-right-icon" src="/Images/Icons/CheckCircle.png" />',
                    '4': '<img class="top-right-icon" src="/Images/Icons/CheckCircle.png" />',
                    '5': '<img class="top-right-icon" src="/Images/Icons/Warning.png" />'
                },
                columns: ["Workorder #"]
            },
            layer: new L.LayerGroup()
        };

So, my question is as follows: If I have a marker object, how can I programmatically open its tooltip?

I am using leaflet and I have a few markers. If I hover on the marker icon its tooltip automatically opens, showing the related data. I have my markers stored inside a variable called woMarkers and everything works using it except this feature. If I do something like this:

$(woMarkers[0]._icon).hover();

then nothing happens, no error and the tooltip does not open. These are the options I am using:

        var woOptions = {
            fitBounds: true,
            enableLandmarkLink: false,
            reDrawBounds: true,
            showControls: true,
            getName: function(record) {
                return record[('Job Number' in record ? 'Job Number' : 'Name')];
            },
            markerIconTemplate: '<div class="fi-marker-container %6" data-workorder="%3"><a class="icon" style="color: %4;">%1%2</a></div><div class="fi-marker-pointer-container"><div class="fi-marker-pointer %6"></div></div>',
            markerSelection: true,
            displayLabels: mapLabels,
            additionalMarkerMarkup: {
                column: 'Status', /* Display additional Marker html pending on a column value */
                values: {
                    '1': '<img class="top-right-icon" src="/Images/Icons/Help.png" />',
                    '2': '<img class="top-right-icon" src="/Images/Icons/CheckCircle.png" />',
                    '3': '<img class="top-right-icon" src="/Images/Icons/CheckCircle.png" />',
                    '4': '<img class="top-right-icon" src="/Images/Icons/CheckCircle.png" />',
                    '5': '<img class="top-right-icon" src="/Images/Icons/Warning.png" />'
                },
                columns: ["Workorder #"]
            },
            layer: new L.LayerGroup()
        };

So, my question is as follows: If I have a marker object, how can I programmatically open its tooltip?

Share Improve this question asked Sep 30, 2016 at 11:08 Lajos ArpadLajos Arpad 77.3k40 gold badges117 silver badges221 bronze badges 2
  • For the tooltip, do you use Leaflet.label plugin or Leaflet 1.0 built-in L.tooltip / marker.bindTooltip? – ghybs Commented Sep 30, 2016 at 11:17
  • @ghybs, I do not know. How can I check which one is used? – Lajos Arpad Commented Sep 30, 2016 at 11:21
Add a ment  | 

2 Answers 2

Reset to default 5

You could simply use marker.fire("mouseover"), using Leaflet built-in event management methods.

Demo: https://jsfiddle/3v7hd2vx/92/

In case you are using the Leaflet Tooltip, you can open it by calling:

marker.openTooltip();

See documentation.

发布评论

评论列表(0)

  1. 暂无评论