Setting the Map center with Google map

Working on the Wireless Deployment map, i have also changed the center of the map to be Europe, while changing the Zoom. 

var centerPoint = new GLatLng(43.644524198573674,23.58203125);

map.setCenter(centerPoint, 2,G_NORMAL_MAP);

The original code had a small bug, in which they defined the center Point, but then didn’t use it:

var centerPoint = new GLatLng(43.644524198573674,23.58203125);

map.setCenter(new GLatLng(43.644524198573674,23.58203125), 3 , G_NORMAL_MAP);

Leave a Reply