this is my code:
google.maps.event.addListener(map,'bounds_changed', function () {
var left_bottom=map.getProjection().fromLatLngToPoint(map.getBounds().getSouthWest())
console.log(left_bottom)
});
i think the result may be this :
(0,some number),
but the result is :
(232.31212222222223, 155.07739681860028)
so why the SouthWest's point.x is not 0 ?
thanks