Lines Matching refs:JSON_THROW_ON_ERROR
78 const config = <?= json_encode($leaflet_config, JSON_THROW_ON_ERROR) ?>;
79 const add_place = <?= json_encode($location->id() === null, JSON_THROW_ON_ERROR) ?>;
85 L.Icon.Default.imagePath = <?= json_encode(asset('css/images/'), JSON_THROW_ON_ERROR) ?>;
88 let marker = L.marker(<?= json_encode($marker_position, JSON_THROW_ON_ERROR) ?>, {
106 map.fitBounds(<?= json_encode($map_bounds, JSON_THROW_ON_ERROR) ?>, {padding: [50, 30]});
107 marker.setLatLng(<?= json_encode($marker_position, JSON_THROW_ON_ERROR) ?>);
117 query: <?= json_encode($location->locationName(), JSON_THROW_ON_ERROR) ?>,
118 placeholder: <?= json_encode(I18N::translate('Place'), JSON_THROW_ON_ERROR) ?>,
119 errorMessage: <?= json_encode(I18N::translate('Nothing found.'), JSON_THROW_ON_ERROR) ?>,
120 iconLabel: <?= json_encode(I18N::translate('Search'), JSON_THROW_ON_ERROR) ?>
137 .fitBounds(<?= json_encode($map_bounds, JSON_THROW_ON_ERROR) ?>, {padding: [50, 30]})
155 … icon.setAttribute('title', <?= json_encode(I18N::translate('Search'), JSON_THROW_ON_ERROR) ?>);