搜索位置Google地图,无需重新加载页面

时间:2019-05-05 23:05:27

标签: javascript jquery ajax google-maps

我需要搜索位置而不重新加载页面。

我的搜索输入:

<input class="form-control" id="search-location" placeholder="{{trans('messages.home.where_want_to_go')}}" autocomplete="off" name="location" type="text" value="{{$location}}">

目前,只有更改输入值才能刷新!

 $("#search-location").change(function() {
        allowRefresh = true;
        deleteMarkers();
        getItem($('#map_view').locationpicker('map').map);
    });

这样做,地图只会刷新,但会停留在同一位置! 我不知道(如何/或是否可能)在致电locationpicker时设置新位置

预期结果是保留在页面上,而无需重新加载其他地方的页面搜索。

谢谢!

0 个答案:

没有答案