Meta tag for geolocation

6

I was looking for meta tags for geolocation, to help search engines know that the information on my site refers to a specific city.

I found this site that generates the following tags for an address I typed:

<meta name="geo.region" content="US-VA" />
<meta name="geo.placename" content="Fairfax" />
<meta name="geo.position" content="38.844573;-77.286766" />
<meta name="ICBM" content="38.844573, -77.286766" />

I searched the www.w3.org and www .w3schools.com something related to these tags and I did not find it.

Do geo. tags exist effectively? Are they in development? Do search engines interpret them?

    
asked by anonymous 23.01.2017 / 20:54

3 answers

4

I'll answer as far as I know about your question, haha Google that owns 45% of searches on the internet, does not recognize this meta tag. The ones he recognizes are here: link I've seen people using these tags (although they do not know much about it) and if they really are useful for your project, use them!

    
23.01.2017 / 21:57
0

For what I researched the tag exists, the point is that it is not an official standard.

In the wiki, explain a bit about the pattern: link

As a matter of doubt, if your project is to benefit from this information, it is interesting to use even if not all search engines use it, so when they use your project, it will already be working with it.

    
27.01.2017 / 14:19
0

Apparently based on the given answers and provided links, these metatags are not considered by all engines, especially by Google, according to Giancarlo Soldera Graziano's answer, and there is little material available about it.

The reason I wanted these tags is in the original question:

  

.... to help search engines know that the information on my site refers to a specific city.

Trying to find the answer, I came across another concept: structured data . I know I did not ask about it, but it's because I did not know it existed, and in fact that's what I was looking for, but I did not know.

Using structured data, I can tell Google (key search engine) valuable information about my site, including the latitude and longitude that was asked.

This site generates the structured data script. It will deliver you a script of type application/ld+json that you place on head of your page. Here is an example that I generated on this site:

<script type='application/ld+json'> 
{
  "@context": "http://www.schema.org",
  "@type": "Bakery",
  "name": "Minha Padaria",
  "url": "www.minhapadaria.com.br",
  "description": "Essa é a descrição da minha padaria",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "Rua da Padaria, 29",
    "addressLocality": "São Paulo",
    "addressRegion": "SP",
    "postalCode": "00000-000",
    "addressCountry": "Brazil"
  },
  "geo": {
    "@type": "GeoCoordinates",
    "latitude": "38.844573",
    "longitude": "-77.286766"
  },
  "openingHours": "Mo, Tu, We, Th, Fr, Sa 06:30-20:00",
  "contactPoint": {
    "@type": "ContactPoint",
    "telephone": "+55(11)0000-0000"
  }
}
</script>

There are other sites that generate this, such as:

link

link

    
31.01.2017 / 12:10