Merge branch 'develop' of github.com:pietervdvn/MapComplete into develop

This commit is contained in:
pietervdvn 2022-03-02 16:00:19 +01:00
commit e11064e303
3 changed files with 5 additions and 5 deletions

View file

@ -10,7 +10,7 @@ Requirements
Before you start, you should have the following qualifications: Before you start, you should have the following qualifications:
- You are a longtime contributor and do know the OpenStreetMap tagging scheme very well. - You are a longtime contributor and do know the OpenStreetMap tagging scheme very well.
- You are not afraid of editing a JSON file - You are not afraid of editing a JSON file. If you don't know what a JSON-file is, [read this intro](https://www.w3schools.com/whatis/whatis_json.asp)
- Your theme will add well-understood tags (aka: the tags have a wiki page, are not controversial and are objective) - Your theme will add well-understood tags (aka: the tags have a wiki page, are not controversial and are objective)
- You are in contact with your local OpenStreetMap community and do know some other members to discuss tagging and to - You are in contact with your local OpenStreetMap community and do know some other members to discuss tagging and to
help testing help testing

View file

@ -33,7 +33,7 @@ export default interface LineRenderingConfigJson {
lineCap?: "round" | "square" | "butt" | string | TagRenderingConfigJson lineCap?: "round" | "square" | "butt" | string | TagRenderingConfigJson
/** /**
* Wehter or not to fill polygons * Whether or not to fill polygons
*/ */
fill?: "yes" | "no" | TagRenderingConfigJson fill?: "yes" | "no" | TagRenderingConfigJson
@ -51,4 +51,4 @@ export default interface LineRenderingConfigJson {
* This simplifies programming. Refer to the CalculatedTags.md-documentation for more details * This simplifies programming. Refer to the CalculatedTags.md-documentation for more details
*/ */
offset?: number | TagRenderingConfigJson offset?: number | TagRenderingConfigJson
} }

View file

@ -2,7 +2,7 @@ import {AndOrTagConfigJson} from "./TagConfigJson";
/** /**
* A TagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet. * A TagRenderingConfigJson is a single piece of code which converts one ore more tags into a HTML-snippet.
* For an _editable_ tagRenerdering, use 'QuestionableTagRenderingConfigJson' instead, which extends this one * For an _editable_ tagRendering, use 'QuestionableTagRenderingConfigJson' instead, which extends this one
*/ */
export interface TagRenderingConfigJson { export interface TagRenderingConfigJson {
@ -91,4 +91,4 @@ export interface TagRenderingConfigJson {
} }
}[] }[]
} }