. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Module; use Fisharebest\Webtrees\Fact; use Fisharebest\Webtrees\I18N; use function strip_tags; use function view; /** * Class MapLinkBing - show locations in external maps */ class MapLinkBing extends AbstractModule implements ModuleMapLinkInterface { use ModuleMapLinkTrait; /** * Name of the map provider. * * @return string */ protected function providerName(): string { return I18N::translate('Bing™ maps'); } /** * @return string */ protected function icon(): string { return view('icons/bing-maps'); } /** * @param Fact $fact * * @return string */ protected function mapUrl(Fact $fact): string { $latitude = $fact->latitude(); $longitude = $fact->longitude(); $center = $latitude . '~' . $longitude; $label = strip_tags($fact->record()->fullName()) . ' — ' . $fact->label(); $pointer = $latitude . '_' . $longitude . '_' . rawurlencode($label); return 'https://www.bing.com/maps/?v=2&cp=' . $center . '&lvl=10&dir=0&sty=o&sp=point.' . $pointer; } }