double longitude = mapAttributes.getLongitude();
GoogleCalculator calc = GoogleCalculatorExtended.getInstance();
GLatLng gLatLng = new GLatLng(latitude, longitude);
GPoint gPoint = calc.fromLatLngToPixel(gLatLng,
GoogleCalculator.INITIAL_ZOOM);
GImage gImage = calc.fromGPixelToGImage(gPoint);
initialLocation.append(", longitude: ").append(longitude)
.append(", latitude: ").append(latitude)
.append(", initialLocation: ")