我正在尝试将API密钥插入HTML标头中
<script src="//maps.google.com/maps/api/js?sensor=false&key={{google_maps_key}}
type="text/javascript">
</script>
但是在调用Google Maps API进行标记之前,似乎没有及时填充。
当前代码:
<head ng-init="google_maps_key = 'my_key_is_here'">
<script ng-src="//maps.google.com/maps/api/js?sensor=false&key={{google_maps_key}}"
type="text/javascript">
</script>