{
lat = fmt.parse(latStr).doubleValue();
lng = fmt.parse(lngStr).doubleValue();
} catch (ParseException e)
{
throw new StringValueConversionException("Unable to convert 'lat/lng' to a double value", e);
}
latLng = new GLatLng(lat, lng);
onDblClick(target, latLng);
}