Hi Chris,
I’ve noticed that when I set a zoom greater than 14, it tends to move to the left of the point. Doesn’t matter if I am doing it when initializing the map:
new Mappress_Map(array("center"=>$mapCenter,"zoom"=>10,"width" => "99.9%", "height"=>$mapHeight))
or recentering via JS like so:
mapp0.zoom = 10;
mapp0.center.lat = centerPoint.lat;
mapp0.center.lng = centerPoint.lng;
mapp0.recenter();
Either way, it moves off to the left, on mobile devices on zoom level 10, the original point completely goes off screen. Am I missing something?