. * */ namespace Vvveb\System\Fields; class Google_map extends Field { const valueType = ['address', 'lat', 'long', 'zoom']; protected $settings = [ 'lat' => [ 'label' => 'Lat', 'type' => 'number', 'name' => 'lat', ], 'long' => [ 'label' => 'Long', 'type' => 'number', 'name' => 'long', ], 'zoom' => [ 'label' => 'Zoom', 'type' => 'number', 'name' => 'zoom', 'value' => 1, ], 'address' => [ 'label' => 'Address', 'instructions' => 'Default address for new post', 'type' => 'text', 'name' => 'address', ], 'default' => null, ]; protected $validation = [ ]; protected $presentation = [ ]; }