error:InvalidValueError: setCenter: not a LatLng or LatLngLiteral: in property lat: not a number

前端 未结 4 761
既然无缘
既然无缘 2021-02-05 03:22
function initAutocomplete() {
    var lat=document.getElementById(\'lat\').value;
    var lng=document.getElementById(\'lng\').value;
    console.log(lat);
    console.l         


        
4条回答
  •  心在旅途
    2021-02-05 04:01

    Just initialize parameters:

    function initMap(lat_ = 0, lon_ = 0) {
        var map = new google.maps.Map(document.getElementById('map'), {
            center: {lat: lat_, lng: lon_},
            zoom: 10
        });
    }
    

提交回复
热议问题