// fire click event on all markers
$scope.$on('leafletDirectiveMarker.viewMap.click', function (event, args) {
// The program cannnot figure out which marker is clicked
var responseTime = $scope.markers[0].timestamp.minute + "分" + $scope.markers[0].timestamp.second + "秒";
window.open('open.html?' + responseTime,'動画再生ページ');
Hi, I'm a begginer of web programmar.
I'm in much trouble. I'd like to get information about which marker to be fired when it is clicked.
The minimum code I created is below.
I will be very helpful and glad If there is anyone who can resolve this problem, or anyone who can teach me the related issue.
Thanks for reading.
// fire click event on all markers $scope.$on('leafletDirectiveMarker.viewMap.click', function (event, args) {
});