mirror of
https://github.com/a2nt/silverstripe-mapboxfield.git
synced 2024-10-22 14:05:53 +02:00
45 lines
851 B
Markdown
45 lines
851 B
Markdown
# SilverStripe Mapbox Field
|
|
|
|
Adds a Mapbox map to the CMS with a draggable marker to allow content authors to add a location to a DataObject or Page.
|
|
|
|
<img src="docs/img/cms.png" alt="" />
|
|
|
|
## Installation
|
|
|
|
`composer require bigfork/silverstripe-mapboxfield:*`
|
|
|
|
## Configuration
|
|
|
|
```yml
|
|
---
|
|
Name: 'app-mapbox'
|
|
After: 'silverstripe-mapboxfield'
|
|
---
|
|
Bigfork\SilverStripeMapboxField\MapboxField:
|
|
access_token: '<your mapbox key>'
|
|
```
|
|
|
|
## Usage
|
|
|
|
```php
|
|
class MyDataObject extends DataObject
|
|
{
|
|
private static $db = [
|
|
'Latitude' => 'Decimal(10, 8)',
|
|
'Longitude' => 'Decimal(11, 8)'
|
|
];
|
|
|
|
public function getCMSFields()
|
|
{
|
|
// ...
|
|
|
|
$fields->addFieldToTab(
|
|
'Root.Map',
|
|
MapboxField::create('LocationMap', 'Choose a location', 'Latitude', 'Longitude')
|
|
);
|
|
|
|
// ...
|
|
}
|
|
}
|
|
```
|