使用 Laravel Eloquent ORM 的空间点函数

Spatial Point functions using Laravel Eloquent ORM

我得到 经度和纬度 并且想用 [空间点]mysql,

可以帮助我插入值的查询和函数是什么..

您可以使用 DB::raw() 来执行此操作:

    DB::table('table')->insert([
        'field' => DB::raw("SPECIAL_FUNC(X)"),
    ]);

例子: http://dev.mysql.com/doc/refman/4.1/en/point-property-functions.html http://dev.mysql.com/doc/refman/5.0/en/populating-spatial-columns.html