Mysql
 sql >> Base de données >  >> RDS >> Mysql

Enregistrer des données spatiales dans CakePHP

convertir cette ligne :

$this->data['Report']['position'] = $db->expression("GeomFromText('POINT(" . 
    $this->data['Report']['lat'] . " " . $this->data['Report']['lng'] . ")')");

à :

$this->data['Report']['position'] = (object) $db->expression("GeomFromText('POINT(" .
     $this->data['Report']['lat'] . " " . $this->data['Report']['lng'] . ")')");

Cela devrait fonctionner.