Доктрина ODM @Distance в yaml

Как я могу добавить @Distance в файл сопоставления yaml? Я пробовал и не работает.

CP\AppBundle\Document\Point:
  type: embeddedDocument
  embedOne:
    address:
      targetDocument: CP\AppBundle\Document\Address
    coordinates:
      targetDocument: CP\AppBundle\Document\Coordinates
  distance: distance
  indexes:
    coordinates:
      keys:
        coordinates: 2d

Большое спасибо!


person Marc Morales Valldepérez    schedule 20.04.2015    source источник


Ответы (1)


Поле расстояния необходимо указать как число с плавающей запятой с параметром расстояния:

CP\AppBundle\Document\Point:
  type: embeddedDocument
  embedOne:
    address:
      targetDocument: CP\AppBundle\Document\Address
    coordinates:
      targetDocument: CP\AppBundle\Document\Coordinates
  fields:
    distance:
      type: float
      distance: true
  indexes:
    coordinates:
      keys:
        coordinates: 2d
person rickogden    schedule 25.05.2015