jQuery GeoComplete - 由lat和long初始化的位置

时间:2012-10-20 00:24:50

标签: jquery google-maps maps

知道init如何GeoComplete位置(因此引脚被丢弃)?

 $("#geocomplete").geocomplete({
    map: ".map_canvas",
    location: [52.4078567, 16.92718339999999], // is it centring the map, no pin thought
    markerOptions: {
        draggable: true
    },
    details: "form",
    types: ["geocode", "establishment"]

});

上面的示例确实使地图居中,但不是丢弃了一个。为什么呢?
在线演示here

1 个答案:

答案 0 :(得分:5)

在初始化时指定经度和纬度时,似乎没有放置引脚。

另一种方法是从初始化中删除位置选项,并在创建地理填充实例后立即搜索默认位置:

// Run this function once after the first search
$("#geocomplete").geocomplete(options)
  .one("geocode:result", function(event, result){

    // Set the zoom level you require for the default map
    var map = $("#geocomplete").geocomplete("map");
    map.setZoom(13);

    // Optionally empty the geocomplete input field
    $("#geocomplete").val("");

});

随后按地址查找:

$("#geocomplete").geocomplete("find", "Poznań, Poland");

或经度和纬度:

var lat_and_long = "52.4078567, 16.9271833";
$("#geocomplete").geocomplete("find", lat_and_long);