'', 'id' => '', 'animation' => 'no', 'address' => '', 'height' => '300px', 'icon' => '', 'infobox' => '', 'infobox_background_color' => '', 'infobox_content' => '', 'infobox_text_color' => '', 'map_style' => '', 'overlay_color' => '', 'popup' => 'yes', 'scale' => 'yes', 'scrollwheel' => 'yes', 'type' => 'roadmap', 'width' => '100%', 'zoom' => '14', 'zoom_pancontrol' => 'yes', ), $args ); extract( $defaults ); self::$args = $defaults; $html = ''; if( $address ) { $addresses = explode( '|', $address ); if( $infobox_content ) { $infobox_content_array = explode( '|', $infobox_content ); } else { $infobox_content_array = ''; } if( $icon ) { $icon_array = explode( '|', $icon ); } else { $icon_array = ''; } if( $addresses ) { self::$args['address'] = $addresses; } $num_of_addresses = count( $addresses ); if( $map_style == 'theme' ) { $map_style = 'custom'; $icon = 'theme'; $animation = 'yes'; $infobox = 'custom'; $infobox_background_color = FusionCore_Plugin::hex2rgb( $smof_data['primary_color'] ); $infobox_background_color = 'rgba(' . $infobox_background_color[0] . ', ' . $infobox_background_color[1] . ', ' . $infobox_background_color[2] . ', 0.8)'; $overlay_color = $smof_data['primary_color']; $brightness_level = FusionCore_Plugin::calc_color_brightness( $smof_data['primary_color'] ); if( $brightness_level > 140 ) { $infobox_text_color = '#fff'; } else { $infobox_text_color = '#747474'; } } if( $map_style == 'custom' ) { $animation = 'yes'; } if( $icon == 'theme' && $map_style == 'custom' ) { for( $i = 0; $i < $num_of_addresses; $i++ ) { $icon_array[$i] = plugins_url( 'images/avada_map_marker.png', dirname( __FILE__ ) ); } } wp_print_scripts( 'google-maps-api' ); wp_print_scripts( 'google-maps-infobox' ); foreach( self::$args['address'] as $add ) { $add = trim( $add ); $add_arr = explode( "\n", $add ); $add_arr = array_filter( $add_arr, 'trim' ); $add = implode( '
', $add_arr ); $add = str_replace( "\r", '', $add ); $add = str_replace( "\n", '', $add ); $coordinates[]['address'] = $add; } if( ! is_array( $coordinates ) ) { return; } for( $i = 0; $i < $num_of_addresses; $i++ ) { if( strpos( self::$args['address'][$i], 'latlng=' ) === 0 ) { self::$args['address'][$i] = $coordinates[$i]['address']; } } if( is_array( $infobox_content_array ) && ! empty( $infobox_content_array ) ) { for( $i = 0; $i < $num_of_addresses; $i++ ) { if( ! array_key_exists( $i, $infobox_content_array ) ) { $infobox_content_array[$i] = self::$args['address'][$i]; } } self::$args['infobox_content'] = $infobox_content_array; } else { self::$args['infobox_content'] = self::$args['address']; } foreach( self::$args['address'] as $key => $address ) { $json_addresses[] = array( 'address' => $address, 'infobox_content' => self::$args['infobox_content'][$key] ); if( isset( $icon_array ) && is_array( $icon_array ) ) { $json_addresses[$key]['marker'] = $icon_array[$key]; } if( strpos( $address, strtolower( 'latlng=' ) ) !== false ) { $json_addresses[$key]['address'] = str_replace( 'latlng=', '', $address ); $latLng = explode(',', $json_addresses[$key]['address']); $json_addresses[$key]['coordinates'] = true; $json_addresses[$key]['latitude'] = $latLng[0]; $json_addresses[$key]['longitude'] = $latLng[1]; if( strpos( self::$args['infobox_content'][$key], strtolower( 'latlng=' ) ) !== false ) { $json_addresses[$key]['infobox_content'] = ''; } } else { $json_addresses[$key]['coordinates'] = false; } } $json_addresses = json_encode( $json_addresses ); $map_id = uniqid( 'fusion_map_' ); // generate a unique ID for this map $this->map_id = $map_id; ob_start(); ?>
', $defaults['id'], FusionCore_Plugin::attributes( 'google-map-shortcode' ) ); } else { $html = ob_get_clean() . sprintf( '
', FusionCore_Plugin::attributes( 'google-map-shortcode' ) ); } } return $html; } function attr() { $attr['class'] = 'shortcode-map fusion-google-map'; if( self::$args['class'] ) { $attr['class'] .= ' ' . self::$args['class']; } $attr['id'] = $this->map_id; $attr['style'] = sprintf('height:%s;width:%s;', self::$args['height'], self::$args['width'] ); return $attr; } function get_coordinates( $address, $force_refresh = false ) { global $smof_data; $key = $smof_data['google_console_api_key']; $address_hash = md5( $address ); $coordinates = get_transient( $address_hash ); if ( $force_refresh || $coordinates === false ) { if( strpos( $address, 'latlng=' ) === 0 ) { $args = array( 'latlng' => urlencode( substr( $address, 7 ) ), 'sensor' => 'false' ); }else { $args = array( 'address' => urlencode( $address ), 'sensor' => 'false' ); } $url = 'http://maps.googleapis.com/maps/api/geocode/json'; if( $key ) { $args['key'] = $key; $url = 'https://maps.googleapis.com/maps/api/geocode/json'; } $url = add_query_arg( $args, $url ); $response = wp_remote_get( $url ); if( is_wp_error( $response ) ) return; $data = wp_remote_retrieve_body( $response ); if( is_wp_error( $data ) ) return; if ( $response['response']['code'] == 200 ) { $data = json_decode( $data ); if ( $data->status === 'OK' ) { $coordinates = $data->results[0]->geometry->location; $cache_value['lat'] = $coordinates->lat; $cache_value['lng'] = $coordinates->lng; $cache_value['address'] = (string) $data->results[0]->formatted_address; // cache coordinates for 3 months set_transient($address_hash, $cache_value, 3600*24*30*3); $data = $cache_value; } elseif ( $data->status === 'ZERO_RESULTS' ) { return __( 'No location found for the entered address.', 'fusion-core' ); } elseif( $data->status === 'INVALID_REQUEST' ) { return __( 'Invalid request. Did you enter an address?', 'fusion-core' ); } else { return __( 'Something went wrong while retrieving your map, please ensure you have entered the short code correctly.', 'fusion-core' ); } } else { return __( 'Unable to contact Google API service.', 'fusion-core' ); } } else { // return cached results $data = $coordinates; } return $data; } } new FusionSC_GoogleMap();