Skip to content

Instantly share code, notes, and snippets.

@Cl3MM
Created May 27, 2014 16:08
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 Cl3MM/6234baabe76653763a75 to your computer and use it in GitHub Desktop.
Save Cl3MM/6234baabe76653763a75 to your computer and use it in GitHub Desktop.
myLatlng = new google.maps.LatLng(lat, lng);
mapOptions = {
zoom: 16,
mapTypeId: google.maps.MapTypeId.HYBRID,
center: myLatlng
};
map = new google.maps.Map(document.getElementById("MapContainer"), mapOptions);
marker = new google.maps.Marker({
position: myLatlng,
map: map
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment