如何通过React JS修复地图上的加载位置

时间:2017-02-20 08:16:10

标签: javascript google-maps reactjs

链接图片:

https://i.stack.imgur.com/0K63q.png

https://i.stack.imgur.com/ilgKw.png

各位大家好,我试图使用reactjs在地图中获取当前位置。我得到标记,然后在地图上显示它们。但是,出现问题的有时是错误的地图,如下所示。怎么解决? 我的代码:

让search = this.state.search;

  navigator.geolocation.getCurrentPosition(function(location) {
    search.location[0]=location.coords.latitude;
    search.location[1]=location.coords.longitude;
  });
  this.setState({search:search});

0 个答案:

没有答案