jmccole83
2/20/2018 - 8:56 AM

ACF | Google map defaults to Satellite with labels

Change the arguement "mapTypeId" to 'google.maps.MapTypeId.HYBRID' to set the default map type to Satellite view, with labels included.

Example included below:

// vars
var args = {
  zoom      : 16,
  center    : new google.maps.LatLng(0, 0),
  mapTypeId : google.maps.MapTypeId.HYBRID
};