Skip to content

Instantly share code, notes, and snippets.

@venkatd
Created September 18, 2012 16:10
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 venkatd/3743991 to your computer and use it in GitHub Desktop.
Save venkatd/3743991 to your computer and use it in GitHub Desktop.
var mapOptions = {
center: new google.maps.LatLng(-34.397, 150.644),
zoom: 8,
mapTypeId: google.maps.MapTypeId.ROADMAP
};
var map = new google.maps.Map(document.getElementById("map_canvas"),
mapOptions);
google = Native(`google`)
document = Native(`document`)
mapOptions = {center: google.maps.LatLng(-34.397, 150.644, zoom: 8, mapTypeId: google.maps.MapTypeId.ROADMAP}
map = google.maps.Map(document.getElementById("map_canvas"), mapOptions)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment