mirror of
https://github.com/werkraum-media/events.git
synced 2025-02-17 01:03:48 +01:00
They sometimes use a different separator. The code is adjusted to always use same separator and precision. That will prevent the same location from showing up multiple times due to different latitude and longitude values.
36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
<?php
|
|
|
|
return [
|
|
'tx_events_domain_model_location' => [
|
|
[
|
|
'uid' => 1,
|
|
'pid' => 0,
|
|
'sys_language_uid' => -1,
|
|
'global_id' => '1cc57820faf4a3bf6bf8326f2821068f0619f9fc8bcbebd8c6e4c496e38471c7',
|
|
'name' => 'Domplatz',
|
|
'street' => '',
|
|
'city' => 'Erfurt',
|
|
'zip' => '99084',
|
|
'district' => 'Altstadt',
|
|
'country' => 'Deutschland',
|
|
'phone' => '',
|
|
'latitude' => '50.977089',
|
|
'longitude' => '11.024878',
|
|
],
|
|
[
|
|
'uid' => 2,
|
|
'pid' => 0,
|
|
'sys_language_uid' => -1,
|
|
'global_id' => '64d0def98fe304c32c79e6926cac40c8501797158e0e43990c36f7b1fb50c17e',
|
|
'name' => 'Wenigemarkt',
|
|
'street' => '',
|
|
'city' => 'Erfurt',
|
|
'zip' => '99084',
|
|
'district' => 'Altstadt',
|
|
'country' => 'Deutschland',
|
|
'phone' => '',
|
|
'latitude' => '50.9785',
|
|
'longitude' => '11.031589',
|
|
],
|
|
],
|
|
];
|