如何将传单地图插件添加到ionic4代码?

时间:2019-04-11 01:27:00

标签: leaflet ionic4

我正在尝试在离子应用程序中实现传单地图。我指的是this link。然后,我需要使用传单插件easyButton添加新按钮,但无法实现。有什么想法吗?

1 个答案:

答案 0 :(得分:0)

  1. 在cli

    npm install leaflet-easybutton

  2. 在您的* .page.ts

导入“ leaflet-easybutton”;

  1. 示例:
const  helloPopup = L.popup().setContent('Hello World!');
L.easyButton('fa-globe', function(btn, map) {
   helloPopup.setLatLng(map.getCenter()).openOn(map);
}).addTo( this.map);