Apr 30: poi markers in vue app

gps position

merge OSM query results and DDG

will use that museum that angela saw...

query is hee: https://overpass-turbo.eu/

first, try tourism=museum

[out:json][bbox:{{bbox}}];
( node[tourism=museum];
  way[tourism=museum];
  rel[tourism=museum];
  nwr[name=museum];
  nw[name=museum];
  nr[name=museum];
  wr[name=museum];
  derived[name=museum];
  area[name=museum];
);
out body;
>;
out skel qt;

yes, got the hit.

    Way 702262760
    Tags 4
    building=yes
    name=Ratner Museum
    tourism=museum
    wikidata=Q65054804

and

    "addr:street": "Scoyen Circle",
    "building": "yes",
    "name": "museum",
    "owner": "NPS"

not sure how to get both of these

if you zoom way in the "closed way" (polygon, darn it!) shows up

use this link for wiki: https://www.wikidata.org/wiki/Q65054804

openstreetmap tags

the definitions: https://taginfo.openstreetmap.org/

https://tagfinder.herokuapp.com/

queries that didn't return any results:

second, try museum="*"

    [out:json][bbox:{{bbox}}];
    ( node[museum="*"];
      way[museum="*"];
      rel[museum="*"];
      nwr[name=museum];
      nw[name=museum];
      nr[name=museum];
      wr[name=museum];
      derived[name=museum];
      area[name=museum];
    );
    out body;
    >;
    out skel qt;

data only, no position

third, try museum=yes

    [out:json][bbox:{{bbox}}];
    ( node[museum=yes];
      way[museum=yes];
      rel[museum=yes];
      nwr[name=museum];
      nw[name=museum];
      nr[name=museum];
      wr[name=museum];
      derived[name=museum];
      area[name=museum];
    );
    out body;
    >;
    out skel qt;

data only, no position, 6 hits