本文整理汇总了TypeScript中leaflet.Polyline.bindLabel方法的典型用法代码示例。如果您正苦于以下问题:TypeScript Polyline.bindLabel方法的具体用法?TypeScript Polyline.bindLabel怎么用?TypeScript Polyline.bindLabel使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类leaflet.Polyline
的用法示例。
在下文中一共展示了Polyline.bindLabel方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1:
marker.hideLabel();
marker.setLabelNoHide(true);
marker.updateLabelContent('test2');
label = marker.getLabel();
marker = marker.unbindLabel();
marker.setOpacity(0.5);
marker.setOpacity(0.5, true);
// Path
let path: L.Path = new L.Polyline([L.latLng(0, 0)]);
path = path.bindLabel('test', {
className: 'thingy',
clickable: true,
direction: 'right',
noHide: false,
offset: new L.Point(0, 0),
opacity: 0.5,
zoomAnimation: true,
});
path.updateLabelContent('test2');
path = path.unbindLabel();
// Label
label = new L.Label();
label.setOpacity(0.7);
label.updateZIndex(5);