public TravelMap(final LocationHandler createHandler,
final LocationHandler deleteHandler) {
this(false);
this.deleteHandler = deleteHandler;
map.addMapDoubleClickHandler(new MapDoubleClickHandler() {
public void onDoubleClick(MapDoubleClickEvent event) {
InfoWindow info = map.getInfoWindow();
info.open(event.getLatLng(), newLocationCreateForm(event.getLatLng(),
createHandler, info));
}