开发者

In gmaps4rails, how do I move the map so the marker is in view?

开发者 https://www.devze.com 2023-03-14 05:52 出处:网络
I have a set of locations that I want to bring up, individually through ajax calls, and some of them aren\'t within the current 开发者_JAVA百科bounds of the map.Is there a way to move the map so the m

I have a set of locations that I want to bring up, individually through ajax calls, and some of them aren't within the current 开发者_JAVA百科bounds of the map. Is there a way to move the map so the marker is in view?

I don't need it to be in the center, just as long as it's in view.


I figured it out after some research. I'd still be curious to know how to NOT have to center if the marker is visible on the map.

var centerpoint = new google.maps.LatLng(lat_value, long_value);
Gmaps4Rails.map.setCenter(centerpoint)

edit: Found answer to how to not center map every time. Pseudo code version.
1. Get values from Gmaps4Rails.map.getBounds().
2. Use resulting ta and la values to see if the marker is within those values.
3. If marker is outside of those values, center map, otherwise place marker without centering map.

Thanks guys. I should post more questions. It really helps me to think through my problems.


Jim's answer was probably right when he posted it. But as of now the right way to do it would be :

var centerpoint = new google.maps.LatLng(lat_value, long_value);
Gmaps.map.map.setCenter(centerpoint);


What you expect is automatically done as long as you pass the auto_adjust setting to true. See here.

Then, you should just use the js function Gmaps4Rails.add_markers described here.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号