diff --git a/metatag.metatag.inc b/metatag.metatag.inc index 340960a..a450bab 100644 --- a/metatag.metatag.inc +++ b/metatag.metatag.inc @@ -319,5 +319,38 @@ function metatag_metatag_info() { ), ); + $info['tags']['geo.position'] = array( + 'label' => t('Geo position'), + 'description' => t('A meta tag for providing geo spatial information in latitude/longitude format. I.e. "50.167958;-97.133185", see Wikipedia for details'), + 'class' => 'DrupalTextMetaTag', + 'group' => 'advanced', + 'weight' => ++$weight, + 'element' => array( + '#theme' => 'metatag_http_equiv', + ), + ); + + $info['tags']['geo.placename'] = array( + 'label' => t('Geo place name'), + 'description' => t("A meta tag for providing a location place name."), + 'class' => 'DrupalTextMetaTag', + 'group' => 'advanced', + 'weight' => ++$weight, + 'element' => array( + '#theme' => 'metatag_http_equiv', + ), + ); + + $info['tags']['geo.region'] = array( + 'label' => t('Geo region'), + 'description' => t("A meta tag for providing a location region."), + 'class' => 'DrupalTextMetaTag', + 'group' => 'advanced', + 'weight' => ++$weight, + 'element' => array( + '#theme' => 'metatag_http_equiv', + ), + ); + return $info; }