alex4401 / mediawiki-extensions-DataMaps

Interactive data maps extension without extra services needed.
https://mediawiki.org/wiki/Extension:DataMaps
Other
6 stars 5 forks source link

Allow grouping up marker groups #205

Open alex4401 opened 1 year ago

alex4401 commented 1 year ago

This will require an alternative groups format:

"groups": [
  {
    "id": "shops",
    ...
  },
  {
    "collection": "Trading Companies",
    "groups": [
      {
        "id": "bilgerats",
        ...
      },
      {
        "id": "goldhoarders",
        ...
      }
    ]
  }
]

Depends on #191.

alex4401 commented 1 year ago

Handling the data changes will require some API breakage.