我正在根据用户 ip 检索经度和纬度,然后我只想绘制地图,但它不起作用
function initialize() {
console.log(geoip_latitude(), geoip_longitude());
var myLatlng = new google.maps.LatLng(geoip_latitude(), geoip_longitude());
var myOptions = {
zoom: 8,
center: myLatlng,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
}
$(document).ready(function(){
initialize();
});
萤火虫日志
google.maps.LatLng is not a constructor
[Parar en este error]
var myLatlng = new google.maps.LatLng(geoip_latitude(), geoip_longitude());
知道为什么吗?