Support

Account

Home Forums ACF PRO Google Map Satellite Reply To: Google Map Satellite

  • Thank you for your Answer James.

    Should it work if I changed the “../advanced-custom-fields-pro/fields/google-map.php” file on lines 38, 44 and 104? Being the following form:

    Line 38

    $this->defaults = array(
    			'height'		=> '',
    			'center_lat'	=> '',
    			'center_lng'	=> '',
    			'zoom'			=> '',
    			'mapTypeId'             => 'satellite'
    		);

    Line 44

    $this->default_values = array(
    			'height'		=> '400',
    			'center_lat'	=> '-37.81411',
    			'center_lng'	=> '144.96328',
    			'zoom'			=> '14',
    			'mapTypeId'             => 'satellite'
    		);

    Line 104

    $atts = array(
    			'id'			=> $field['id'],
    			'class'			=> "acf-google-map {$field['class']}",
    			'data-lat'		=> $field['center_lat'],
    			'data-lng'		=> $field['center_lng'],
    			'data-zoom'		=> $field['zoom'],
    			'mapTypeId'             => 'satellite',
    		);