我正在根据用户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();
});
Firebug记录
google.maps.LatLng is not a constructor
[Parar en este error]
var myLatlng = new google.maps.LatLng(geoip_latitude(), geoip_longitude());
知道为什么吗?
进行操控答案 0 :(得分:4)
主要代码似乎没问题,我看了你的jsfiddle,我所做的只是添加
html, body, #map_canvas { height: 100% }
到CSS区域,它对我来说很好