我正在使用Django框架。在我的模板中,我有一个变量{{i.slot.place.latitude}}
,另一个是{{i.slot.place.longitude}}
我想在谷歌地图的java脚本中使用这些变量。这是 -
<script type="text/javascript">
var map;
var myCenter = new google.maps.LatLng({{interview.slot.location.place.latitude}} ,{{ interview.slot.location.place.longitude }});
var marker = new google.maps.Marker({
position: myCenter
});`
这里google.maps.LatLng
我试图给这些变量,但它不起作用。有人可以告诉我正确的方法吗?