Skip to content

Instantly share code, notes, and snippets.

@keeprock
Last active August 29, 2015 14:18
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 keeprock/049898ec913594c0ba46 to your computer and use it in GitHub Desktop.
Save keeprock/049898ec913594c0ba46 to your computer and use it in GitHub Desktop.
Create tooltip on click using marker
var point = new google.maps.LatLng(COORDS);
var data = "SOME_TEXT";
var infowindow = new google.maps.InfoWindow({
content: data
});
var marker = new google.maps.Marker({
position: point,
title:"SOME_TEXT"
});
google.maps.event.addListener(marker, 'click', function() {
infowindow.open(map,marker);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment