Package Data | |
---|---|
Maintainer Username: | ShaoZeMing |
Maintainer Contact: | peter.haza@gmail.com (Peter Haza) |
Package Create Date: | 2017-03-14 |
Package Last Update: | 2018-08-31 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-19 03:05:04 |
Package Statistics | |
---|---|
Total Downloads: | 62 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 1 |
Total Watchers: | 2 |
Total Forks: | 0 |
Total Open Issues: | 0 |
$table->geometry('geom')
;$myModel->myPoint = new Point(1,2)
)$table->polygon('myColumn')
)5.3.*
;5.4.*
5.3.*
;5.4.*
composer require shaozeming/lumen-postgis 'dev-master'
laravel Next add the DatabaseServiceProvider to your config/app.php
file.
'Shaozeming\LumenPostgis\DatabaseServiceProvider',
That's all.
Lumen Next add the DatabaseServiceProvider to your bootstrap/app.php
file.
$app->register(Bosnadev\Database\DatabaseServiceProvider::class); //多添加这个后,就可以解决问题。
$app->register(Shaozeming\LumenPostgis\DatabaseServiceProvider::class);
That's all.
First of all, make sure to enable postgis.
CREATE EXTENSION postgis;
To verify that postgis is enabled
SELECT postgis_full_version();
Now create a model with a migration by running
php artisan make:model Location
If you don't want a model and just a migration run
php artisan make:migration create_locations_table
Open the created migrations with your editor.
use Illuminate\Database\Migrations\Migration;
use Shaozeming\LumenPostgis\Schema\Blueprint;
class CreateLocationsTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('locations', function(Blueprint $table)
{
$table->increments('id');
$table->string('name');
$table->string('address')->unique();
$table->point('location');
$table->geometry('geom');
$table->polygon('polygon');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('locations');
}
}
Available blueprint geometries:
other methods:
All models which are to be PostGis enabled must use the PostgisTrait.
You must also define an array called $postgisFields
which defines
what attributes/columns on your model are to be considered geometry objects.
use Illuminate\Database\Eloquent\Model;
use Shaozeming\LumenPostgis\Eloquent\PostgisTrait;
use Shaozeming\LumenPostgis\Geometries\Point;
class Location extends Model
{
use PostgisTrait;
protected $fillable = [
'name',
'address'
];
protected $postgisFields = [
'location',
'polygon',
];
}
$location1 = new Location();
$location1->name = 'Googleplex';
$location1->address = '1600 Amphitheatre Pkwy Mountain View, CA 94043';
$location1->location = new Point(37.422009, -122.084047);
$location1->geom = new GeomPoint(37.422009, -122.084047); //这个可以执行成功实现ORM操作gis几何数据。
$location1->save();
$location2 = Location::first();
$location2->location instanceof Point // true
Available geometry classes: