I have an ionic app. I can the goggle maps api in the index.html using
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=key&sensor=true&language=en&libraries=places"></script>
However my app has 2 languages which I translate using angular translate.
When the app is translated, the map and the geocoder doesn't change language. So I tried to add another
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=key&sensor=true&language=ch&libraries=places"></script>
in index.html
But seems like it only takes one. How can I solve this?