Files
carei.pagedev.pl/wp-content/plugins/carei-reservation/includes/class-map-widget.php
2026-04-01 20:15:45 +02:00

211 lines
25 KiB
PHP

<?php
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Elementor Widget: Carei Map — interaktywna mapa Polski z pinami oddziałów.
*/
class Carei_Map_Widget extends \Elementor\Widget_Base {
/**
* City coordinates on SVG viewBox (442x379).
* Calculated from geographic positions mapped to the SVG coordinate space.
* Keys: lowercase city name without Polish diacritics.
*/
const CITY_COORDS = array(
'warszawa' => array( 304, 169 ),
'krakow' => array( 257, 310 ),
'wroclaw' => array( 129, 242 ),
'gdansk' => array( 200, 32 ),
'poznan' => array( 124, 158 ),
'katowice' => array( 217, 298 ),
'lodz' => array( 237, 201 ),
'lublin' => array( 373, 233 ),
'bialystok' => array( 399, 111 ),
'szczecin' => array( 40, 92 ),
'rzeszow' => array( 348, 311 ),
'bydgoszcz' => array( 171, 112 ),
'olsztyn' => array( 281, 69 ),
'kielce' => array( 288, 258 ),
'opole' => array( 168, 271 ),
'zielona gora' => array( 61, 188 ),
'radom' => array( 311, 224 ),
'torun' => array( 198, 119 ),
'czestochowa' => array( 221, 262 ),
'gliwice' => array( 201, 296 ),
'sosnowiec' => array( 221, 296 ),
'gdynia' => array( 195, 21 ),
'plock' => array( 247, 149 ),
'tarnow' => array( 304, 313 ),
'legnica' => array( 90, 236 ),
'grudziadz' => array( 205, 88 ),
'slupsk' => array( 129, 25 ),
'koszalin' => array( 91, 42 ),
'elblag' => array( 233, 44 ),
'siedlce' => array( 361, 173 ),
'nowy sacz' => array( 291, 339 ),
'piotrkow trybunalski' => array( 247, 224 ),
'zamosc' => array( 403, 268 ),
'przemysl' => array( 382, 329 ),
'wloclawek' => array( 219, 142 ),
'skierniewice' => array( 267, 188 ),
'gorzow wie' => array( 87, 210 ),
'gorzow wielkopolski' => array( 87, 210 ),
'rumia' => array( 192, 28 ),
'sopot' => array( 197, 27 ),
'bydgoszc' => array( 171, 112 ),
'rzszow' => array( 348, 311 ),
);
public function get_name() {
return 'carei-map';
}
public function get_title() {
return 'Carei Map';
}
public function get_icon() {
return 'eicon-google-maps';
}
public function get_categories() {
return array( 'general' );
}
public function get_style_depends() {
return array( 'carei-reservation-css' );
}
public function get_script_depends() {
return array( 'carei-reservation-js' );
}
protected function register_controls() {}
/**
* Normalize city name: lowercase, strip Polish diacritics.
*/
private static function normalize_city( $name ) {
$map = array(
'ą' => 'a', 'ć' => 'c', 'ę' => 'e', 'ł' => 'l', 'ń' => 'n',
'ó' => 'o', 'ś' => 's', 'ź' => 'z', 'ż' => 'z',
'Ą' => 'a', 'Ć' => 'c', 'Ę' => 'e', 'Ł' => 'l', 'Ń' => 'n',
'Ó' => 'o', 'Ś' => 's', 'Ź' => 'z', 'Ż' => 'z',
);
$name = mb_strtolower( trim( $name ), 'UTF-8' );
return strtr( $name, $map );
}
/**
* Truncated / misspelled names from Softra API → correct full city names.
*/
const NAME_FIXES = array(
'BYDGOSZC' => 'BYDGOSZCZ',
'GORZÓW WIE' => 'GORZÓW WIELKOPOLSKI',
'RZSZÓW' => 'RZESZÓW',
'SK-KAM' => '',
);
/**
* Clean branch name: handle D(Dworzec)/L suffixes, fix truncated names, skip codes.
* Returns array: [ 'name' => cleaned name, 'dworzec' => bool ]
*/
private static function clean_branch_name( $raw ) {
$name = trim( $raw );
$is_dworzec = (bool) preg_match( '/\s+D$/u', $name );
$name = preg_replace( '/\s+[DL]$/u', '', $name );
if ( isset( self::NAME_FIXES[ $name ] ) ) {
$name = self::NAME_FIXES[ $name ];
}
if ( empty( $name ) || preg_match( '/^[A-Z]{2,4}-[A-Z]{2,4}$/u', $name ) ) {
return array( 'name' => '', 'dworzec' => false );
}
return array( 'name' => $name, 'dworzec' => $is_dworzec );
}
/**
* Build branch data with coordinates for JS.
*/
private function get_branch_pins() {
$api = Carei_Softra_API::get_instance();
if ( null === $api ) {
return array();
}
$branches = $api->get_branches_cached();
if ( is_wp_error( $branches ) || ! is_array( $branches ) ) {
return array();
}
$pins = array();
$seen_cities = array();
foreach ( $branches as $b ) {
$raw_name = isset( $b['name'] ) ? $b['name'] : '';
$cleaned = self::clean_branch_name( $raw_name );
$city = $cleaned['name'];
if ( empty( $city ) ) {
continue;
}
$norm = self::normalize_city( $city );
if ( isset( $seen_cities[ $norm ] ) ) {
continue;
}
$seen_cities[ $norm ] = true;
$coords = isset( self::CITY_COORDS[ $norm ] ) ? self::CITY_COORDS[ $norm ] : null;
if ( ! $coords ) {
continue;
}
$display_city = mb_convert_case( $city, MB_CASE_TITLE, 'UTF-8' );
// Build address from API fields: "ul. Street\nZipCode City"
$street = isset( $b['street'] ) ? trim( $b['street'] ) : '';
$zip = isset( $b['zipCode'] ) ? trim( (string) $b['zipCode'] ) : '';
$api_city = isset( $b['city'] ) ? trim( $b['city'] ) : '';
$api_city_title = mb_convert_case( $api_city, MB_CASE_TITLE, 'UTF-8' );
$address_lines = array( 'Oddział ' . $display_city );
if ( $street ) {
$street_lower = mb_strtolower( $street, 'UTF-8' );
$has_prefix = preg_match( '/^(ul\.|al\.|pl\.|os\.)/u', $street_lower );
$address_lines[] = $has_prefix ? $street : 'ul. ' . $street;
}
$zip_city = trim( $zip . ' ' . $api_city_title );
if ( $zip_city ) {
$address_lines[] = $zip_city;
}
$pins[] = array(
'city' => $display_city,
'x' => $coords[0],
'y' => $coords[1],
'address' => implode( "\n", $address_lines ),
);
}
return $pins;
}
protected function render() {
$pins = $this->get_branch_pins();
$pins_json = wp_json_encode( $pins );
?>
<div class="carei-map" data-pins="<?php echo esc_attr( $pins_json ); ?>">
<svg class="carei-map__svg" viewBox="0 0 442 379" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M433.597 250.956L433.712 247.633L442 244.594L434.458 241.177L428.91 235.881L424.043 227.558L415.019 219.549L414 209.875L408.622 201.808L406.717 187.706L406.589 180.578L407.496 169.176L403.899 165.179L394.765 159.649L394.723 159.622L386.548 157.359L384.986 152.188L395.233 131.439L410.994 123.43L411.195 123.329V101.876L405.563 93.3017V88.553L401.551 83.2471L386.222 45.436L382.246 28.4994L376.127 19.9102L351.331 9.37499L351.215 9.32486L312.993 19.7142L277.601 21.1192L231.927 18.8163L231.724 18.806L226.169 26.8173L222.616 28.2134L215.592 35.4905L211.305 36.5947L207.643 35.6792L208.042 33.7774L216.089 30.1919L221.031 27.3967L224.65 22.0966L228.892 17.2123L232.274 10.177L229.978 9.11699L226.876 14.106L221.289 20.8376L215.349 25.315L205.467 30.0799L187.834 29.698L180.24 26.5858L178.507 21.8814L175.29 11.7117L171.408 6.95274L172.096 4.98899L179.059 8.63342L187.32 14.3964L188.181 11.6395L179.549 4.31524L174.834 1.42858L166.131 0L157.084 1.42121L144.411 5.64504L131.256 7.94493L118.034 12.3472L111.276 21.7841L99.8239 23.1832L92.8358 28.2296L92.7931 28.2621L80.0316 44.8493L56.4534 52.2414L31.1133 61.2006L11.4523 69.1146L4.75605 69.2517L6.89966 75.9641L18.7485 77.2379L19.4797 83.3282L19.5947 89.7325L17.2182 87.9766L12.7703 85.9435L7.0869 79.8326L6.93504 86.2133L11.6822 94.2983L13.7138 114.739L8.28107 129.521L0 134.95L1.19417 145.052L18.7662 159.161L21.3713 166.229L17.9008 175.095L23.6004 185.069L27.7859 197.88L26.5298 207.174L22.5035 212.629L25.2988 220.614L30.5457 223.862L27.8419 233.001L37.5737 236.893L39.0671 243.362L42.4993 253.788L37.5353 274.023L35.8546 279.208L39.9207 279.36L43.7347 276.634L44.7254 269.336L55.5275 272.128L60.0271 284.593L77.1347 285.236L80.6464 289.376L88.3791 294.617L94.5578 292.908L94.5888 292.9L99.0632 290.787L106.514 294.573L97.7496 303.337L100.055 309.848L107.888 313.315L113.244 323.773L119.745 328.512L125.145 321.661L134.798 318.223L131.129 311.7L127.081 305.444L129.056 303.988L148.439 313.363L148.49 313.388L156.894 314.569L162.542 310.075L165.111 310.183L164.875 316.686L158.577 321.51L163.093 324.333L171.802 332.39L180.097 329.668L188.713 331.791L191.872 335.362L193.937 332.748L199.666 333.481L203.487 335.868L202.731 340.534L210.488 349.346L214.868 349.847L217.394 358.309L222.88 362.265L224.056 368.405L228.276 368.828L231.441 367.177L234.509 359.121L238.765 357.119L244.378 352.629L248.286 354.523L251.385 360.205L254.712 360.821V363.369L260.021 364.535L261.736 372.01L259.837 377.165L263.816 378.048L269.284 375.762L273.29 377.497L278.5 367.727L300.805 360.04L305.724 364.708L313.374 365.514L317.725 358.348L323.425 358.98L328.346 354.184L331.319 355.794L339.764 352.98L349.438 358.398L352.834 355.63L363.99 366.536L364.072 366.617L376.949 368.805L383.356 371.24L391.66 372.262L398.012 375.243L401.186 374.184L407.02 373.571L403.487 371.215L395.908 366.667L393.907 361.041L391.622 353.295V345.543L389.837 343.249L390.335 335.546L428.466 274.842L434.705 273.719L434.829 273.697L439.746 268.248L439.483 257.862L433.605 250.96L433.597 250.956ZM351.589 10.2802L375.65 20.5014L381.562 28.8046L385.513 45.6292L385.52 45.6572L400.888 83.5655L400.906 83.6112L404.827 88.7978V93.5199L410.459 102.094V122.876L394.681 130.892L384.298 151.915L381.486 154.119H378.299L373.112 149.363H363.306L357.144 147.824L354.022 140.413L354 140.358L349.488 135.202L352.231 131.023L349.254 123.082L343.724 124.701L341.669 121.848L344.604 119.058L339.945 118.095L334.418 120.538L330.133 113.265L325.057 111.158L323.949 107.366L315.412 99.8947L311.086 91.3733L309.938 80.4091H312.276L318.353 82.0308L322.729 79.7058L330.641 75.9508L339.539 65.193L345.75 62.9462L352.822 57.3704L354.735 46.7084L347.34 36.3574L340.982 25.3253L344.843 21.8357L352.067 18.4286L351.581 10.2758L351.589 10.2802ZM72.1708 171.931L73.4136 166.883L70.0183 160.647L69.3431 153.37L75.2535 149.947L75.8063 140.811L75.2697 133.647L76.2516 129.609L81.3276 130.666L89.9079 126.87L92.2579 120.626L96.178 119.392L98.6003 116.309L102.41 115.472L102.871 111.943L106.062 108.516L103.029 105.649L98.8642 103.567L95.4409 101.682V97.8351L106.271 95.1829L106.492 88.385L112.285 86.6335L115.823 93.7455L119.621 96.6572L129.176 95.3259L132.003 96.4788L129.302 103.782L134.737 107.626V116.961L133.675 128.241L138.754 132.652L142.449 137.62V143.654L140.157 146.889L142.597 151.052L150.11 151.579L152.642 153.977L157.675 152.786L166.58 157.044L176.851 161.847L180.375 158.977L186.16 161.869L187.911 159.984L192.049 160.702L199.822 168.092L206.642 166.633L211.162 167.992L214.635 176.651L205.877 178.271V184.883L201.178 190.134L202.57 196.12L200.006 203.917L192.953 205.421L188.43 215.314L191.721 227.239L189.284 231.854H185.44L183.664 235.259L182.986 239.464L180.86 241.821V251.614H176.851L171.053 255.224L165.689 254.151L164.611 249.55L160.355 250.284L157.924 245.2L157.443 238.317L149.814 235.249L148.498 230.425L150.998 226.756L149.972 222.482L139.28 219.299L134.821 225.191L126.23 227.646H119.998L116.491 224.826L112.089 221.506L108.758 216.114L103.631 214.973L98.3497 215.275L96.9329 212.371L91.2259 207.805L87.7097 209.257L85.572 205.981L84.9882 202.308H81.046L78.69 198.554L78.1976 195.515L73.8573 194.043V189.029L74.4102 174.791L72.1693 171.933L72.1708 171.931ZM139.298 132.148L134.445 127.933L135.472 117.011V107.246L130.19 103.507L132.765 96.5407L135.861 95.1121L139.529 88.7226L146.298 89.4361L150.603 85.9391L147.579 83.278L154.442 77.089L158.452 78.6208L165.421 75.9774L171.968 78.7166H180.354L183.798 80.9295L188.464 78.8301L190.31 82.6706L198.066 84.3882L200.925 83.02L206.533 81.13L208.529 83.5965L211.041 96.5599L220.584 96.8253L224.512 99.6927H228.57L230.798 104.272L232.271 110.041L227.294 111.926L230.316 119.419L221.45 124.111L225.544 137.182L221.498 143.706L222.694 148.621L221.257 157.898L222.633 164.034L211.435 167.305L206.67 165.871L200.044 167.289L192.393 160.013L187.643 159.188L185.996 160.963L180.279 158.104L176.745 160.983L166.891 156.378L157.755 152.008L152.856 153.17L150.42 150.864L143.032 150.345L141.027 146.926L143.181 143.887V137.374L139.295 132.148H139.298ZM181.595 242.103L183.677 239.794L184.37 235.494L185.885 232.588H189.727L192.505 227.325L189.21 215.376L193.468 206.063L200.572 204.548L203.334 196.155L201.982 190.341L206.612 185.163V178.881L215.653 177.208L211.93 167.93L223.124 164.66H229.974L237.301 170.516L247.627 166.112L254.258 169.428L255.17 175.657L264.222 178.773L262.208 183.236L265.389 191.194L272.199 190.575L280.025 195.069L279.283 198.185L281.567 200.317L280.589 207.162L274.319 206.067L274.643 216.312L278.851 217.87L280.866 220.692L276.147 225.118V229.74L273.871 235.287L269.327 234.379L267.643 238.818H262.376L259.937 243.857L262.379 250.017L261.86 253.216L256.694 251.524L253.915 259.27L247.848 266.594H245.629L240.057 264.235H234.649L229.607 259.927L225.514 257.158H219.014L210.885 255.099L206.776 257.154L198.809 256.691L194.422 252.874L184.654 251.618H181.595V242.106V242.103ZM248.375 267.101L254.561 259.634L257.142 252.436L262.444 254.176L263.134 249.928L260.736 243.881L262.834 239.547H268.149L269.792 235.217L274.318 236.122L276.727 230.25L280.569 231.347L285.842 235.867L289.602 237.457V239.275L305.002 238.043L311.036 241.513H318.657L321.47 245.419L327.662 241.549L336.367 244.443L342.138 260.878L340.871 268.373L336.869 271.836L334.272 280.6L326.762 284.736L325.994 287.863L317.29 294.44L313.392 293.702L300.44 297.804L300.309 297.846L295.415 305.828H286.084L276.314 287.683L262.988 289.212H262.967L255.121 291.033L257.366 287.98L253.364 281.977L247.649 275.199L248.376 267.102L248.375 267.101ZM336.286 243.642L327.566 240.744L321.664 244.432L319.034 240.779H311.234L305.171 237.294L290.336 238.479V236.971L286.233 235.236L280.924 230.686L276.88 229.529V225.429L281.836 220.783L279.317 217.255L275.361 215.79L275.081 206.938L281.208 208.009L282.348 200.036L280.097 197.935L280.866 194.7L272.364 189.82L265.868 190.41L263.005 183.249L265.223 178.339L255.83 175.107L254.929 168.939L247.651 165.3L237.418 169.665L230.23 163.923H223.366L222.007 157.874L223.446 148.59L222.289 143.833L226.347 137.286L222.337 124.477L231.246 119.759L228.258 112.349L232.741 110.65L237.993 111.727L239.903 107.903L245.83 111.057L249.57 109.855H261.081V105.68L262.228 103.732H268.602L272.793 97.1835L280.731 95.6222L282.649 92.8093L288.459 93.3253L294.641 87.5387L301.245 85.4659L309.232 80.6567L310.377 91.5871L314.796 100.293L314.828 100.356L323.313 107.779L324.458 111.702L329.633 113.85L334.126 121.474L340.035 118.863L343.09 119.494L340.706 121.758L343.439 125.553L348.813 123.982L351.421 130.934L348.577 135.267L353.376 140.753L356.617 148.447L363.221 150.099H372.831L378.017 154.855H381.22L380.736 161.259L372.48 170.15L366.312 168.445L363.003 172.811H358.85L354.015 177.647H339.673L334.081 181.603L333.254 190.708L336.929 194.121L334.803 196.623L336.13 200.867L334.188 205.358H323.848L328.25 209.601L335.032 210.497L336.392 218.04L333.419 221.688L336.285 224.692V243.641L336.286 243.642ZM211.305 37.3496L215.976 36.1495L223.032 28.837L226.644 27.4173L232.094 19.5579L277.58 21.8504H277.596L313.106 20.441L350.848 10.1829L351.312 17.9804L344.441 21.2224L340.057 25.1808L346.721 36.7407L346.73 36.7569L353.964 46.8853L352.154 56.9694L345.394 62.2989L339.107 64.5738L330.184 75.3596L322.412 79.0498L318.268 81.2494L312.376 79.6778H309.128L309.148 79.8503L300.942 84.7907L294.26 86.8871L288.198 92.5631L282.286 92.0382L280.296 94.9573L272.344 96.5215L268.199 102.997H261.808L260.347 105.479V109.119H249.457L245.902 110.262L239.585 106.902L237.59 110.894L233.011 109.955L231.504 104.057L231.495 104.02L229.033 98.96H224.755L220.838 96.0984L211.654 95.8434L209.217 83.278L207.103 80.6671L211.713 72.5998L211.839 67.9912L217.966 66.9695L223.828 56.5006H216.96L215.212 57.7935L211.507 53.1215L206.999 48.3551L205.607 41.2668L207.438 36.3839L211.305 37.3511V37.3496ZM111.682 22.4696L118.49 12.9649L131.405 8.65996L144.561 6.36155L144.588 6.35565L157.255 2.13477L166.126 0.740092L174.572 2.1274L179.095 4.89021L187.333 11.8828L186.914 13.2199L179.458 8.01717L171.679 3.94372L170.575 7.09722L174.628 12.0656L177.806 22.1099L179.658 27.1401L187.677 30.4263L205.622 30.8141L215.696 25.9578L221.795 21.3698L227.454 14.5542L230.256 10.0517L231.288 10.5279L228.271 16.8024L224.08 21.6293L220.519 26.8394L215.771 29.5255L207.4 33.257L206.856 35.8443L204.846 41.2048L206.321 48.706L210.941 53.5889L215.078 58.8034L217.201 57.2333H222.576L217.497 66.3016L211.121 67.3646L210.984 72.3949L206.41 80.3988L200.671 82.333L197.978 83.6171L190.818 82.0337L188.816 77.8689L183.861 80.098L180.571 77.9824H172.117L165.434 75.1872L158.453 77.835L154.284 76.2413L146.473 83.2839L149.463 85.9141L146.069 88.6724L139.128 87.9412L135.34 94.5416L132.463 95.8684L129.273 94.5696L119.826 95.8847L116.407 93.2634L112.835 86.0807L112.408 82.7458L113.92 76.8457L111.388 74.6122L111.634 72.3978L114.467 71.6518V68.8639L111.176 67.1022L107.436 61.9952L105.608 54.2523L103.703 47.7271L105.789 46.5418L106.971 41.97L104.512 37.7226V28.9918L100.866 26.6861L100.384 23.8481L111.68 22.4667L111.682 22.4696ZM19.3854 158.716L1.88856 144.667L0.779898 135.316L8.88258 129.998L14.4569 114.831L12.3929 94.0624L7.66924 86.0202L7.77391 81.6504L12.328 86.5465L16.8393 88.6091L20.3511 91.2038L20.2095 83.2943L19.4031 76.5671L7.44957 75.2815L5.75119 69.9638L11.5997 69.8429L31.3625 61.8876L56.6834 52.9357L80.3589 45.5127L80.471 45.4773L93.3061 28.7899L99.6972 24.1768L100.197 27.1328L103.778 29.3973V37.9216L106.185 42.0806L105.155 46.0611L102.834 47.3806L104.895 54.4336L106.753 62.3107L110.681 67.6742L113.731 69.3047V71.0886L110.959 71.8184L110.614 74.9129L113.097 77.1008L111.66 82.7031L112.072 85.9288L105.777 87.8321L105.557 94.6006L94.7082 97.2572V102.112L98.5251 104.214L102.606 106.255L105.03 108.549L102.175 111.612L101.751 114.865L98.1875 115.649L95.7431 118.76L91.6992 120.033L89.3315 126.323L81.2479 129.899L76.4373 128.897L77.2202 126.05L71.4056 122.739L63.0774 132.106L56.1423 131.232L47.8907 136.046V139.364L39.4431 144.334L35.8443 143.088L32.4667 139.869L28.4847 144.017L29.9737 146.622L27.9997 149.159L26.9131 157.134L25.0511 157.693L21.7959 156.375L19.6935 159.552L19.3869 158.719L19.3854 158.716ZM39.7777 243.179L38.2032 236.353L28.7368 232.566L31.4097 223.531L25.9047 220.124L23.3247 212.751L27.233 207.456L28.5363 197.809L24.2874 184.803L24.2756 184.768L18.7131 175.033L22.1556 166.236L20.0061 160.402L22.0745 157.277L25.0127 158.465L27.5751 157.697L28.6999 149.45L30.8553 146.68L29.3943 144.125L32.4903 140.901L35.4536 143.727L39.5227 145.135L48.6249 139.782V136.464L56.2986 131.988L63.3707 132.88L71.5604 123.669L76.3636 126.404L75.5248 129.456L75.5365 129.459L74.5326 133.587L75.0751 140.814L74.5488 149.507L68.572 152.969L69.3047 160.862L72.6366 166.982L71.3761 172.102L73.6716 175.03L73.129 189.012V194.566L77.549 196.067L77.9957 198.816L80.645 203.039H84.3675L84.8776 206.248L87.4326 210.165L91.1109 208.647L96.3505 212.838L97.7172 215.642L93.3813 223.434L90.3693 221.612L85.6148 217.571L80.3412 216.912L77.1302 219.63L74.3497 223.761L71.2655 230.236L65.8151 232.763L65.2328 236.119L62.4375 235.096L57.9837 234.235L56.5595 239.219H53.7333L50.3086 238.73L44.4778 243.772L40.1581 244.331L39.7777 243.176V243.179ZM128.633 303.382L126.085 305.257L130.491 312.065L133.727 317.819L124.695 321.036L119.6 327.497L113.813 323.277L108.418 312.745L100.636 309.299L98.5914 303.523L107.744 294.371L99.0706 289.964L94.3278 292.204L88.5059 293.814L81.1374 288.817L77.4811 284.509L60.546 283.872L56.0848 271.509L44.1077 268.413L43.0492 276.216L39.6966 278.612L36.8513 278.506L38.2371 274.234L43.2349 253.859L43.26 253.756L40.391 245.04L44.7903 244.471L50.5356 239.504L53.6552 239.949L57.1124 239.953L58.5041 235.084L62.2119 235.797L65.8033 237.111L66.4712 233.269L71.8125 230.791L74.9866 224.127L77.6802 220.126L80.5683 217.681L85.3052 218.273L89.9138 222.19L93.6511 224.454L98.3511 216.008L103.573 215.709L108.3 216.76L111.539 222.004L116.043 225.402L119.742 228.376H126.335L135.26 225.827L139.56 220.145L149.359 223.061L150.209 226.607L147.701 230.288L149.204 235.79L156.745 238.823L157.203 245.388L159.6 250.4L155.686 250.99L154.855 255.652L154.468 263.656L147.704 269.641L144.625 279.277L144.605 279.338L144.835 287.179L140.05 290.498L137.436 298.263H132.46L128.316 298.777L128.632 303.377L128.633 303.382ZM179.739 329.005L171.976 331.551L163.534 323.74L159.858 321.442L165.59 317.051L165.866 309.475L162.294 309.326L156.678 313.793L148.701 312.671L129.364 303.318L129.097 299.422L132.484 298.999H137.965L140.671 290.965L145.581 287.557L145.344 279.444L148.344 270.058L155.189 264.001L155.586 255.737L156.319 251.639L160.693 250.978L160.688 250.969L164.06 250.388L165.086 254.776L171.199 255.998L177.065 252.343H184.587L194.11 253.568L198.374 257.276L199.872 260.094L198.101 263.075L198.672 271.455L195.448 275.249L194.361 283.74L199.798 290.209L194.769 295.421L191.098 300.079L193.58 311.144L186.889 317.834L180.733 320.374L179.744 329.003L179.739 329.005ZM238.369 356.483L233.922 358.576L230.847 366.646L228.124 368.068L224.665 367.723L223.537 361.833L218.016 357.854L215.424 349.166L210.844 348.644L203.502 340.305L204.282 335.5L199.91 332.769L193.611 331.964L191.833 334.213L189.105 331.128L180.476 329.002L181.407 320.887L187.298 318.456L194.377 311.377L191.884 300.258L195.303 295.916L200.78 290.241L195.125 283.513L196.142 275.557L199.419 271.704L198.843 263.253L200.706 260.114L199.29 257.449L206.926 257.893L210.966 255.873L218.873 257.876L218.918 257.887H225.283L229.14 260.493L234.372 264.963H239.899L245.473 267.322H247.612L246.884 275.437L252.758 282.398L256.462 287.956L253.98 291.332L248.722 294.381L243.2 296.081L235.694 297.874L236.356 301.742L229.49 306.837L234.344 310.367L231.41 315.425L228.445 319.555L225.05 322.401L224.125 328.872L228.92 330.071L229.337 333.397L234.586 337.681L234.817 340.004H238.759L239.645 342.217L237.003 344.64L239.303 347.453L243.032 346.418L243.576 348.598L243.931 352.026L238.363 356.481L238.369 356.483ZM328.217 353.274L323.156 358.204L317.336 357.559L312.984 364.727L306.044 363.997L300.982 359.194L277.983 367.12L272.955 376.546L269.283 374.955L263.744 377.274L260.812 376.623L262.497 372.051L260.629 363.911L255.442 362.772V360.204L251.858 359.539L248.814 353.959L244.668 351.949L244.311 348.499L243.567 345.511L239.576 346.62L238.018 344.715L240.522 342.419L239.265 339.273H235.489L235.293 337.308L230.036 333.016L229.594 329.484L224.954 328.322L225.746 322.786L228.961 320.09L228.997 320.06L232.025 315.842L235.318 310.165L230.739 306.834L237.166 302.065L236.543 298.431L243.391 296.796L249.029 295.061L254.376 291.959L263.094 289.939L275.905 288.468L285.647 306.56H295.829L300.796 298.461L313.441 294.456L317.017 295.133V301.536L319.358 308.556L316.985 316.428L319.481 320.51L323.152 322.55L322.207 325.197L318.8 329.286L321.896 331.906L326.299 334.212L328.181 340.274L329.674 346.357L330.887 354.719L328.222 353.274H328.217ZM389.655 335.229L389.605 335.309L389.079 343.476L390.881 345.79V353.395L393.198 361.253L395.298 367.155L403.082 371.827L404.917 373.049L401.025 373.459L398.054 374.448L391.862 371.542L383.53 370.518L377.139 368.088L364.419 365.925L352.875 354.643L349.359 357.507L339.835 352.175L331.65 354.902L330.394 346.233L328.885 340.088L326.905 333.703L322.304 331.293L319.824 329.195L322.85 325.565L324.048 322.21L320.001 319.962L317.78 316.324L320.124 308.545L317.747 301.415V295.009L326.643 288.286L327.396 285.22L334.889 281.093L337.51 272.246L341.549 268.752L342.814 261.264L345.863 261.771L351.918 257.555L356.917 259.32L354.69 264.623L359.157 269.09L363.161 267.754L371.498 270.881V275.115L374.214 278.132L366.118 282.448L369.635 287.781L377.674 285.91L383.071 289.147L391.484 289.034L399.29 280.687L404.479 281.335L406.822 279.419L421.034 285.276L389.66 335.225L389.655 335.229ZM434.444 273.014L428.009 274.175L421.428 284.652L406.897 278.662L406.695 278.578L404.255 280.573L399.008 279.918L391.161 288.31L383.269 288.416L377.795 285.133L369.963 286.957L367.174 282.724L375.384 278.345L372.229 274.839V270.377L363.173 266.982L359.351 268.254L355.554 264.458L357.892 258.892L351.805 256.743L345.685 261.003L342.785 260.52L337.016 244.089V224.4L334.393 221.652L337.171 218.242L335.657 209.84L328.583 208.905L325.665 206.091H334.669L336.91 200.907L335.623 196.788L337.942 194.06L334.016 190.414L334.78 182.005L339.906 178.38H354.318L359.154 173.544H363.367L366.593 169.284L372.713 170.976L381.447 161.569L381.967 154.676L384.394 152.773L385.961 157.957L394.425 160.301L403.422 165.751L406.737 169.432L405.853 180.538V180.556L405.98 187.742L407.914 202.073L413.287 210.132L414.316 219.911L423.465 228.029L428.324 236.341L434.039 241.796L440.061 244.524L432.994 247.116L432.851 251.216L438.745 258.136L438.994 267.971L434.441 273.016L434.444 273.014Z" fill="#2F2482"/>
<g class="carei-map__pins"></g>
</svg>
<div class="carei-map__tooltip" style="display:none;">
<div class="carei-map__tooltip-content"></div>
</div>
</div>
<?php
}
}