根据下面的示例,我已设法使用 GMaps.js 将上下文菜单添加到地图中
map.setContextMenu({
control: 'map',
options: [{
title: 'Add marker',
name: 'add_marker',
action: function(e) {
this.addMarker({
lat: e.latLng.lat(),
lng: e.latLng.lng(),
title: 'New marker'
});
}
}, {
title: 'Center here',
name: 'center_here',
action: function(e) {
this.setCenter(e.latLng.lat(), e.latLng.lng());
}
}]
});
但是我似乎无法向标记添加上下文菜单。
有人可以发布如何做到这一点
谢谢