简体   繁体   English

将数据属性添加到leaflet.js标记元素

[英]Add data attribute to leaflet.js marker element

GOAL: Add data-attribute to leaflet.js marker element markup 目标:将数据属性添加到leaflet.js标记元素标记

I have a project with a map and a 'spotlight' area. 我有一个带有地图和“聚光灯”区域的项目。

The map is populated with locations using leaflet.js 使用leaflet.js使用位置填充地图

When I click a pin on the map, I want to have it's corresponding image and information appear in the spotlight area. 当我点击地图上的一个图钉时,我希望它的相应图像和信息出现在聚光灯区域。

I did a preliminary test with no map: http://codepen.io/sheriffderek/pen/yOmjLV Where I used data-attributed to connect the 2 sides of the coin. 我做了一个没有地图的初步测试: http//codepen.io/sheriffderek/pen/yOmjLV我使用数据归因于连接硬币的两面。 ( one set of data is spit out by PHP and the map data is an API ajax call ) (一组数据由PHP吐出,地图数据是API ajax调用)

I took for granted that it would be an accessible option to add classes or Id's or data or rel etc. Here's the meat of it: 我理所当然地认为它是一个可访问的选项来添加类或Id或数据或rel等。以下是它的内容:

// Purveyor types - for query endpoints
var bar = 4;
var retailer = 3;

// Create the "map"
var onSiteMap = L.map('on-site-map').setView([34.0758661, -118.25430590], 13);

// Define the pin (no SVG?)
var onSiteIcon = L.divIcon({
  className: 'my-div-icon' // this gets one class name as far as I can tell
});

// Setup map "Look"
L.tileLayer('http://{s}.tile.osm.org/{z}/{x}/{y}.png').addTo(onSiteMap);

// Grab the data
$.ajax( {
  url: 'http://xxxxxx.com/wp-json/wp/v2/purveyor?purveyor-type=' + bar,
  success: function ( data ) {
    var purveyorData = data;
    for (var i = 0; i < data.length; i++) {
      var ourLat = purveyorData[i].acf.purveyor_latitude;
      var ourLong = purveyorData[i].acf.purveyor_longitude;
      var ourSlug = purveyorData[i].slug;
      // create the markers
      L.marker([ ourLat , ourLong ], { 
        icon: onSiteIcon,
        slug: ourSlug // creates an extra option... but...
      }).addTo(onSiteMap);
    }
  },
  cache: false
});

I can add an 'option' and a unique value for that - to the object, but that doesn't help me get something into the markup. 我可以为对象添加一个“选项”和一个唯一值 - 但这并没有帮助我在标记中添加一些内容。

The element for the markers ends up like this: 标记的元素最终如下:

<div 
    class="leaflet-marker-icon my-div-icon leaflet-zoom-animated leaflet-clickable" 
    tabindex="0" style="margin-left: -6px; margin-top: -6px; width: 12px; height: 12px; transform: translate3d(276px, 140px, 0px); z-index: 140;"></div>


Trying to get something more like this: 试图得到更像这样的东西:

<div 
    id='possible-id-237'
    rel='possible-rel'
    data-name='this-slug'
    class="leaflet-marker-icon my-div-icon leaflet-zoom-animated leaflet-clickable" 
    tabindex="0" style="margin-left: -6px; margin-top: -6px; width: 12px; height: 12px; transform: translate3d(276px, 140px, 0px); z-index: 140;"></div>

I've researched a bit - and most questions were 2014 or older. 我研究了一下 - 大多数问题都是2014年或更早。 Hoping there is something I'm missing in the new docs. 希望新文档中缺少某些内容。

I can add an 'option' and a unique value for that - to the object, but that doesn't help me get something into the markup. 我可以为对象添加一个“选项”和一个唯一值 - 但这并没有帮助我在标记中添加一些内容。

That's right - Leaflet won't magically turn options into HTML data attributes. 这是对的 - Leaflet不会神奇地将选项转换为HTML data属性。

First: read the leaflet code ! 第一:阅读传单代码 It's easy to understand if you spend a bit of time in it. 如果你花一点时间,很容易理解。 For markers, the HTML is really built in L.Icon , not in L.Marker . 对于标记,HTML实际上是在L.IconL.Icon ,而不是在L.MarkerL.Marker

Once you've done that, you'll notice the code in src/layer/marker/icon.js does something like: 完成后,您会注意到src/layer/marker/icon.js中的代码src/layer/marker/icon.js操作:

_setIconStyles: function (img, name) {
    var options = this.options;

    if (options.something) {
        img.style.something = something(something);
    }
},

If you then read Leaflet's plugin guide , you'll then realise you can make a plugin in the lines of: 如果您随后阅读了Leaflet的插件指南 ,那么您将意识到您可以制作以下行中的插件:

L.Icon.DataMarkup = L.Icon.extend({

    _setIconStyles: function(img, name) {
        L.Icon.prototype._setIconStyles.call(this, img, name);

        if (options.slug) {
            img.dataset.slug = options.slug;
        }
    }

});

You should be able to work it out from there. 你应该能够从那里解决它。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM