You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
basically building a form where a business could have multiple branches (shown on the map) and the user would put in their address to get directions to the closest one.
var map = $("#map_canvas");
map.gMap({
markers: [
{
address: "huron, ohio 44839"
},
{
address: "sandusky, ohio 44870"
},
{
address:" cincinatti, ohio"
}
// latitude: "fit",
// longitude: "fit",
});
wondering why if i pass in lat/long it zooms correctly, but if addresses are passed in it breaks and only zooms to the last level.
is there a workaround for this beyond passing the address to the geocoder and plugging the lat/long back into the array?
The text was updated successfully, but these errors were encountered: