Mobile app version of vmapp.org
Login or Join
Murray155

: How to specify the service region for a LocalBusiness? How can I show Googlebot by attributes from Schema.org the geographic area where the services are available? Our services are available in

@Murray155

Posted in: #Microdata #SchemaOrg #Seo

How can I show Googlebot by attributes from Schema.org the geographic area where the services are available?

Our services are available in cities and in their vicinity:


Walsall
Dudley
Wolverhampton
Cannock


Or how I can say that the services are available in Walsall and 10 miles from this location?

I found only the examples schema.org/LocalBusiness#examples, but I have this more complex and I don't know how to do it.

I have mulitple locations and this is my problem. I know, I probably must use LocalBusiness → areaServed, but what's next?
How use GeoShape and GeoCircle and how print more locations than one?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Murray155

1 Comments

Sorted by latest first Latest Oldest Best

 

@Sherry384

You can provide Schema.org properties multiple times.

So each Service can have multiple areaServed values:

<div itemscope itemtype="http://schema.org/Service">
<ul>
<li itemprop="areaServed">…</li>
<li itemprop="areaServed">…</li>
<li itemprop="areaServed">…</li>
</ul>
</div>

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme