setPosition()

in frontend/src/store/index.js [48:57]


  setPosition(state, position) {
    state.position.latitude = position.coords.latitude
    state.position.longitude = position.coords.longitude;  
    const hash = geoHash.getGeoHashCell(
      position.coords.latitude,
      position.coords.longitude,
      GEOHASH_LENGTH
    )
    state.hashKey = hash
  },