[Answered ]-Django google-maps API v3 doesn't work with Chrome when using template variables

2👍

I suggest to use localize templatetag, so you can use format localisation without breaking your javascript code.

{% localize off %}
    <script type="text/javascript">
      var map;
      function initMap() {
          map = new google.maps.Map(document.getElementById("map"), {
          center: {lat: {{ m_city.location.y }}, lng: {{ m_city.location.x }}},
          zoom: 10
          });
      }
    </script>
{% endlocalize %}
<script src="https://maps.googleapis.com/maps/api/js?key=KEY&callback=initMap"
async defer></script>
👤Mounir

Leave a comment