This commit is contained in:
exampleusername12 2020-04-17 18:20:55 -07:00 коммит произвёл GitHub
Родитель 3d8c41fb64
Коммит f8af1aff3a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 69 добавлений и 1 удалений

Просмотреть файл

@ -1,5 +1,73 @@
# Contributing
# Bing COVID-19 Widget
All widget configurations will have two lines of HTML code, a <div> including various parameters, and a <script>.
## What is the data-type parameter used for?
The data-type parameter sets the widget configuration. There are five options:
Description data-type
Parameter
Default – includes all three modules: Outbreak Map module, Trends Chart module, and Data Stats module
covid19
Map – includes only the Outbreak Map module covid19_map
Trends – includes only the Trends Chart module
covid19_trends
_stats
Stats and Map – includes the Data Stats module and Outbreak Map module
covid19_stats_map
Stats and Trends – includes the Data Stats module and Trends Chart module
covid19_stats_trends
Multiple example
What markets and languages does the widget support?
The data-market and data-language parameters can be customized using these values:
| Country | data-market Parameter |
| --------- |:---------------------:|
| Australia | en-AU |
| Brazil | pt-BR |
| Canada | en-CA |
| Canada | fr-CA |
| China | zh-CN |
| France | fr-FR |
| Germany | de-DE |
| India | en-IN |
| Italy | it-IT |
| Japan | ja-JP |
| Spain | es-ES |
| UK | en-GB |
| US | en-US |
Language
data-language Parameter
| Language | data--language Parameter |
| --------- |:---------------------:|
| English in | Australia en-AU |
| English in Canada | en-CA |
| English in India | en-IN |
| English in | UK en-GB |
| English in | US en-US |
| French | fr-FR |
| German | de-DE |
| Italian | it-IT |
| Japanese | ja-JP |
| Korean | ko-KR |
| Spanish | es-ES |
How do I specify a location for the widget to load?
The data-location-id id and data-location-latlon are two options you have for specifying which location the widget will load data for. Note that currently only the data-location-id id option is supported. Support for data-location-latlon will be added soon. You only need to set one location parameter, either data-location-id or data-location-latlon. If you set both parameters, the data-location-id will take precedence. When no location is specified, the default data shown is global.
The data-location-id allows you to set location following the format of “/Country/Region.” There are over 3,000 possible values which can be found in the AllLocation.txt file on the widget GitHub page.
The data-location-latlon allows you to set location by the latitude and longitude values. Note that data-location-latlon is not yet supported.
What else can I customize on the widget?
We are working on an additional data-type that will allow further module customization, but it is not currently available. This will allow you to have multiple sets of the three module types. The documentation will be updated with further instructions when it's available.
This project welcomes contributions and suggestions. Most contributions require you to agree to a
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us