{% set seattleJSON = '[{"coords":{"lat":47.6152834,"lng":-122.337501},"ID":29,"title":"ICF Technology Inc.","city":"Seattle"}]' %}
{% set amsterdamJSON = '[{"coords":{"lat":52.3110534,"lng":4.9388259},"ID":31,"title":"ICF Tech EU B.V.","city":"Amsterdam"}]' %}
{% set bucharestJSON = '[{"coords":{"lat":44.4490688,"lng":26.0807384},"ID":33,"title":"SLS Service Center SRL.","city":"Bucharest"}]' %}
{% set budapestJSON = '[{"coords":{"lat":47.4975266,"lng":19.0297357},"ID":32,"title":"ICF Tech Hungary Kft.","city":"Budapest"}]' %}
{% set luxembourgJSON = '[{"coords":{"lat":49.60774082893106,"lng":6.119666355922133},"ID":34,"title":"ICF EU Luxembourg Sarl.","city":"Luxembourg"}]' %}
{% set markers = '[]' %}
{% if location == 'seattle' %}
{% set markers = seattleJSON %}
{% elseif location == 'amsterdam' %}
{% set markers = amsterdamJSON %}
{% elseif location == 'bucharest' %}
{% set markers = bucharestJSON %}
{% elseif location == 'budapest' %}
{% set markers = budapestJSON %}
{% elseif location == 'luxembourg' %}
{% set markers = luxembourgJSON %}
{% endif %}
{% include 'common/components/gmap.html.twig' with { markers: markers } %}