Loading...
Logo

Google Maps

Default Map
Displays the default road map view.
var defaultMap = {
  zoom: 14,
  center: { lat: 40.712784, lng: -74.005941 },
  mapTypeId: google.maps.MapTypeId.ROADMAP
};
new google.maps.Map(document.getElementById("default_map"), defaultMap);
Hybrid Map
Displays a mixture of normal and satellite views.
var hybridMap = {
  zoom: 14,
  center: { lat: 40.712784, lng: -74.005941 },
  mapTypeId: google.maps.MapTypeId.HYBRID
};
new google.maps.Map(document.getElementById("hybrid_map"), hybridMap);