Apparently based on the answers given and links provided, these metatags not considered by all engines, mainly by Google, as answered by Giancarlo Soldera Graziano, and there is little material available on this.
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 didn’t ask about it, but it’s because I didn’t know it existed, and that’s actually what I was looking for, but I didn’t know.
Using structured data, I can indicate to Google (main search engine) valuable information about my site, including the latitude and longitude that was asked.
That one website generates the structured data script. It will give you a script of the type application/ld+json
that you put on head
from your page. Here’s an example 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, like:
http://microdatagenerator.com/generator.html
http://microdatagenerator.org/
http://searchengineland.com/should-you-geotag-pages-for-local-seo-22531
– Antonio Alexandre