您知道我可以在实体symfony中添加注释地理或地质来获得这样的
"_geoloc": {
"lat": 31.222219,
"lng": 121.458061
}
谢谢
答案 0 :(得分:6)
我认为你应该可以做到:
/**
* @Algolia\Attribute(algoliaName="_geoloc")
*/
public function getGeoloc()
{
return array("lat" => $this->getLat(), "lng" => $this->getLng());
}