Google地图的地图未显示,但控件显示

时间:2013-09-10 00:18:53

标签: javascript google-maps-api-3

我正在从URL看起来像这样的坐标(当然是其中的一部分):weather/59.328676,13.485656。现在,我使用函数提取这些坐标。当我尝试加载Google地图时,控件会显示但不会显示实际地图。您可以点击此链接查看我的意思:http://server-1.myftp.org/vadret-just.nu/weather/59.328676,13.485656。我正在使用的代码是:

function url_endstring(url){
    return url.substr(url.lastIndexOf('/') + 1);
}


var coordinates = url_endstring(window.location.href);
var latlng = new google.maps.LatLng(coordinates);
var map_options;
var gm_map;
var marker;

function initialize() {
    latlng;
    map_options = {
        center: latlng,
        zoom: 12,
        mapTypeId: google.maps.MapTypeId.ROADMAP,

        streetViewControl: false,

        zoomControlOptions: {
            style: google.maps.ZoomControlStyle.SMALL
        }
    };

    gm_map = new google.maps.Map(document.getElementById('google-maps'), map_options);

    marker = new google.maps.Marker({
        position: latlng,
        map: gm_map
    });
}

我错过了什么吗?如何才能显示Google地图地图?

0 个答案:

没有答案