Skip to content

Instantly share code, notes, and snippets.

@huuyafwww
Last active March 26, 2018 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save huuyafwww/d67bb4d92a598f1a96f156611760483b to your computer and use it in GitHub Desktop.
Save huuyafwww/d67bb4d92a598f1a96f156611760483b to your computer and use it in GitHub Desktop.
google.maps.event.addListener(marker, 'mouseover', function(){
//ここにホバー時の処理を記述する
});
google.maps.event.addListener(marker, 'mouseout', function(){
//ここにホバー解除時の処理を記述する
});
marker.addListener('click',function(){
//マーカーをクリックしたときの処理を記述する
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment