我正在尝试使用MySQL空间数据类型尽可能本机处理地图标记位置。我不想再为lat
和lng,
使用其他列,因为我最终也希望能够编码线和多边形(以及其他几何形状)。该表具有point
列类型:
Schema::create('maps', function (Blueprint $table) {
$table->increments('id');
$table->point('map_center')->nullable();
$table->timestamps();
});
在视图方面,由于内置支持在数据库中创建这些空间类型,因此Eloquent比我想象的要笨拙一些。如果我get()
一个模型,则map_center
将显示原始编码的几何。
>>> $map=Map::first()
=> App\Map {#2935
id: 1,
map_center: b"\0\0\0\0\x01\x01\0\0\0ºõš\x1E\x14\x7FRÀb0\x7F…Ì_D@",
created_at: null,
updated_at: null,
}
我编写了一个center()
方法,该方法返回包含lat和long的对象:
public function center()
{
if ($this->map_center)
{
$result = DB::select('
select ST_Y(map_center) as lat, ST_X(map_center) as lng
from maps
where id = :id
',
['id' => $this->id]);
$center['lat'] = $result[0]->lat;
$center['lng'] = $result[0]->lng;
return (object) $center;
}
else
{
dd($this);
}
}
输出:
>>> $map->center()->lat
=> 40.748429
这是一个不错的解决方法,但是有点难看。相反,我希望Eloquent提取该信息,以便模型返回人类可读的坐标,例如:
>>> $map=Map::first()
=> App\Map {#2935
id: 1,
map_center: {
lat: 40.748429, // or X: and Y:
lng: -73.985603,
}
created_at: null,
updated_at: null,
}
鉴于它是point
类型(具有两个组成部分),是否可以使用ST_AsText(p)
或包含ST_X(p)
和ST_Y(p)
的对象自动检索数据?< / p>
这可能吗?
答案 0 :(得分:1)
MySQL将数据存储为WKB(众所周知的二进制)格式。
在这里Conversion of MySQL binary GEOMETRY fields in PHP
您可以使用Model Attribute。应该是这样的。
public function getMapCenterAttribute()
{
$center = unpack('Lpadding/corder/Lgtype/dlatitude/dlongitude', $this->map_center);
return $center;
}
如果需要,setMapCenterAttribute
也应使用pack
函数以相反的方式进行操作。