我正在尝试在离子应用程序中实现传单地图。我指的是this link。然后,我需要使用传单插件easyButton添加新按钮,但无法实现。有什么想法吗?
答案 0 :(得分:0)
在cli
npm install leaflet-easybutton
在您的* .page.ts
导入“ leaflet-easybutton”;
const helloPopup = L.popup().setContent('Hello World!');
L.easyButton('fa-globe', function(btn, map) {
helloPopup.setLatLng(map.getCenter()).openOn(map);
}).addTo( this.map);