Ионная листовка bindPopup - PullRequest
       7

Ионная листовка bindPopup

0 голосов
/ 04 декабря 2018

Я начал в ионной разработке.кнопка в bindPopup не работает, я не понимаю почему.

loadmap(data){
    this.map = leaflet.map('map').setView([48.845,2.424],10);
    leaflet.tileLayer('https://api.mapbox.com/URL',{
        minZoom:0,
        maxZoom:18,
        tileSize:256,
            attribution : "ClicParcelle",
    }).addTo(this.map);

    leaflet.geoJSON( (data) ,  {
    onEachFeature: function (feature, layer) {
  var template = "<h6>"+feature.properties.Name+" </h6><button class='button button-clear button-small button-royal' ng-click='GoParcelleJob("+ feature.properties.Id +")'>Rajouter une observation</button>";
  layer.bindPopup(template);

  }
}).addTo(this.map);  
}

Заранее спасибо!Жюльен

...