public function DemoRenderElementController::renderElementDemo in Geolocation Field 8.3
Same name and namespace in other branches
- 8 modules/geolocation_demo/src/Controller/DemoRenderElementController.php \Drupal\geolocation_demo\Controller\DemoRenderElementController::renderElementDemo()
- 8.2 modules/geolocation_demo/src/Controller/DemoRenderElementController.php \Drupal\geolocation_demo\Controller\DemoRenderElementController::renderElementDemo()
Return the non-functional geocoding widget form.
Parameters
\Symfony\Component\HttpFoundation\Request $request: Page request object.
\Drupal\Core\Routing\RouteMatchInterface $route_match: The route match.
Return value
array A render array.
1 string reference to 'DemoRenderElementController::renderElementDemo'
- geolocation_demo.routing.yml in modules/
geolocation_demo/ geolocation_demo.routing.yml - modules/geolocation_demo/geolocation_demo.routing.yml
File
- modules/
geolocation_demo/ src/ Controller/ DemoRenderElementController.php, line 25
Class
- DemoRenderElementController
- Returns responses for geolocation_demo module routes.
Namespace
Drupal\geolocation_demo\ControllerCode
public function renderElementDemo(Request $request, RouteMatchInterface $route_match) {
$elements = [];
$elements['single_map'] = [
'#type' => 'geolocation_map',
'#prefix' => $this
->t('This is a prefix'),
'#suffix' => $this
->t('This is a suffix'),
'#centre' => [
'lng' => 42,
'lat' => 34,
],
'code' => [
'#type' => 'details',
'#title' => $this
->t('Single Map Code'),
'code' => [
'#type' => 'html_tag',
'#tag' => 'pre',
'#value' => '
\'#type\' => \'geolocation_map\',
\'#prefix\' => $this->t(\'This is a prefix\'),
\'#suffix\' => $this->t(\'This is a suffix\'),
\'#centre\' => [
\'lng\' => 42,
\'lat\' => 34,
],
',
],
],
];
$elements['common_map'] = [
'#type' => 'geolocation_map',
'location_1' => [
'#type' => 'geolocation_map_location',
'#coordinates' => [
'lat' => 13,
'lng' => 32,
],
],
'location_2' => [
'#type' => 'geolocation_map_location',
'#title' => 'I am the title',
'content' => [
'#markup' => 'I am the content',
],
'#coordinates' => [
'lat' => -11,
'lng' => -12,
],
],
'code' => [
'#type' => 'details',
'#title' => $this
->t('Common Map Code'),
'code' => [
'#type' => 'html_tag',
'#tag' => 'pre',
'#value' => '
\'#type\' => \'geolocation_map\',
\'location_1\' => [
\'#theme\' => \'geolocation_map_location\',
\'#coordinates\' => [
\'lat\' => 13,
\'lng\' => 32,
],
],
\'location_2\' => [
\'#theme\' => \'geolocation_map_location\',
\'#title\' => \'I am the title\',
\'content\' => [\'#markup\' => \'I am the content\'],
\'#coordinates\' => [
\'lat\' => -11,
\'lng\' => -12,
],
],
',
],
],
];
$elements['map_settings'] = [
'#type' => 'geolocation_map',
'#centre' => [
'lat' => 40.67,
'lng' => -73.94,
],
'#settings' => [
'style' => '[{"elementType":"labels","stylers":[{"visibility":"off"},{"color":"#f49f53"}]},{"featureType":"landscape","stylers":[{"color":"#f9ddc5"},{"lightness":-7}]},{"featureType":"road","stylers":[{"color":"#813033"},{"lightness":43}]},{"featureType":"poi.business","stylers":[{"color":"#645c20"},{"lightness":38}]},{"featureType":"water","stylers":[{"color":"#1994bf"},{"saturation":-69},{"gamma":0.99},{"lightness":43}]},{"featureType":"road.local","elementType":"geometry.fill","stylers":[{"color":"#f19f53"},{"weight":1.3},{"visibility":"on"},{"lightness":16}]},{"featureType":"poi.business"},{"featureType":"poi.park","stylers":[{"color":"#645c20"},{"lightness":39}]},{"featureType":"poi.school","stylers":[{"color":"#a95521"},{"lightness":35}]},{},{"featureType":"poi.medical","elementType":"geometry.fill","stylers":[{"color":"#813033"},{"lightness":38},{"visibility":"off"}]},{},{},{},{},{},{},{},{},{},{},{},{"elementType":"labels"},{"featureType":"poi.sports_complex","stylers":[{"color":"#9e5916"},{"lightness":32}]},{},{"featureType":"poi.government","stylers":[{"color":"#9e5916"},{"lightness":46}]},{"featureType":"transit.station","stylers":[{"visibility":"off"}]},{"featureType":"transit.line","stylers":[{"color":"#813033"},{"lightness":22}]},{"featureType":"transit","stylers":[{"lightness":38}]},{"featureType":"road.local","elementType":"geometry.stroke","stylers":[{"color":"#f19f53"},{"lightness":-10}]},{},{},{}]',
],
'code' => [
'#type' => 'details',
'#title' => $this
->t('Map Settings Code'),
'code' => [
'#type' => 'html_tag',
'#tag' => 'pre',
'#value' => '
\'#type\' => \'geolocation_map\',
\'#centre\' => [
\'lat\' => 40.6700,
\'lng\' => -73.9400,
],
\'#settings\' => [
\'style\' => \'[{"elementType":"labels","stylers":[{"visibility":"off"},{"color":"#f49f53"}]},{"featureType":"landscape","stylers":[{"color":"#f9ddc5"},{"lightness":-7}]},{"featureType":"road","stylers":[{"color":"#813033"},{"lightness":43}]},{"featureType":"poi.business","stylers":[{"color":"#645c20"},{"lightness":38}]},{"featureType":"water","stylers":[{"color":"#1994bf"},{"saturation":-69},{"gamma":0.99},{"lightness":43}]},{"featureType":"road.local","elementType":"geometry.fill","stylers":[{"color":"#f19f53"},{"weight":1.3},{"visibility":"on"},{"lightness":16}]},{"featureType":"poi.business"},{"featureType":"poi.park","stylers":[{"color":"#645c20"},{"lightness":39}]},{"featureType":"poi.school","stylers":[{"color":"#a95521"},{"lightness":35}]},{},{"featureType":"poi.medical","elementType":"geometry.fill","stylers":[{"color":"#813033"},{"lightness":38},{"visibility":"off"}]},{},{},{},{},{},{},{},{},{},{},{},{"elementType":"labels"},{"featureType":"poi.sports_complex","stylers":[{"color":"#9e5916"},{"lightness":32}]},{},{"featureType":"poi.government","stylers":[{"color":"#9e5916"},{"lightness":46}]},{"featureType":"transit.station","stylers":[{"visibility":"off"}]},{"featureType":"transit.line","stylers":[{"color":"#813033"},{"lightness":22}]},{"featureType":"transit","stylers":[{"lightness":38}]},{"featureType":"road.local","elementType":"geometry.stroke","stylers":[{"color":"#f19f53"},{"lightness":-10}]},{},{},{}]\',
],
',
],
],
];
return $elements;
}