Skip to content

Instantly share code, notes, and snippets.

View AtakanATC's full-sized avatar

Atakan ATICI AtakanATC

  • SISTEMIQ
  • Turkey
View GitHub Profile
@AtakanATC
AtakanATC / map.twig
Last active March 31, 2022 14:16
google maps multi marker with js and twig
<div id="maps" style="height:400px; width:100%"></div>
<script src="https://polyfill.io/v3/polyfill.min.js?features=default"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=API_KEY&callback=initMap&v=weekly" async></script>
<script>
function initMap() {
{% set defaultCenter = iletisim[0].cevaplar.konum.cevap|split(',') %}
{% set defaultLat = defaultCenter[0] %}
{% set defaultLng = defaultCenter[1] %}
const map = new google.maps.Map(document.getElementById("maps"), {