var marker = new google.maps.Marker({ position: new google.maps.LatLng(, ), map: pls_google_map, });
'42.37', 'lng' => '-71.03', 'zoom' => '14', 'width' => 300, 'height' => 300, 'id' => 'map_canvas', 'class' => 'custom_google_map', 'map_js_var' => 'pls_google_map' ); /** Merge the arguments with the defaults. */ $args = wp_parse_args( $args, $defaults ); return $args; } private static function process_marker_defaults ($listing, $args) { // pls_dump($listing); if (isset($listing) && is_array($listing) && isset($listing['location'])) { $coords = $listing['location']['coords']; $args['lat'] = $coords['latitude']; $args['lng'] = $coords['longitude']; } /** Define the default argument array. */ $defaults = array( 'lat' => '42.37', 'lng' => '71.03', ); /** Merge the arguments with the defaults. */ $args = wp_parse_args( $args, $defaults ); return $args; } }