data
location:{
type:[Number],
require:true
},
location: [
-123,
29
],
這是我現在model的部分
我現在get資料後 前端是能查出-123,29這樣
不過我把它用在googlemap上就不行
var location = data.location
var latLng = new google.maps.LatLng(location);
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
center:latLng,
zoom: 15
});
地圖都出不來
shrine90459.
你是怎麼跟後端要座標資料的
我是router.get(req,res)=>
Data.find(function(data){
res.render('',{data:data});
};
然後前端pug裡面data.location有資料
但script那邊就取不到值
script.
var map;
var mylocation=data.location; //這樣似乎不行