reflow-project / weloop

WeLoop is a React/TypeScript client for ZenPub and a key component of ReflowOS
https://weloop.reflowproject.eu
GNU Affero General Public License v3.0
5 stars 5 forks source link

Fix map in Material Passport view #115

Closed pral2a closed 2 years ago

pral2a commented 2 years ago

Connect map with economicResource location in the Material Passport view

Screenshot 2021-09-22 at 17 48 15

pral2a commented 2 years ago

Map coordinates are flipped (lat, long)

See resource with the current lat and long location for Barcelona:

https://www.latlong.net/place/barcelona-catalonia-spain-1433.html

{
  economicResource(id: "01F6QG69KRT7J07GHDAKT3S4RP") {
    currentLocation {
      lat
      long
    }
  }
}
{
  "data": {
    "economicResource": {
      "currentLocation": {
        "lat": 41.396,
        "long": 2.192
      }
    }
  }
}

Now, compare it with the screenshot below

Screenshot 2021-10-22 at 21 13 38